# HG changeset patch # User Oleksandr Gavenko # Date 1487409523 -7200 # Node ID 1b48fa26b52cede79534f4fa9fc613ada2939894 # Parent ccd4c8b353306c57506467622c0444ee334f7d9d Include mavenLocal() to gradle builds. diff -r ccd4c8b35330 -r 1b48fa26b52c .gradle/init.d/mavenLocal.gradle --- a/.gradle/init.d/mavenLocal.gradle Sat Feb 18 11:14:13 2017 +0200 +++ b/.gradle/init.d/mavenLocal.gradle Sat Feb 18 11:18:43 2017 +0200 @@ -1,20 +1,26 @@ -allprojects { project -> - buildscript { - if( !project.hasProperty('skipMavenLocal') ) { - repositories { - println "Adding buildscript mavenLocal()" - mavenLocal() - } - configurations.all { - resolutionStrategy.cacheChangingModulesFor 0, 'hours' - } - } - } +allprojects { + // project -> + // buildscript { + // if( !project.hasProperty('skipMavenLocal') ) { + // repositories { + // println "Adding buildscript mavenLocal()" + // mavenLocal() + // } + // configurations.all { + // resolutionStrategy.cacheChangingModulesFor 0, 'hours' + // } + // } + // } - if( !project.hasProperty('skipMavenLocal') ) { - repositories { - println "Adding mavenLocal()" - mavenLocal() - } + // if( !project.hasProperty('skipMavenLocal') ) { + // repositories { + // println "Adding mavenLocal()" + // mavenLocal() + // } + // } + + repositories { + println "Adding mavenLocal()" + mavenLocal() } }