PeopleInSpace/build.gradle.kts
2021-07-24 19:12:38 +01:00

32 lines
No EOL
810 B
Text

buildscript {
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven(uri("https://plugins.gradle.org/m2/")) // For kotlinter-gradle
}
dependencies {
// keeping this here to allow AS to automatically update
classpath("com.android.tools.build:gradle:7.0.0-rc01")
with(Deps.Gradle) {
classpath(kotlin)
classpath(kotlinSerialization)
classpath(sqlDelight)
classpath(shadow)
classpath(kotlinter)
}
}
}
allprojects {
apply(plugin = "org.jmailen.kotlinter")
repositories {
google()
mavenCentral()
maven(url = "https://maven.pkg.jetbrains.space/kotlin/p/kotlin/kotlin-js-wrappers")
maven(url = "https://jitpack.io")
}
}