File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11plugins {
22 `kotlin- dsl`
33 // When updating, update below in dependencies too
4- id(" com.diffplug.spotless" ) version " 8.1 .0"
4+ id(" com.diffplug.spotless" ) version " 8.2 .0"
55}
66
77repositories {
@@ -12,7 +12,7 @@ repositories {
1212
1313dependencies {
1414 // When updating, update above in plugins too
15- implementation(" com.diffplug.spotless:com.diffplug.spotless.gradle.plugin:8.1 .0" )
15+ implementation(" com.diffplug.spotless:com.diffplug.spotless.gradle.plugin:8.2 .0" )
1616 implementation(" net.ltgt.errorprone:net.ltgt.errorprone.gradle.plugin:4.4.0" )
1717 implementation(" net.ltgt.nullaway:net.ltgt.nullaway.gradle.plugin:2.4.0" )
1818 implementation(" org.owasp.dependencycheck:org.owasp.dependencycheck.gradle.plugin:12.2.0" )
Original file line number Diff line number Diff line change @@ -113,25 +113,20 @@ testing {
113113
114114tasks {
115115 shadowJar {
116- /* *
117- * Shaded version of this extension is required when using it as a OpenTelemetry Java Agent
118- * extension. Shading bundles the dependencies required by this extension in the resulting JAR,
119- * ensuring their presence on the classpath at runtime.
120- *
121- * See http://gradleup.com/shadow/introduction/#introduction for reference.
122- */
116+ // Shaded version of this extension is required when using it as a OpenTelemetry Java Agent extension.
117+ // Shading bundles the dependencies required by this extension in the resulting JAR,
118+ // ensuring their presence on the classpath at runtime.
119+ //
120+ // See http://gradleup.com/shadow/introduction/#introduction for reference.
123121 archiveClassifier.set(" shadow" )
124122 }
125123
126124 jar {
127- /* *
128- * We need to publish both - shaded and unshaded variants of the dependency
129- * Shaded dependency is required for use with the Java agent.
130- * Unshaded dependency can be used with OTel Autoconfigure module.
131- *
132- * Not overriding the classifier to empty results in an implicit classifier 'plain' being
133- * used with the standard JAR.
134- */
125+ // We need to publish both - shaded and unshaded variants of the dependency
126+ // Shaded dependency is required for use with the Java agent.
127+ // Unshaded dependency can be used with OTel Autoconfigure module.
128+ // Not overriding the classifier to empty results in an implicit classifier 'plain' being
129+ // used with the standard JAR.
135130 archiveClassifier.set(" " )
136131 }
137132
You can’t perform that action at this time.
0 commit comments