disable default jar task

This commit is contained in:
Andras Slemmer 2018-05-10 13:38:16 +01:00
parent 99d70fc197
commit 7a39ff8617

View File

@ -80,15 +80,14 @@ dependencies {
}
configurations {
compile.extendsFrom shadow
testArtifacts.extendsFrom testRuntime
testArtifacts.extendsFrom testRuntime
testCompile.extendsFrom shadow
}
jar {
enabled = false
baseName 'corda-node-api'
}
// ensure that immediately after jar step we update to the shaded version of the jar, so that everyone use it.
jar.finalizedBy shadowJar
shadowJar {
baseName jar.baseName