Skip to content

Commit 38c1024

Browse files
authored
SONARKT-399 Fix shadowJar configuration
This was overlooked during replacement of "kotlin-compiler-embeddable" by "kotlin-compiler" in d7a5cfd.
1 parent 81c9a59 commit 38c1024

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sonar-kotlin-plugin/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,10 @@ val javadocJar = tasks.javadocJar
9696
tasks.shadowJar {
9797
minimize {}
9898
exclude("META-INF/native/**/*jansi*")
99-
exclude("org/jetbrains/kotlin/org/jline/**")
100-
exclude("org/jetbrains/kotlin/net/jpountz/**")
99+
exclude("org/jline/**")
100+
exclude("net/jpountz/**")
101101
doLast {
102-
enforceJarSizeAndCheckContent(shadowJar.get().archiveFile.get().asFile, 38_100_000L, 38_600_000L)
102+
enforceJarSizeAndCheckContent(shadowJar.get().archiveFile.get().asFile, 37_500_000L, 38_000_000L)
103103
}
104104
}
105105

0 commit comments

Comments
 (0)