You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.gradle 24KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629
  1. plugins {
  2. // Ordered alphabeticly
  3. id 'com.github.ben-manes.versions' version '0.33.0'
  4. id 'com.github.hierynomus.license' version '0.15.0'
  5. id 'com.github.johnrengelman.shadow' version '5.2.0' apply false
  6. id 'com.google.protobuf' version '0.8.13' apply false
  7. id 'com.jfrog.artifactory' version '4.21.0'
  8. id 'com.github.node-gradle.node' version '2.2.4' apply false
  9. id 'io.spring.dependency-management' version '1.0.10.RELEASE'
  10. id "com.asarkar.gradle.build-time-tracker" version "2.0.4" apply false
  11. id 'org.owasp.dependencycheck' version '6.1.6'
  12. id 'org.sonarqube' version '3.0'
  13. }
  14. // display a summary of task durations at the end of the build
  15. if (project.hasProperty('time-tracker')) {
  16. apply plugin: 'com.asarkar.gradle.build-time-tracker'
  17. buildTimeTracker {
  18. sort = true
  19. maxWidth = 80
  20. minTaskDuration = Duration.ofSeconds(1)
  21. }
  22. }
  23. if (!JavaVersion.current().java11Compatible) {
  24. throw new GradleException("JDK 11+ is required to perform this build. It's currently " + System.getProperty("java.home") + ".")
  25. }
  26. apply plugin: 'org.owasp.dependencycheck'
  27. dependencyCheck {
  28. analyzers {
  29. assemblyEnabled = false
  30. autoconfEnabled = false
  31. bundleAuditEnabled = false
  32. cmakeEnabled = false
  33. cocoapodsEnabled = false
  34. composerEnabled = false
  35. cocoapodsEnabled = false
  36. golangDepEnabled = false
  37. golangModEnabled = false
  38. nodeAudit {
  39. skipDevDependencies = true
  40. }
  41. nuspecEnabled = false
  42. nugetconfEnabled = false
  43. rubygemsEnabled = false
  44. swiftEnabled = false
  45. }
  46. format = 'ALL'
  47. junitFailOnCVSS = 0
  48. failBuildOnCVSS = 0
  49. suppressionFiles = ["${project.rootDir}/private/owasp/suppressions.xml", "${project.rootDir}/private/owasp/vulnerabilities.xml"]
  50. skipProjects = project.subprojects
  51. .findAll {it.name.contains('testing') ||
  52. it.name.startsWith('it-') ||
  53. it.name.contains('-test') ||
  54. it.name == 'sonar-ws-generator'}
  55. .collect { it.path }
  56. }
  57. allprojects {
  58. apply plugin: 'com.jfrog.artifactory'
  59. apply plugin: 'maven-publish'
  60. ext.versionInSources = version
  61. ext.buildNumber = System.getProperty("buildNumber")
  62. // when no buildNumber is provided, then project version must end with '-SNAPSHOT'
  63. if (ext.buildNumber == null) {
  64. version = "${version}-SNAPSHOT".toString()
  65. ext.versionWithoutBuildNumber = version
  66. } else {
  67. ext.versionWithoutBuildNumber = version
  68. version = (version.toString().count('.') == 1 ? "${version}.0.${ext.buildNumber}" : "${version}.${ext.buildNumber}").toString()
  69. }
  70. ext {
  71. release = project.hasProperty('release') && project.getProperty('release')
  72. official = project.hasProperty('official') && project.getProperty('official')
  73. }
  74. repositories {
  75. def repository = project.hasProperty('qa') ? 'sonarsource-qa' : 'sonarsource'
  76. maven {
  77. // The environment variables ARTIFACTORY_PRIVATE_USERNAME and ARTIFACTORY_PRIVATE_PASSWORD are used on QA env (Jenkins)
  78. // On local box, please add artifactoryUsername and artifactoryPassword to ~/.gradle/gradle.properties
  79. def artifactoryUsername = System.env.'ARTIFACTORY_PRIVATE_USERNAME' ?: (project.hasProperty('artifactoryUsername') ? project.getProperty('artifactoryUsername') : '')
  80. def artifactoryPassword = System.env.'ARTIFACTORY_PRIVATE_PASSWORD' ?: (project.hasProperty('artifactoryPassword') ? project.getProperty('artifactoryPassword') : '')
  81. if (artifactoryUsername && artifactoryPassword) {
  82. credentials {
  83. username artifactoryUsername
  84. password artifactoryPassword
  85. }
  86. } else {
  87. // Workaround for artifactory
  88. // https://www.jfrog.com/jira/browse/RTFACT-13797
  89. repository = 'public'
  90. }
  91. url "https://repox.jfrog.io/repox/${repository}"
  92. }
  93. }
  94. task allDependencies {
  95. dependsOn 'dependencies'
  96. }
  97. artifactory {
  98. clientConfig.setIncludeEnvVars(true)
  99. clientConfig.setEnvVarsExcludePatterns('*password*,*PASSWORD*,*secret*,*MAVEN_CMD_LINE_ARGS*,sun.java.command,*token*,*TOKEN*,*LOGIN*,*login*,*key*,*KEY*,*signing*')
  100. contextUrl = System.getenv('ARTIFACTORY_URL')
  101. publish {
  102. repository {
  103. repoKey = System.getenv('ARTIFACTORY_DEPLOY_REPO')
  104. username = System.getenv('ARTIFACTORY_DEPLOY_USERNAME') ?: project.properties.artifactoryUsername
  105. password = System.getenv('ARTIFACTORY_DEPLOY_PASSWORD') ?: project.properties.artifactoryPaswword
  106. }
  107. defaults {
  108. properties = [
  109. 'build.name': 'sonar-enterprise',
  110. 'build.number': System.getenv('BUILD_NUMBER'),
  111. 'pr.branch.target': System.getenv('GITHUB_BASE_BRANCH'),
  112. 'pr.number': System.getenv('PULL_REQUEST'),
  113. 'vcs.branch': System.getenv('GITHUB_BRANCH'),
  114. 'vcs.revision': System.getenv('GIT_SHA1'),
  115. 'version': version
  116. ]
  117. publications('mavenJava')
  118. publishPom = true
  119. publishIvy = false
  120. }
  121. }
  122. clientConfig.info.setBuildName('sonar-enterprise')
  123. clientConfig.info.setBuildNumber(System.getenv('BUILD_NUMBER'))
  124. // Define the artifacts to be deployed to https://binaries.sonarsource.com on releases
  125. clientConfig.info.addEnvironmentProperty('ARTIFACTS_TO_PUBLISH',
  126. "${project.group}:sonar-application:zip," +
  127. "com.sonarsource.sonarqube:sonarqube-developer:zip," +
  128. "com.sonarsource.sonarqube:sonarqube-datacenter:zip," +
  129. "com.sonarsource.sonarqube:sonarqube-enterprise:zip")
  130. // The name of this variable is important because it's used by the delivery process when extracting version from Artifactory build info.
  131. clientConfig.info.addEnvironmentProperty('PROJECT_VERSION', "${version}")
  132. }
  133. }
  134. apply plugin: 'org.sonarqube'
  135. sonarqube {
  136. properties {
  137. property 'sonar.projectName', projectTitle
  138. property 'sonar.projectVersion', "${versionInSources}-SNAPSHOT"
  139. property 'sonar.buildString', version
  140. }
  141. }
  142. tasks.named('wrapper') {
  143. distributionType = Wrapper.DistributionType.ALL
  144. }
  145. subprojects {
  146. apply plugin: 'com.github.hierynomus.license'
  147. apply plugin: 'io.spring.dependency-management'
  148. apply plugin: 'jacoco'
  149. apply plugin: 'java'
  150. apply plugin: 'idea'
  151. apply plugin: 'signing'
  152. sourceCompatibility = 1.8
  153. targetCompatibility = 1.8
  154. // do not deploy to Artifactory by default
  155. artifactoryPublish.skip = true
  156. def testFixtureSrc = 'src/testFixtures'
  157. if (file(testFixtureSrc).exists()) {
  158. apply plugin: 'java-test-fixtures'
  159. }
  160. ext {
  161. protobufVersion = '3.11.4'
  162. }
  163. sonarqube {
  164. properties {
  165. property 'sonar.moduleKey', project.group + ':' + project.name
  166. }
  167. }
  168. // Central place for definition dependency versions and exclusions.
  169. dependencyManagement {
  170. dependencies {
  171. // bundled plugin list -- keep it alphabetically ordered
  172. dependency 'com.sonarsource.abap:sonar-abap-plugin:3.9.1.3127'
  173. dependency 'com.sonarsource.cobol:sonar-cobol-plugin:4.6.2.4876'
  174. dependency 'com.sonarsource.cpp:sonar-cfamily-plugin:6.20.0.31240'
  175. dependency 'com.sonarsource.pli:sonar-pli-plugin:1.11.1.2727'
  176. dependency 'com.sonarsource.plsql:sonar-plsql-plugin:3.6.1.3873'
  177. dependency 'com.sonarsource.plugins.vb:sonar-vb-plugin:2.7.1.2721'
  178. dependency 'com.sonarsource.rpg:sonar-rpg-plugin:2.5.1.2575'
  179. dependency 'com.sonarsource.security:sonar-security-csharp-frontend-plugin:8.9.0.11439'
  180. dependency 'com.sonarsource.security:sonar-security-java-frontend-plugin:8.9.0.11439'
  181. dependency 'com.sonarsource.security:sonar-security-php-frontend-plugin:8.9.0.11439'
  182. dependency 'com.sonarsource.security:sonar-security-plugin:8.9.0.11439'
  183. dependency 'com.sonarsource.security:sonar-security-python-frontend-plugin:8.9.0.11439'
  184. dependency 'com.sonarsource.security:sonar-security-js-frontend-plugin:8.9.0.11439'
  185. dependency 'com.sonarsource.slang:sonar-apex-plugin:1.8.3.2219'
  186. dependency 'com.sonarsource.swift:sonar-swift-plugin:4.3.1.4892'
  187. dependency 'com.sonarsource.tsql:sonar-tsql-plugin:1.5.1.4340'
  188. dependency 'org.sonarsource.css:sonar-css-plugin:1.4.2.2002'
  189. dependency 'org.sonarsource.dotnet:sonar-csharp-plugin:8.22.0.31243'
  190. dependency 'org.sonarsource.dotnet:sonar-vbnet-plugin:8.22.0.31243'
  191. dependency 'org.sonarsource.flex:sonar-flex-plugin:2.6.1.2564'
  192. dependency 'org.sonarsource.html:sonar-html-plugin:3.4.0.2754'
  193. dependency 'org.sonarsource.jacoco:sonar-jacoco-plugin:1.1.1.1157'
  194. dependency 'org.sonarsource.java:sonar-java-plugin:6.15.1.26025'
  195. dependency 'org.sonarsource.javascript:sonar-javascript-plugin:7.4.2.15501'
  196. dependency 'org.sonarsource.php:sonar-php-plugin:3.17.0.7439'
  197. dependency 'org.sonarsource.python:sonar-python-plugin:3.4.1.8066'
  198. dependency 'org.sonarsource.slang:sonar-go-plugin:1.8.3.2219'
  199. dependency 'org.sonarsource.slang:sonar-kotlin-plugin:1.8.3.2219'
  200. dependency 'org.sonarsource.slang:sonar-ruby-plugin:1.8.3.2219'
  201. dependency 'org.sonarsource.slang:sonar-scala-plugin:1.8.3.2219'
  202. dependency 'org.sonarsource.xml:sonar-xml-plugin:2.2.0.2973'
  203. // please keep this list alphabetically ordered
  204. dependencySet(group: 'ch.qos.logback', version: '1.2.3') {
  205. entry 'logback-access'
  206. entry 'logback-classic'
  207. entry 'logback-core'
  208. }
  209. dependency('commons-beanutils:commons-beanutils:1.8.3') {
  210. exclude 'commons-logging:commons-logging'
  211. }
  212. dependency 'commons-codec:commons-codec:1.14'
  213. dependency 'commons-dbutils:commons-dbutils:1.7'
  214. dependency 'commons-io:commons-io:2.8.0'
  215. dependency 'commons-lang:commons-lang:2.6'
  216. imports { mavenBom 'com.fasterxml.jackson:jackson-bom:2.10.5.20201202' }
  217. dependency 'com.fasterxml.jackson.dataformat:protobuf:2.10.5'
  218. dependency 'com.eclipsesource.minimal-json:minimal-json:0.9.5'
  219. dependencySet(group: 'com.github.scribejava', version: '6.9.0') {
  220. entry 'scribejava-apis'
  221. entry 'scribejava-core'
  222. }
  223. dependency 'com.github.everit-org.json-schema:org.everit.json.schema:1.12.2'
  224. // This project is no longer maintained and was forked
  225. // by https://github.com/java-diff-utils/java-diff-utils
  226. // (io.github.java-diff-utils:java-diff-utils).
  227. dependency 'com.googlecode.java-diff-utils:diffutils:1.2'
  228. dependency('com.googlecode.json-simple:json-simple:1.1.1') {
  229. exclude 'junit:junit'
  230. }
  231. dependency 'com.google.code.findbugs:jsr305:3.0.2'
  232. dependency 'com.google.code.gson:gson:2.8.6'
  233. dependency('com.google.guava:guava:28.2-jre') {
  234. exclude 'com.google.errorprone:error_prone_annotations'
  235. exclude 'com.google.guava:listenablefuture'
  236. exclude 'com.google.j2objc:j2objc-annotations'
  237. exclude 'org.checkerframework:checker-qual'
  238. exclude 'org.codehaus.mojo:animal-sniffer-annotations'
  239. }
  240. dependency "com.google.protobuf:protobuf-java:${protobufVersion}"
  241. // Do not upgrade H2 to 1.4.200 because of instability: https://github.com/h2database/h2database/issues/2205
  242. dependency 'com.h2database:h2:1.4.199'
  243. dependencySet(group: 'com.hazelcast', version: '4.2') {
  244. entry 'hazelcast'
  245. }
  246. dependency 'com.ibm.icu:icu4j:3.4.4'
  247. dependency 'com.microsoft.sqlserver:mssql-jdbc:9.2.0.jre11'
  248. dependency 'com.oracle.database.jdbc:ojdbc8:19.3.0.0'
  249. // upgrade okhttp3 dependency kotlin to get rid of not exploitable CVE-2020-29582
  250. dependency 'org.jetbrains.kotlin:kotlin-stdlib-common:1.4.21'
  251. dependency 'org.jetbrains.kotlin:kotlin-stdlib:1.4.21'
  252. dependencySet(group: 'com.squareup.okhttp3', version: '4.9.0') {
  253. entry 'okhttp'
  254. entry 'mockwebserver'
  255. }
  256. dependency 'com.tngtech.java:junit-dataprovider:1.13.1'
  257. dependency 'info.picocli:picocli:3.6.1'
  258. dependencySet(group: 'io.jsonwebtoken', version: '0.11.2') {
  259. entry 'jjwt-api'
  260. entry 'jjwt-impl'
  261. entry 'jjwt-jackson'
  262. }
  263. dependency 'com.auth0:java-jwt:3.10.3'
  264. dependency 'io.netty:netty-all:4.1.48.Final'
  265. dependency 'com.sun.mail:javax.mail:1.5.6'
  266. dependency 'javax.annotation:javax.annotation-api:1.3.2'
  267. dependency 'javax.servlet:javax.servlet-api:3.1.0'
  268. dependency 'javax.xml.bind:jaxb-api:2.3.0'
  269. dependency 'junit:junit:4.13.1'
  270. dependency 'org.junit.jupiter:junit-jupiter-api:5.6.0'
  271. dependency 'org.xmlunit:xmlunit-core:2.6.4'
  272. dependency 'org.xmlunit:xmlunit-matchers:2.6.4'
  273. dependency 'net.jpountz.lz4:lz4:1.3.0'
  274. dependency 'net.lightbody.bmp:littleproxy:1.1.0-beta-bmp-17'
  275. dependency 'org.awaitility:awaitility:4.0.2'
  276. dependency 'org.apache.commons:commons-csv:1.7'
  277. dependency 'org.apache.commons:commons-email:1.5'
  278. dependency 'org.apache.commons:commons-dbcp2:2.7.0'
  279. dependency('org.apache.httpcomponents:httpclient:4.5.13'){
  280. exclude 'commons-logging:commons-logging'
  281. }
  282. // Be aware that Log4j is used by Elasticsearch client
  283. dependencySet(group: 'org.apache.logging.log4j', version: '2.8.2') {
  284. entry 'log4j-api'
  285. entry 'log4j-to-slf4j'
  286. entry 'log4j-core'
  287. }
  288. dependencySet(group: 'org.apache.tomcat.embed', version: '8.5.63') {
  289. entry 'tomcat-embed-core'
  290. entry('tomcat-embed-jasper') {
  291. exclude 'org.eclipse.jdt.core.compiler:ecj'
  292. }
  293. }
  294. dependency 'org.assertj:assertj-core:3.15.0'
  295. dependency 'org.assertj:assertj-guava:3.3.0'
  296. dependency('org.codehaus.sonar:sonar-channel:4.2') {
  297. exclude 'org.slf4j:slf4j-api'
  298. }
  299. dependency 'org.codehaus.sonar:sonar-classloader:1.0'
  300. dependency('org.codehaus.woodstox:woodstox-core-lgpl:4.4.1') {
  301. exclude 'javax.xml.stream:stax-api'
  302. }
  303. dependency('org.codehaus.staxmate:staxmate:2.0.1') {
  304. exclude 'org.codehaus.woodstox:stax2-api'
  305. exclude 'stax:stax-api'
  306. exclude 'org.codehaus.woodstox:woodstox-core-asl'
  307. }
  308. dependency('org.codehaus.woodstox:stax2-api:3.1.4') {
  309. exclude 'stax:stax-api'
  310. }
  311. dependencySet(group: 'org.eclipse.jetty', version: '9.4.6.v20170531') {
  312. entry 'jetty-proxy'
  313. entry 'jetty-server'
  314. entry 'jetty-servlet'
  315. }
  316. dependency('org.elasticsearch.client:elasticsearch-rest-high-level-client:7.12.1') {
  317. exclude 'commons-logging:commons-logging'
  318. }
  319. dependency 'org.elasticsearch.plugin:transport-netty4-client:7.12.1'
  320. dependency 'org.elasticsearch:mocksocket:1.0'
  321. //analysis-common need to stay at 7.10.2 as it hasn't been published to mvn central
  322. dependency 'org.codelibs.elasticsearch.module:analysis-common:7.10.2'
  323. dependency 'org.eclipse.jgit:org.eclipse.jgit:5.11.0.202103091610-r'
  324. dependency 'org.tmatesoft.svnkit:svnkit:1.10.1'
  325. dependency 'org.hamcrest:hamcrest-all:1.3'
  326. dependency 'org.jsoup:jsoup:1.13.1'
  327. dependency 'org.mindrot:jbcrypt:0.4'
  328. dependency('org.mockito:mockito-core:3.3.3') {
  329. exclude 'org.hamcrest:hamcrest-core'
  330. }
  331. dependency 'org.mybatis:mybatis:3.5.6'
  332. dependency 'org.nanohttpd:nanohttpd:2.3.1'
  333. dependency 'org.picocontainer:picocontainer:2.15'
  334. dependencySet(group: 'org.slf4j', version: '1.7.30') {
  335. entry 'jcl-over-slf4j'
  336. entry 'jul-to-slf4j'
  337. entry 'log4j-over-slf4j'
  338. entry 'slf4j-api'
  339. }
  340. dependency 'org.postgresql:postgresql:42.2.19'
  341. dependency 'org.reflections:reflections:0.9.12'
  342. dependency 'org.simpleframework:simple:4.1.21'
  343. dependency 'org.sonarsource.orchestrator:sonar-orchestrator:3.35.1.2719'
  344. dependency 'org.sonarsource.update-center:sonar-update-center-common:1.23.0.723'
  345. dependency 'org.subethamail:subethasmtp:3.1.7'
  346. dependency 'org.yaml:snakeyaml:1.26'
  347. dependency 'xml-apis:xml-apis:1.4.01'
  348. // please keep this list alphabetically ordered
  349. }
  350. }
  351. // global exclusions
  352. configurations.all {
  353. // do not conflict with com.sun.mail:javax.mail
  354. exclude group: 'javax.mail', module: 'mail'
  355. }
  356. tasks.withType(JavaCompile) {
  357. options.compilerArgs.addAll(['--release', '8'])
  358. options.encoding = 'UTF-8'
  359. }
  360. tasks.withType(Javadoc) {
  361. options.addStringOption('Xdoclint:none', '-quiet')
  362. options.encoding = 'UTF-8'
  363. title = project.name + ' ' + versionWithoutBuildNumber
  364. }
  365. task sourcesJar(type: Jar, dependsOn: classes) {
  366. classifier = 'sources'
  367. from sourceSets.main.allSource
  368. }
  369. task javadocJar(type: Jar, dependsOn: javadoc) {
  370. classifier = 'javadoc'
  371. from javadoc.destinationDir
  372. }
  373. // generate code before opening project in IDE (Eclipse or Intellij)
  374. task ide() {
  375. // empty by default. Dependencies are added to the task
  376. // when needed (see protobuf modules for example)
  377. }
  378. jacocoTestReport {
  379. reports {
  380. xml.enabled true
  381. csv.enabled false
  382. html.enabled false
  383. }
  384. }
  385. normalization {
  386. runtimeClasspath {
  387. // Following classpath resources contain volatile data that changes in each CI build (build number, commit id, time),
  388. // so we exclude them from calculation of build cache key of test tasks:
  389. ignore 'META-INF/MANIFEST.MF'
  390. ignore 'sonar-api-version.txt'
  391. ignore 'sq-version.txt'
  392. }
  393. }
  394. ext.failedTests = []
  395. test {
  396. jvmArgs '-Dfile.encoding=UTF8'
  397. maxHeapSize = '1G'
  398. systemProperty 'java.awt.headless', true
  399. testLogging {
  400. events "skipped", "failed" // verbose log for failed and skipped tests (by default the name of the tests are not logged)
  401. exceptionFormat 'full' // log the full stack trace (default is the 1st line of the stack trace)
  402. }
  403. jacoco {
  404. enabled = true // do not disable recording of code coverage, so that remote Gradle cache entry can be used locally
  405. includes = ['com.sonar.*', 'com.sonarsource.*', 'org.sonar.*', 'org.sonarqube.*', 'org.sonarsource.*']
  406. }
  407. if (project.hasProperty('maxParallelTests')) {
  408. maxParallelForks = project.maxParallelTests as int
  409. }
  410. if (project.hasProperty('parallelTests')) {
  411. // See https://guides.gradle.org/performance/#parallel_test_execution
  412. maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
  413. }
  414. afterTest { descriptor, result ->
  415. if (result.resultType == TestResult.ResultType.FAILURE) {
  416. String failedTest = " ${descriptor.className} > ${descriptor.name}"
  417. failedTests << failedTest
  418. }
  419. }
  420. }
  421. gradle.buildFinished {
  422. if (!failedTests.empty) {
  423. println "\nFailed tests:"
  424. failedTests.each { failedTest ->
  425. println failedTest
  426. }
  427. println ""
  428. }
  429. }
  430. def protoMainSrc = 'src/main/protobuf'
  431. def protoTestSrc = 'src/test/protobuf'
  432. if (file(protoMainSrc).exists() || file(protoTestSrc).exists()) {
  433. // protobuf must be applied after java
  434. apply plugin: 'com.google.protobuf'
  435. sourceSets.main.proto.srcDir protoMainSrc // in addition to the default 'src/main/proto'
  436. sourceSets.test.proto.srcDir protoTestSrc // in addition to the default 'src/test/proto'
  437. protobuf {
  438. protoc {
  439. artifact = "com.google.protobuf:protoc:${protobufVersion}"
  440. }
  441. }
  442. jar {
  443. exclude('**/*.proto')
  444. }
  445. idea {
  446. module {
  447. sourceDirs += file("${protobuf.generatedFilesBaseDir}/main/java")
  448. testSourceDirs += file("${protobuf.generatedFilesBaseDir}/test/java")
  449. generatedSourceDirs += file("${protobuf.generatedFilesBaseDir}/main/java")
  450. generatedSourceDirs += file("${protobuf.generatedFilesBaseDir}/test/java")
  451. }
  452. }
  453. ide.dependsOn(['generateProto', 'generateTestProto'])
  454. }
  455. if (file('package.json').exists()) {
  456. apply plugin: 'com.github.node-gradle.node'
  457. node {
  458. version = '10.22.1'
  459. yarnVersion = '1.22.0'
  460. download = true
  461. }
  462. // the OWASP tool does not support yarn, and its yarn.lock files, so node modules
  463. // should be explicitly installed (yarn task) before running the audit
  464. // See https://github.com/jeremylong/DependencyCheck/issues/2393
  465. dependencyCheckAggregate.dependsOn(yarn)
  466. }
  467. if (official) {
  468. jar {
  469. // do not break incremental build on non official versions
  470. manifest {
  471. attributes(
  472. 'Version': "${version}",
  473. 'Implementation-Build': System.getenv('GIT_SHA1'),
  474. 'Build-Time': new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
  475. )
  476. }
  477. }
  478. }
  479. license {
  480. header = rootProject.file('HEADER')
  481. strictCheck true
  482. mapping {
  483. java = 'SLASHSTAR_STYLE'
  484. js = 'SLASHSTAR_STYLE'
  485. ts = 'SLASHSTAR_STYLE'
  486. tsx = 'SLASHSTAR_STYLE'
  487. css = 'SLASHSTAR_STYLE'
  488. }
  489. includes(['**/*.java', '**/*.js', '**/*.ts', '**/*.tsx', '**/*.css'])
  490. }
  491. tasks.withType(GenerateModuleMetadata) {
  492. enabled = false
  493. }
  494. publishing {
  495. publications {
  496. mavenJava(MavenPublication) {
  497. pom {
  498. name = 'SonarQube'
  499. description = project.description
  500. url = 'http://www.sonarqube.org/'
  501. organization {
  502. name = 'SonarSource'
  503. url = 'http://www.sonarsource.com'
  504. }
  505. licenses {
  506. license {
  507. name = 'GNU LGPL 3'
  508. url = 'http://www.gnu.org/licenses/lgpl.txt'
  509. distribution = 'repo'
  510. }
  511. }
  512. scm {
  513. url = 'https://github.com/SonarSource/sonarqube'
  514. }
  515. developers {
  516. developer {
  517. id = 'sonarsource-team'
  518. name = 'SonarSource Team'
  519. }
  520. }
  521. }
  522. }
  523. }
  524. }
  525. signing {
  526. def signingKeyId = findProperty("signingKeyId")
  527. def signingKey = findProperty("signingKey")
  528. def signingPassword = findProperty("signingPassword")
  529. useInMemoryPgpKeys(signingKeyId, signingKey, signingPassword)
  530. required {
  531. def branch = System.getenv()["CIRRUS_BRANCH"]
  532. return (branch == 'master' || branch ==~ 'branch-[\\d.]+') &&
  533. gradle.taskGraph.hasTask(":artifactoryPublish")
  534. }
  535. sign publishing.publications
  536. }
  537. tasks.withType(Sign) {
  538. onlyIf {
  539. def branch = System.getenv()["CIRRUS_BRANCH"]
  540. return !artifactoryPublish.skip &&
  541. (branch == 'master' || branch ==~ 'branch-[\\d.]+') &&
  542. gradle.taskGraph.hasTask(":artifactoryPublish")
  543. }
  544. }
  545. }
  546. // Yarn doesn't support concurrent access to its global cache,
  547. // i.e. parallel execution of several "yarn install" tasks,
  548. // since these tasks are independent, we can establish arbitrary total order
  549. // to prevent their concurrent execution.
  550. // Note that "task1.mustRunAfter(task2)" ordering has an effect only when both
  551. // tasks are scheduled for execution, therefore should be established between
  552. // all pairs of "yarn install" tasks to define their total order and to prevent
  553. // their concurrent execution even in case when one or more of these tasks not
  554. // scheduled.
  555. def yarnInstallTasks = allprojects.findResults { it -> it.tasks.findByName('yarn') }
  556. yarnInstallTasks.drop(1).eachWithIndex { it, i -> it.mustRunAfter(yarnInstallTasks[0..i]) }
  557. // by default, Yarn will update lock file if it is not up to date with "package.json"
  558. // using option "--frozen-lockfile" will disable this behavior and "yarn install" will fail if lock file is out of date
  559. // all "yarn install" tasks should be executed with this option for reproducibility of builds
  560. // and to prevent developers from forgetting to update lock file when they update "package.json"
  561. yarnInstallTasks.each { it -> it.args = ['--frozen-lockfile'] }
  562. // https://github.com/ben-manes/gradle-versions-plugin
  563. apply plugin: 'com.github.ben-manes.versions'
  564. dependencyUpdates {
  565. rejectVersionIf {
  566. // Exclude dev versions from the list of dependency upgrades, for
  567. // example to replace:
  568. // org.slf4j:log4j-over-slf4j [1.7.25 -> 1.8.0-beta4]
  569. // by
  570. // org.slf4j:log4j-over-slf4j [1.7.25 -> 1.7.26]
  571. boolean rejected = ['alpha', 'beta', 'rc', 'cr', 'm', 'preview', 'jre12'].any { qualifier ->
  572. it.candidate.version ==~ /(?i).*[.-]${qualifier}[.\d-]*/
  573. }
  574. // Exclude upgrades on new major versions :
  575. // com.hazelcast:hazelcast [3.12.3 -> 4.0.0]
  576. rejected |= !it.candidate.version.substring(0, 2).equals(it.currentVersion.substring(0, 2))
  577. rejected
  578. }
  579. }