31 lines
892 B
Groovy
31 lines
892 B
Groovy
buildscript {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
mavenCentral()
|
|
maven { url 'https://dl.bintray.com/kotlin/kotlin-dev' }
|
|
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
|
|
if (project.hasProperty("kotlinCompilerRepo")) {
|
|
maven { setUrl(project.property("kotlinCompilerRepo")) }
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
classpath 'com.android.tools.build:gradle:3.5.0'
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
mavenCentral()
|
|
maven { url 'https://dl.bintray.com/kotlin/kotlin-dev' }
|
|
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
|
|
if (project.hasProperty("kotlinCompilerRepo")) {
|
|
maven { setUrl(project.property("kotlinCompilerRepo")) }
|
|
}
|
|
}
|
|
}
|