diff --git a/build.gradle b/build.gradle index 758b27d..ae34eac 100644 --- a/build.gradle +++ b/build.gradle @@ -13,6 +13,8 @@ targetCompatibility = '1.8' compileJava.options.encoding = 'UTF-8' +if(compile_incremental == "true") + compileJava.options.incremental = true ext.commit = null ext.previousCommit = null diff --git a/gradle.properties b/gradle.properties index 66b5bc0..ef41885 100644 --- a/gradle.properties +++ b/gradle.properties @@ -33,3 +33,7 @@ # Publish (injecting) publish_jars= publish_url= + +# +# Build options +compile_incremental=false