Skip to content

Commit

Permalink
try excluding signed artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
breandan committed Aug 25, 2020
1 parent 2a1c59d commit fe8a516
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = "edu.mcgill"
version = "0.0.9"
version = "0.1.0"

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

0 comments on commit fe8a516

Please sign in to comment.