diff --git a/build.gradle b/build.gradle index 436337b6..15472664 100644 --- a/build.gradle +++ b/build.gradle @@ -45,6 +45,12 @@ buildscript { } +def commonScriptsFile = new File(new File(project.gradle.gradleUserHomeDir, "scripts"), "commonScripts.gradle") +if (commonScriptsFile.exists()) { + apply from: commonScriptsFile +} + + allprojects { repositories { mavenLocal() @@ -55,10 +61,8 @@ allprojects { group 'net.dankito.banking' version appVersionName - - task allDeps(type: DependencyReportTask) {} // to have a simple way to print all dependencies to console } task clean(type: Delete) { delete rootProject.buildDir -} +} \ No newline at end of file