build.gradle.kts 209 B

12345678910111213
  1. plugins {
  2. id("otel.java-conventions")
  3. }
  4. tasks.withType<JavaCompile>().configureEach {
  5. with(options) {
  6. release.set(11)
  7. }
  8. }
  9. dependencies {
  10. implementation("com.google.code.findbugs:jsr305:3.0.2")
  11. }