build.gradle.kts 133 B

123456789
  1. plugins {
  2. id("otel.java-conventions")
  3. }
  4. tasks.withType<JavaCompile>().configureEach {
  5. with(options) {
  6. release.set(11)
  7. }
  8. }