Removed jacoco and builscan from regular build
authorJeanderson Candido <jeandersonbc@gmail.com>
Tue, 10 Jul 2018 21:32:30 +0000 (18:32 -0300)
committerJeanderson Candido <jeandersonbc@gmail.com>
Tue, 10 Jul 2018 21:32:30 +0000 (18:32 -0300)
build.gradle

index 3d2f0b54bcade4a5381d54e5eb06c4dc4e3ce61c..c8582eb28bdde00804d462cfb48babc8261ea42a 100644 (file)
@@ -1,11 +1,13 @@
 plugins {
-    id "com.gradle.build-scan" version "1.14"
     id "java"
-    id "jacoco"
     id "eclipse"
 }
 
-version = "git describe --tags".execute().text.trim()
+def getCurrentVersion() {
+    "DEVELOPMENT-SNAPSHOT"
+}
+
+version = currentVersion
 
 sourceCompatibility = 1.8
 targetCompatibility = 1.8
@@ -18,18 +20,6 @@ ext.manifestCommonAttrbutes = manifest {
     )
 }
 
-buildScan {
-    termsOfServiceUrl = 'https://gradle.com/terms-of-service'
-    termsOfServiceAgree = 'yes'
-}
-
-jacocoTestReport {
-    reports {
-        xml.enabled = true
-        html.enabled = false
-    }
-}
-
 repositories {
     mavenCentral()
 }