testJar and integrationTestJar task now produce jar files with different names

This commit is contained in:
ghidra4 2019-04-30 12:31:09 -04:00
parent 7baa82a53a
commit 77d711dbce

View File

@ -110,12 +110,12 @@ configurations {
}
task testJar(type: Jar) {
classifier "test"
classifier "test" // value part of file name
from sourceSets.test.output
}
task integrationTestJar(type: Jar) {
classifier "test"
classifier "integrationTest" // value part of file name
from sourceSets.integrationTest.output
}
artifacts {