From 3c89e6592429b757b03b32acaccf84e14c95fe1d Mon Sep 17 00:00:00 2001 From: Chris Rankin Date: Mon, 22 May 2017 12:11:31 +0100 Subject: [PATCH] Add verifier classes to the standalone jar. (#707) Also build the standalone jar by default. --- verifier/build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/verifier/build.gradle b/verifier/build.gradle index ea3518a7f2..81747b43c3 100644 --- a/verifier/build.gradle +++ b/verifier/build.gradle @@ -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