moved ip dependency to file where ip task is defined.

This commit is contained in:
ghidravore
2019-04-29 16:36:53 -04:00
parent ae8e6302f3
commit 7baa82a53a
2 changed files with 1 additions and 6 deletions
-5
View File
@@ -1,15 +1,10 @@
apply from: "$rootProject.projectDir/gradle/support/ip.gradle" apply from: "$rootProject.projectDir/gradle/support/ip.gradle"
rootProject.assembleDistribution.dependsOn ip
// all application tests depend on all the sleigh processors to be built // all application tests depend on all the sleigh processors to be built
tasks.withType(Test).all { tasks.withType(Test).all {
it.dependsOn ":allSleighCompile" it.dependsOn ":allSleighCompile"
} }
plugins.withType(JavaPlugin) { plugins.withType(JavaPlugin) {
task zipSourceSubproject (type: Zip) { t -> task zipSourceSubproject (type: Zip) { t ->
+1 -1
View File
@@ -36,7 +36,7 @@ task ip {
writeLicenseInfo(project, ipToFileMap) writeLicenseInfo(project, ipToFileMap)
} }
} }
rootProject.assembleDistribution.dependsOn ip
/********************************************************************************* /*********************************************************************************