build.gradle.kts 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask
  2. plugins {
  3. `java-platform`
  4. id("com.github.ben-manes.versions")
  5. }
  6. data class DependencySet(val group: String, val version: String, val modules: List<String>)
  7. val dependencyVersions = hashMapOf<String, String>()
  8. rootProject.extra["versions"] = dependencyVersions
  9. // Need both BOM and groovy jars
  10. val groovyVersion = "4.0.7"
  11. // We don't force libraries we instrument to new versions since we compile and test against specific
  12. // old baseline versions but we do try to force those libraries' transitive dependencies to new
  13. // versions where possible so that we don't end up with explosion of dependency versions in
  14. // Intellij, which causes Intellij to spend lots of time indexing all of those different dependency
  15. // versions, and makes debugging painful because Intellij has no idea which dependency version's
  16. // source to use when stepping through code.
  17. //
  18. // Sometimes libraries we instrument do require a specific version of a transitive dependency and
  19. // that can be applied in the specific instrumentation gradle file, e.g.
  20. // configurations.testRuntimeClasspath.resolutionStrategy.force "com.google.guava:guava:19.0"
  21. val DEPENDENCY_BOMS = listOf(
  22. "com.fasterxml.jackson:jackson-bom:2.14.1",
  23. "com.google.guava:guava-bom:31.1-jre",
  24. "org.apache.groovy:groovy-bom:${groovyVersion}",
  25. "io.opentelemetry:opentelemetry-bom:1.22.0",
  26. "io.opentelemetry:opentelemetry-bom-alpha:1.22.0-alpha",
  27. "org.junit:junit-bom:5.9.2",
  28. "org.testcontainers:testcontainers-bom:1.17.6",
  29. "org.spockframework:spock-bom:2.4-M1-groovy-4.0"
  30. )
  31. val autoServiceVersion = "1.0.1"
  32. val autoValueVersion = "1.10.1"
  33. val errorProneVersion = "2.18.0"
  34. val byteBuddyVersion = "1.12.22"
  35. val asmVersion = "9.4"
  36. val jmhVersion = "1.36"
  37. val mockitoVersion = "4.11.0"
  38. val slf4jVersion = "2.0.6"
  39. val CORE_DEPENDENCIES = listOf(
  40. "com.google.auto.service:auto-service:${autoServiceVersion}",
  41. "com.google.auto.service:auto-service-annotations:${autoServiceVersion}",
  42. "com.google.auto.value:auto-value:${autoValueVersion}",
  43. "com.google.auto.value:auto-value-annotations:${autoValueVersion}",
  44. "com.google.errorprone:error_prone_annotations:${errorProneVersion}",
  45. "com.google.errorprone:error_prone_core:${errorProneVersion}",
  46. "com.google.errorprone:error_prone_test_helpers:${errorProneVersion}",
  47. // When updating, also update conventions/build.gradle.kts
  48. "net.bytebuddy:byte-buddy:${byteBuddyVersion}",
  49. "net.bytebuddy:byte-buddy-dep:${byteBuddyVersion}",
  50. "net.bytebuddy:byte-buddy-agent:${byteBuddyVersion}",
  51. "net.bytebuddy:byte-buddy-gradle-plugin:${byteBuddyVersion}",
  52. "org.ow2.asm:asm:${asmVersion}",
  53. "org.ow2.asm:asm-tree:${asmVersion}",
  54. "org.openjdk.jmh:jmh-core:${jmhVersion}",
  55. "org.openjdk.jmh:jmh-generator-bytecode:${jmhVersion}",
  56. "org.mockito:mockito-core:${mockitoVersion}",
  57. "org.mockito:mockito-junit-jupiter:${mockitoVersion}",
  58. "org.mockito:mockito-inline:${mockitoVersion}",
  59. "org.slf4j:slf4j-api:${slf4jVersion}",
  60. "org.slf4j:slf4j-simple:${slf4jVersion}",
  61. "org.slf4j:log4j-over-slf4j:${slf4jVersion}",
  62. "org.slf4j:jcl-over-slf4j:${slf4jVersion}",
  63. "org.slf4j:jul-to-slf4j:${slf4jVersion}"
  64. )
  65. // See the comment above about why we keep this rather large list.
  66. // There are dependencies included here that appear to have no usages, but are maintained at
  67. // this top level to help consistently satisfy large numbers of transitive dependencies.
  68. val DEPENDENCIES = listOf(
  69. "ch.qos.logback:logback-classic:1.3.5", // 1.4+ requires Java 11+
  70. "com.github.stefanbirkner:system-lambda:1.2.1",
  71. "com.github.stefanbirkner:system-rules:1.19.0",
  72. "uk.org.webcompere:system-stubs-jupiter:2.0.1",
  73. "com.uber.nullaway:nullaway:0.10.8",
  74. "commons-beanutils:commons-beanutils:1.9.4",
  75. "commons-cli:commons-cli:1.5.0",
  76. "commons-codec:commons-codec:1.15",
  77. "commons-collections:commons-collections:3.2.2",
  78. "commons-digester:commons-digester:2.1",
  79. "commons-fileupload:commons-fileupload:1.4",
  80. "commons-io:commons-io:2.11.0",
  81. "commons-lang:commons-lang:2.6",
  82. "commons-logging:commons-logging:1.2",
  83. "commons-validator:commons-validator:1.7",
  84. "io.netty:netty:3.10.6.Final",
  85. "io.opentelemetry.contrib:opentelemetry-aws-xray-propagator:1.22.0-alpha",
  86. "io.opentelemetry.proto:opentelemetry-proto:0.19.0-alpha",
  87. "org.assertj:assertj-core:3.24.2",
  88. "org.awaitility:awaitility:4.2.0",
  89. "com.google.code.findbugs:annotations:3.0.1u2",
  90. "com.google.code.findbugs:jsr305:3.0.2",
  91. "org.apache.groovy:groovy:${groovyVersion}",
  92. "org.apache.groovy:groovy-json:${groovyVersion}",
  93. "org.codehaus.mojo:animal-sniffer-annotations:1.22",
  94. "org.junit-pioneer:junit-pioneer:1.9.1",
  95. "org.objenesis:objenesis:3.3",
  96. // Note that this is only referenced as "org.springframework.boot" in build files, not the artifact name.
  97. "org.springframework.boot:spring-boot-dependencies:2.7.5",
  98. "javax.validation:validation-api:2.0.1.Final",
  99. "org.snakeyaml:snakeyaml-engine:2.6"
  100. )
  101. javaPlatform {
  102. allowDependencies()
  103. }
  104. dependencies {
  105. for (bom in DEPENDENCY_BOMS) {
  106. api(enforcedPlatform(bom))
  107. val split = bom.split(':')
  108. dependencyVersions[split[0]] = split[2]
  109. }
  110. constraints {
  111. for (dependency in CORE_DEPENDENCIES) {
  112. api(dependency)
  113. val split = dependency.split(':')
  114. dependencyVersions[split[0]] = split[2]
  115. }
  116. for (dependency in DEPENDENCIES) {
  117. api(dependency)
  118. val split = dependency.split(':')
  119. dependencyVersions[split[0]] = split[2]
  120. }
  121. }
  122. }
  123. fun isNonStable(version: String): Boolean {
  124. val stableKeyword = listOf("RELEASE", "FINAL", "GA").any { version.toUpperCase().contains(it) }
  125. val regex = "^[0-9,.v-]+(-r)?$".toRegex()
  126. val isGuava = version.endsWith("-jre")
  127. val isStable = stableKeyword || regex.matches(version) || isGuava
  128. return isStable.not()
  129. }
  130. tasks {
  131. named<DependencyUpdatesTask>("dependencyUpdates") {
  132. revision = "release"
  133. checkConstraints = true
  134. rejectVersionIf {
  135. isNonStable(candidate.version)
  136. }
  137. }
  138. }