12345678910111213141516171819202122232425262728293031323334 |
- allprojects {
- gradle.projectsEvaluated {
- tasks.withType(JavaCompile) {
- options.compilerArgs << "-Xlint:unchecked"
- }
- }
- repositories {
- // google()
- // mavenCentral()
- // maven { url 'https://maven.aliyun.com/repository/central/' }
- // maven { url 'https://maven.aliyun.com/repository/public/' }
- // maven { url 'https://maven.aliyun.com/repository/google/' }
- // maven { url 'https://maven.aliyun.com/repository/gradle-plugin/' }
- maven { url 'https://maven.aliyun.com/repository/google'}
- maven { url 'https://maven.aliyun.com/repository/jcenter' }
- maven { url 'https://maven.aliyun.com/nexus/content/groups/public'}
- maven { url 'https://maven.aliyun.com/repository/central' }
- maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
- }
- }
- rootProject.buildDir = '../build'
- subprojects {
- project.buildDir = "${rootProject.buildDir}/${project.name}"
- }
- subprojects {
- project.evaluationDependsOn(':app')
- }
- tasks.register("clean", Delete) {
- delete rootProject.buildDir
- }
|