// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { apply from: "config.gradle" repositories { google() jcenter() // maven { // //本地插件地址 // url uri(rootProject.ext.config["localRepoURL"]) // } //北京maven库 maven { url 'http://artifactory.intra.xiaojukeji.com/artifactory/public/' } maven { url 'https://www.jitpack.io' } } dependencies { classpath 'com.android.tools.build:gradle:3.6.1' classpath 'com.novoda:bintray-release:0.9.2' classpath 'com.didichuxing.doraemonkit:doraemonkit-plugin:3.0_beta3' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { google() jcenter() // maven { // //本地插件地址 // url uri(rootProject.ext.config["localRepoURL"]) // } //北京maven库 maven { url 'http://artifactory.intra.xiaojukeji.com/artifactory/public/' } maven { url 'https://www.jitpack.io' } } } task clean(type: Delete) { delete rootProject.buildDir } //tasks.getByPath(":doraemonkit:javadocRelease").enabled = false //tasks.getByPath(":doraemonkit-no-op:javadocRelease").enabled = false