diff --git a/Jenkinsfile.groovy b/Jenkinsfile.groovy index 999621db..79233fa0 100644 --- a/Jenkinsfile.groovy +++ b/Jenkinsfile.groovy @@ -19,7 +19,7 @@ pipeline { stage('Preparing project') { steps { powershell "(gc gradle.properties) -replace 'org.gradle.caching=true', 'org.gradle.caching=false' | Out-File -encoding ASCII gradle.properties" - powershell "(gc gradle.properties) -replace 'org.gradle.unsafe.configuration-cache=true', 'org.gradle.unsafe.configuration-cache=false' | Out-File -encoding ASCII gradle.properties" + powershell "(gc gradle.properties) -replace 'org.gradle.unsafe.configuration-cache=ON', 'org.gradle.unsafe.configuration-cache=OFF' | Out-File -encoding ASCII gradle.properties" } } diff --git a/gradle.properties b/gradle.properties index d0ea058a..81658fa6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -34,4 +34,4 @@ org.gradle.parallel=true org.gradle.caching=true # Increase memory allotted to JVM org.gradle.jvmargs=-Xmx4096m -XX:+UseParallelGC -org.gradle.unsafe.configuration-cache=true \ No newline at end of file +org.gradle.unsafe.configuration-cache=ON \ No newline at end of file