30 lines
No EOL
696 B
Text
30 lines
No EOL
696 B
Text
buildscript {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
maven(uri("https://plugins.gradle.org/m2/")) // For kotlinter-gradle
|
|
}
|
|
|
|
dependencies {
|
|
with(Deps.Gradle) {
|
|
classpath(kotlin)
|
|
classpath(kotlinSerialization)
|
|
classpath(androidGradle)
|
|
classpath(sqlDelight)
|
|
classpath(shadow)
|
|
classpath(kotlinter)
|
|
}
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
apply(plugin = "org.jmailen.kotlinter")
|
|
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven(url = "https://kotlin.bintray.com/kotlin-js-wrappers/")
|
|
maven(url = "https://jitpack.io")
|
|
}
|
|
} |