-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
executable file
·30 lines (29 loc) · 1.12 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
buildscript {
repositories {
jcenter()
google()
mavenCentral()
maven { url 'https://plugins.gradle.org/m2/' }
maven { url "https://kotlin.bintray.com/kotlinx" }
maven { url "https://dl.bintray.com/jetbrains/kotlin-native-dependencies" }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
classpath "com.android.tools.build:gradle:$gradle_android_version"
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:$detekt_version"
classpath "org.jlleitschuh.gradle:ktlint-gradle:9.1.1"
classpath "com.squareup.sqldelight:gradle-plugin:1.2.0"
}
}
allprojects {
repositories {
jcenter()
google()
maven { url 'https://jitpack.io' }
maven { url 'https://repo1.maven.org/maven2/' }
maven { url "https://kotlin.bintray.com/kotlinx" }
maven { url "https://dl.bintray.com/kodein-framework/Kodein-DI" }
maven { url "https://dl.bintray.com/touchlabpublic/kotlin" }
}
}