PeopleInSpace/build.gradle.kts

33 lines
849 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 {
2021-07-24 18:12:38 +00:00
// keeping this here to allow AS to automatically update
2021-10-17 18:07:17 +00:00
classpath("com.android.tools.build:gradle:7.0.3")
2021-07-24 18:12:38 +00:00
with(Deps.Gradle) {
classpath(kotlin)
classpath(kotlinSerialization)
classpath(sqlDelight)
classpath(shadow)
classpath(kotlinter)
2021-09-17 19:04:32 +00:00
classpath(gradleVersionsPlugin)
}
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()
maven(url = "https://maven.pkg.jetbrains.space/kotlin/p/kotlin/kotlin-js-wrappers")
2020-10-28 21:19:44 +00:00
maven(url = "https://jitpack.io")
2020-02-09 11:42:41 +00:00
}
2021-06-20 09:32:24 +00:00
}