forked from saket/press
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
40 lines (35 loc) · 972 Bytes
/
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
31
32
33
34
35
36
37
38
39
40
buildscript {
apply from: 'gradle/dependencies.gradle'
repositories {
google()
mavenCentral()
jcenter()
maven { url "https://dl.bintray.com/badoo/maven" }
maven { url "https://dl.bintray.com/robstoll/tutteli-jars" }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$versions.kotlin"
classpath "com.squareup.sqldelight:gradle-plugin:$versions.sqlDelight"
}
}
plugins {
id "org.jlleitschuh.gradle.ktlint" version "9.1.1" apply false
}
allprojects {
repositories {
google()
mavenCentral()
jcenter()
maven { url 'https://dl.bintray.com/badoo/maven' }
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
maven {
url 'https://dl.bintray.com/touchlabpublic/kotlin'
content {
includeGroup 'org.koin'
}
}
}
}
apply from: 'quality/lint.gradle'
apply from: 'gradle/dependencies.gradle'