Reorganized task descriptions and removed IDE-related files
authorJeanderson Candido <jeandersonbc@gmail.com>
Mon, 18 Jun 2018 22:28:59 +0000 (19:28 -0300)
committerJeanderson Candido <jeandersonbc@gmail.com>
Mon, 18 Jun 2018 22:28:59 +0000 (19:28 -0300)
build.gradle

index fd4261d41517518d3bb61e6938ce434d7d201ea1..9193447c3f748620e7bbe5fe9429f9ab02b497cb 100644 (file)
@@ -94,7 +94,7 @@ task generateBuildInfo {
 }
 
 task copyResources(type: Copy) {
-    group = "JPF Build"
+    group = "JPF Build Resources"
     description = "Copies .version and build.properties files to the build directory."
 
     dependsOn generateBuildInfo
@@ -119,8 +119,8 @@ task compile {
 }
 
 task srcDist(type: Zip) {
-    group = "JPF Build"
-    description = "Builds the source distribution"
+    group = "JPF Distribution"
+    description = "Builds the source distribution."
 
     baseName = project.name
     version = "git rev-parse --short HEAD".execute().text.trim()
@@ -136,8 +136,6 @@ task srcDist(type: Zip) {
     include "gradlew"
     include "gradlew.bat"
     include "gradle/**/*"
-    include "nbproject/**/*"
-    include "eclipse/**/*"
     include "src/**/*"
     include "bin/**/*"
     include "jpf.properties"
@@ -147,8 +145,8 @@ task srcDist(type: Zip) {
 }
 
 task dist(type: Zip) {
-    group = "JPF Build"
-    description = "Builds binary distribution"
+    group = "JPF Distribution"
+    description = "Builds binary distribution."
 
     baseName = project.name
     version = "git rev-parse --short HEAD".execute().text.trim()
@@ -320,7 +318,6 @@ task buildJars {
 }
 
 test {
-    group = "JPF Build"
     description = "Runs core regression tests."
 
     dependsOn buildJars