File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree 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