From: Jeanderson Candido Date: Tue, 10 Jul 2018 21:32:30 +0000 (-0300) Subject: Removed jacoco and builscan from regular build X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=8deac6ffbe881b3647d2956ee3e93d0f04ed942d;p=jpf-core.git Removed jacoco and builscan from regular build --- diff --git a/build.gradle b/build.gradle index 3d2f0b5..c8582eb 100644 --- a/build.gradle +++ b/build.gradle @@ -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() }