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-20 12:52:13 +00:00
|
|
|
maven(uri("https://plugins.gradle.org/m2/")) // For kotlinter-gradle
|
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-07-24 18:12:38 +00:00
|
|
|
// keeping this here to allow AS to automatically update
|
|
|
|
classpath("com.android.tools.build:gradle:7.0.0-rc01")
|
|
|
|
|
2021-06-20 18:16:08 +00:00
|
|
|
with(Deps.Gradle) {
|
|
|
|
classpath(kotlin)
|
|
|
|
classpath(kotlinSerialization)
|
|
|
|
classpath(sqlDelight)
|
|
|
|
classpath(shadow)
|
|
|
|
classpath(kotlinter)
|
|
|
|
}
|
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()
|
2021-07-10 12:12:06 +00:00
|
|
|
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
|
|
|
}
|