PeopleInSpace/build.gradle.kts
2020-12-03 17:51:58 +00:00

28 lines
754 B
Text

buildscript {
repositories {
google()
mavenCentral()
jcenter()
}
dependencies {
classpath("xml-apis:xml-apis:1.4.01")
classpath("com.android.tools.build:gradle:7.0.0-alpha02")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.kotlin}")
classpath("org.jetbrains.kotlin:kotlin-serialization:${Versions.kotlin}")
classpath("com.squareup.sqldelight:gradle-plugin:${Versions.sqlDelight}")
}
}
allprojects {
repositories {
google()
mavenCentral()
jcenter()
maven(url = "https://dl.bintray.com/ekito/koin")
maven(url = "https://kotlin.bintray.com/kotlin-js-wrappers/")
maven(url = "https://jitpack.io")
}
}