PeopleInSpace/build.gradle.kts

30 lines
696 B
Text
Raw Normal View History

2020-02-09 11:42:41 +00:00
buildscript {
repositories {
google()
mavenCentral()
gradlePluginPortal()
2021-06-20 12:52:13 +00:00
maven(uri("https://plugins.gradle.org/m2/")) // For kotlinter-gradle
2020-02-09 11:42:41 +00:00
}
2020-02-09 11:42:41 +00:00
dependencies {
with(Deps.Gradle) {
classpath(kotlin)
classpath(kotlinSerialization)
classpath(androidGradle)
classpath(sqlDelight)
classpath(shadow)
classpath(kotlinter)
}
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
}