PeopleInSpace/build.gradle.kts

30 lines
916 B
Text
Raw Normal View History

2020-02-09 11:42:41 +00:00
buildscript {
repositories {
google()
mavenCentral()
gradlePluginPortal()
2020-02-09 11:42:41 +00:00
}
dependencies {
2021-06-19 08:54:18 +00:00
classpath("com.android.tools.build:gradle:7.1.0-alpha02")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.kotlin}")
2020-08-22 11:08:09 +00:00
classpath("org.jetbrains.kotlin:kotlin-serialization:${Versions.kotlin}")
2020-02-09 11:42:41 +00:00
classpath("com.squareup.sqldelight:gradle-plugin:${Versions.sqlDelight}")
classpath("gradle.plugin.com.github.jengelman.gradle.plugins:shadow:7.0.0")
2020-02-09 11:42:41 +00:00
}
2021-06-19 09:06:01 +00:00
plugins {
id("org.jlleitschuh.gradle.ktlint") version Versions.ktlintGradle
}
2020-02-09 11:42:41 +00:00
}
allprojects {
2021-06-19 09:06:01 +00:00
apply(plugin = "org.jlleitschuh.gradle.ktlint") // Version should be inherited from parent
2020-02-09 11:42:41 +00:00
repositories {
google()
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
}
}