Skip to content

Commit 094a88e

Browse files
committed
fix spotless
1 parent 3a5d011 commit 094a88e

1 file changed

Lines changed: 10 additions & 15 deletions

File tree

gcp-auth-extension/build.gradle.kts

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -113,25 +113,20 @@ testing {
113113

114114
tasks {
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

0 commit comments

Comments
 (0)