-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.gradle
34 lines (30 loc) · 977 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
subprojects {
buildscript {
ext.kotlin_version = '1.2.41'
ext.kotlin_native_version = '0.7'
repositories {
jcenter()
google()
maven { url "http://kotlin.bintray.com/kotlinx" }
maven { url "https://plugins.gradle.org/m2/" }
maven { url "https://dl.bintray.com/jetbrains/kotlin-native-dependencies" }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.android.tools.build:gradle:3.0.1'
classpath "org.jetbrains.kotlin:kotlin-native-gradle-plugin:$kotlin_native_version"
}
}
group 'xyz.albertgao'
version '1.0-SNAPSHOT'
repositories {
jcenter()
maven { url "http://kotlin.bintray.com/kotlinx" }
}
tasks.withType(Test) {
testLogging {
showStandardStreams = true
events "passed", "failed"
}
}
}