build.gradle.kts 6.0 KB

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