Skip to content

Commit fe8a516

Browse files
committed
try excluding signed artifacts
1 parent 2a1c59d commit fe8a516

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group = "edu.mcgill"
9-
version = "0.0.9"
9+
version = "0.1.0"
1010

1111
repositories {
1212
mavenCentral()
@@ -95,6 +95,7 @@ val fatJar by tasks.creating(Jar::class) {
9595
attributes["Implementation-Title"] = "kaliningraph"
9696
attributes["Implementation-Version"] = archiveVersion
9797
}
98+
setExcludes(listOf("META-INF/*.SF", "META-INF/*.DSA", "META-INF/*.RSA"))
9899
from(configurations.runtimeClasspath.get().map { if (it.isDirectory) it else zipTree(it) })
99100
with(tasks.jar.get() as CopySpec)
100101
}

0 commit comments

Comments
 (0)