PeopleInSpace/build.gradle.kts

29 lines
679 B
Text
Raw Normal View History

2020-02-09 11:42:41 +00:00
buildscript {
repositories {
google()
mavenCentral()
gradlePluginPortal()
// For kotlinter-gradle
maven(uri("https://plugins.gradle.org/m2/"))
2020-02-09 11:42:41 +00:00
}
2020-02-09 11:42:41 +00:00
dependencies {
2021-06-20 10:20:15 +00:00
classpath(Deps.Kotlin.kotlin)
classpath(Deps.Kotlin.serialization)
2021-06-20 05:23:36 +00:00
classpath(Deps.gradle)
classpath(Deps.sqlDelight)
classpath(Deps.shadow)
classpath(Deps.kotlinterGradle)
2021-06-19 09:06:01 +00:00
}
2020-02-09 11:42:41 +00:00
}
allprojects {
apply(plugin = "org.jmailen.kotlinter")
2021-06-19 09:06:01 +00:00
2020-02-09 11:42:41 +00:00
repositories {
google()
mavenCentral()
2020-10-28 21:19:44 +00:00
maven(url = "https://kotlin.bintray.com/kotlin-js-wrappers/")
maven(url = "https://jitpack.io")
2020-02-09 11:42:41 +00:00
}
2021-06-20 09:32:24 +00:00
}