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 26KB

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