Browse Source

Add coreInstall Task

Rob Winch 10 years ago
parent
commit
50ff81033c
1 changed files with 4 additions and 0 deletions
  1. 4 0
      build.gradle

+ 4 - 0
build.gradle

@@ -132,6 +132,10 @@ task coreBuild {
 	dependsOn coreModuleProjects*.tasks*.matching { task -> task.name == 'build' }
 }
 
+task coreInstall {
+	dependsOn coreModuleProjects*.tasks*.matching { task -> task.name == 'install' }
+}
+
 // Task for creating the distro zip
 
 task dist(type: Zip) {