Files
kotlin-fork/kotlin-native/samples/calculator/build.gradle
T
2020-12-21 16:18:37 +01:00

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")) }
}
}
}