diff --git a/build.gradle b/build.gradle index e6828d8a3a..4af1d3c016 100644 --- a/build.gradle +++ b/build.gradle @@ -129,4 +129,12 @@ task pullCommonDependencies(type: Copy) { task copyLibs(type: Copy) { dependsOn pullServiceDependencies, pullModelDependencies, pullGraphDependencies, pullPropertyWindowDependencies, pullDataViewerDependencies, pullCommonDependencies -} \ No newline at end of file +} + +allprojects { + tasks.withType(JavaCompile).configureEach { + options.fork = true + options.incremental = true + } + +}