We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a1c59d commit fe8a516Copy full SHA for fe8a516
build.gradle.kts
@@ -6,7 +6,7 @@ plugins {
6
}
7
8
group = "edu.mcgill"
9
-version = "0.0.9"
+version = "0.1.0"
10
11
repositories {
12
mavenCentral()
@@ -95,6 +95,7 @@ val fatJar by tasks.creating(Jar::class) {
95
attributes["Implementation-Title"] = "kaliningraph"
96
attributes["Implementation-Version"] = archiveVersion
97
98
+ setExcludes(listOf("META-INF/*.SF", "META-INF/*.DSA", "META-INF/*.RSA"))
99
from(configurations.runtimeClasspath.get().map { if (it.isDirectory) it else zipTree(it) })
100
with(tasks.jar.get() as CopySpec)
101
0 commit comments