2020-02-09 11:42:41 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
google()
|
2020-04-03 19:04:36 +00:00
|
|
|
mavenCentral()
|
2021-06-16 17:42:33 +00:00
|
|
|
gradlePluginPortal()
|
2021-06-19 11:45:16 +00:00
|
|
|
// For kotlinter-gradle
|
|
|
|
maven(uri("https://plugins.gradle.org/m2/"))
|
2020-02-09 11:42:41 +00:00
|
|
|
}
|
2021-06-19 11:45:16 +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 {
|
2021-06-19 11:45:16 +00:00
|
|
|
apply(plugin = "org.jmailen.kotlinter")
|
2021-06-19 09:06:01 +00:00
|
|
|
|
2020-02-09 11:42:41 +00:00
|
|
|
repositories {
|
|
|
|
google()
|
2020-04-03 19:04:36 +00:00
|
|
|
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
|
|
|
}
|