Add verifier classes to the standalone jar. (#707)

Also build the standalone jar by default.
This commit is contained in:
Chris Rankin 2017-05-22 12:11:31 +01:00 committed by GitHub
parent 53276c1f06
commit 3c89e65924

View File

@ -52,6 +52,7 @@ task standaloneJar(type: Jar) {
from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
with jar
exclude("META-INF/*.DSA")
exclude("META-INF/*.RSA")
exclude("META-INF/*.SF")
@ -65,3 +66,5 @@ task integrationTest(type: Test) {
testClassesDir = sourceSets.integrationTest.output.classesDir
classpath = sourceSets.integrationTest.runtimeClasspath
}
build.dependsOn standaloneJar