You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: buildSrc/src/main/kotlin/otel.japicmp-conventions.gradle.kts
+3-3
Original file line number
Diff line number
Diff line change
@@ -73,7 +73,7 @@ fun findArtifact(version: String): File {
73
73
val depModule ="io.opentelemetry:${base.archivesName.get()}:$version@jar"
74
74
val depJar ="${base.archivesName.get()}-$version.jar"
75
75
val configuration:Configuration= configurations.detachedConfiguration(
76
-
dependencies.create(depModule)
76
+
dependencies.create(depModule),
77
77
)
78
78
return files(configuration.files).filter {
79
79
it.name.equals(depJar)
@@ -110,7 +110,7 @@ if (!project.hasProperty("otel.release") && !project.name.startsWith("bom")) {
110
110
// so publish the whole API. We do that by flipping this flag, and comparing the current against nothing.
111
111
onlyModified.set(false)
112
112
files()
113
-
}
113
+
},
114
114
)
115
115
116
116
// Reproduce defaults from https://github.com/melix/japicmp-gradle-plugin/blob/09f52739ef1fccda6b4310cf3f4b19dc97377024/src/main/java/me/champeau/gradle/japicmp/report/ViolationsGenerator.java#L130
@@ -133,7 +133,7 @@ if (!project.hasProperty("otel.release") && !project.name.startsWith("bom")) {
133
133
val baseVersionString =if (apiBaseVersion ==null) "latest"else baselineVersion
0 commit comments