diff --git a/build.gradle b/build.gradle index 17c115e8..bcc67593 100644 --- a/build.gradle +++ b/build.gradle @@ -11,8 +11,6 @@ plugins { id 'com.adarshr.test-logger' version '1.6.0' } -ext.githubToken = 'hidden' - // send analytics analytics { organization = 'Red Pill Analytics' @@ -27,7 +25,7 @@ scmVersion { prefix = 'v' versionSeparator = '' } - ignoreUncommittedChanges = false + ignoreUncommittedChanges = true } //set Gradle version to SCM Version @@ -176,4 +174,4 @@ tasks.withType(Test) { // Only execute certain tasks if we are on the master branch tasks.release.configure { onlyIf { gitBranch == 'master' } } tasks.publishPlugins.configure { onlyIf { gitBranch == 'master' } } -tasks.githubRelease.configure { onlyIf { gitBranch == 'master' } } \ No newline at end of file +tasks.githubRelease.configure { onlyIf { gitBranch == 'master' } } diff --git a/gradle.properties b/gradle.properties index 58bad059..68035dfe 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1 @@ -org.gradle.warning.mode=none - +githubToken = 'hidden' \ No newline at end of file diff --git a/settings.gradle b/settings.gradle index 92b8e755..a8f5deb2 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,7 +1 @@ -ext.isCiServer = System.getenv().containsKey("CI") - - buildCache { - local { - enabled = !isCiServer - } - } \ No newline at end of file +rootProject.name = 'gradle-confluent'