diff --git a/all/build.gradle.kts b/all/build.gradle.kts index 0eaf8041b60..2d6b02d6c54 100644 --- a/all/build.gradle.kts +++ b/all/build.gradle.kts @@ -98,7 +98,7 @@ tasks.named("jacocoTestReport") { !it.absolutePath.contains("io/opentelemetry/sdk/extension/trace/jaeger/proto/") && !it.absolutePath.contains("io/opentelemetry/semconv/trace/attributes/") && !it.absolutePath.contains("AutoValue_") - } + }, ) } additionalSourceDirs(sourcesPath.incoming.artifactView { lenient(true) }.files) diff --git a/build.gradle.kts b/build.gradle.kts index 684f4b2e991..8bddb5eb0bc 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -12,7 +12,7 @@ if (!JavaVersion.current().isJava11Compatible()) { "JDK 11 or higher is required to build. " + "One option is to download it from https://adoptopenjdk.net/. If you believe you already " + "have it, please check that the JAVA_HOME environment variable is pointing at the " + - "JDK 11 installation." + "JDK 11 installation.", ) } diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts index 709c35f2103..a06ecbf31c4 100644 --- a/buildSrc/build.gradle.kts +++ b/buildSrc/build.gradle.kts @@ -14,7 +14,7 @@ repositories { dependencies { implementation("com.google.auto.value:auto-value-annotations:1.10.1") // When updating, update above in plugins too - implementation("com.diffplug.spotless:spotless-plugin-gradle:6.12.0") + implementation("com.diffplug.spotless:spotless-plugin-gradle:6.12.1") // Needed for japicmp but not automatically brought in for some reason. implementation("com.google.guava:guava:31.1-jre") implementation("com.squareup:javapoet:1.13.0") diff --git a/exporters/otlp/all/build.gradle.kts b/exporters/otlp/all/build.gradle.kts index 1968e109ce7..475372b7254 100644 --- a/exporters/otlp/all/build.gradle.kts +++ b/exporters/otlp/all/build.gradle.kts @@ -77,7 +77,7 @@ tasks { // Mainly to conveniently profile through IDEA. Don't add to check task, it's for // manual invocation. name != "testSpanPipeline" - } + }, ) } } diff --git a/exporters/otlp/common/build.gradle.kts b/exporters/otlp/common/build.gradle.kts index 9d7a7c7ce4b..39b78cd29ce 100644 --- a/exporters/otlp/common/build.gradle.kts +++ b/exporters/otlp/common/build.gradle.kts @@ -45,7 +45,7 @@ wire { root( "opentelemetry.proto.collector.trace.v1.ExportTraceServiceRequest", "opentelemetry.proto.collector.metrics.v1.ExportMetricsServiceRequest", - "opentelemetry.proto.collector.logs.v1.ExportLogsServiceRequest" + "opentelemetry.proto.collector.logs.v1.ExportLogsServiceRequest", ) custom { diff --git a/sdk/common/build.gradle.kts b/sdk/common/build.gradle.kts index be8c64b3739..90bbd095f6c 100644 --- a/sdk/common/build.gradle.kts +++ b/sdk/common/build.gradle.kts @@ -67,7 +67,7 @@ tasks { } } manifest.attributes( - "Multi-Release" to "true" + "Multi-Release" to "true", ) }