Remove "extraBundledJars" task, which nothing else actually uses

Some tests in other subprojects do depend on some these extra jar
files.  But they can declare those specific dependencies as needed.
Nothing seems to depend on the entire group of extra jars, so it's not
really useful to declare a task that is merely an alias for all of
them.
This commit is contained in:
Ben Liblit 2018-01-18 12:34:20 -06:00
parent 3b172370d0
commit aabace3241
1 changed files with 0 additions and 15 deletions

View File

@ -10,9 +10,6 @@ sourceSets.test.java.srcDirs = ['src']
// download and/or create extra bundled jar archives
//
task extraBundledJars
processTestResources.dependsOn extraBundledJars
import de.undercouch.gradle.tasks.download.*
@ -44,8 +41,6 @@ task copyBcel(type: Copy, dependsOn: extractBcel) {
clean { delete 'bcel-5.2.jar' }
}
extraBundledJars.dependsOn copyBcel
////////////////////////////////////////////////////////////////////////
//
@ -64,8 +59,6 @@ task verifyJavaCup(type: VerifyWithStamp, dependsOn: downloadJavaCup) {
checksum '2bda8c40abd0cbc295d3038643d6e4ec'
}
extraBundledJars.dependsOn verifyJavaCup
////////////////////////////////////////////////////////////////////////
//
@ -80,8 +73,6 @@ task collectJLex(type: Jar) {
clean { delete collectJLex }
}
extraBundledJars.dependsOn collectJLex
////////////////////////////////////////////////////////////////////////
//
@ -121,8 +112,6 @@ task generateHelloHash(type: JavaExec, dependsOn: unpackOcamlJava) {
clean { delete generateHelloHash }
}
extraBundledJars.dependsOn generateHelloHash
////////////////////////////////////////////////////////////////////////
//
@ -139,8 +128,6 @@ task collectTestData(type: Jar) {
clean { delete collectTestData }
}
extraBundledJars.dependsOn collectTestData
////////////////////////////////////////////////////////////////////////
//
@ -166,5 +153,3 @@ task collectTestDataA(type: Jar) {
destinationDir projectDir
clean { delete collectTestDataA }
}
extraBundledJars.dependsOn collectTestDataA