Skip to content

Commit f132b2a

Browse files
fix(deps): update spotless packages to v8.2.0 (#2583)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Lauri Tulmin <ltulmin@splunk.com>
1 parent e921434 commit f132b2a

2 files changed

Lines changed: 12 additions & 17 deletions

File tree

buildSrc/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
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

77
repositories {
@@ -12,7 +12,7 @@ repositories {
1212

1313
dependencies {
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")

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)