PeopleInSpace/build.gradle.kts

28 lines
742 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-alpha03")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.20")
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")
}
}