You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
legado/build.gradle

32 lines
960 B

6 years ago
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
3 years ago
ext.kotlin_version = '1.5.30'
6 years ago
repositories {
google()
3 years ago
mavenCentral()
3 years ago
maven { url 'https://plugins.gradle.org/m2/' }
3 years ago
maven { url 'https://maven.aliyun.com/repository/public' }
maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
6 years ago
}
dependencies {
3 years ago
classpath 'com.android.tools.build:gradle:7.0.1'
4 years ago
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
3 years ago
classpath 'de.timfreiheit.resourceplaceholders:placeholders:0.4'
classpath 'de.undercouch:gradle-download-task:4.1.2'
6 years ago
}
}
allprojects {
repositories {
google()
3 years ago
mavenCentral()
3 years ago
maven { url 'https://maven.aliyun.com/repository/public' }
maven { url 'https://jitpack.io' }
6 years ago
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}