-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
32 lines (28 loc) · 838 Bytes
/
build.gradle.kts
File metadata and controls
32 lines (28 loc) · 838 Bytes
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
import org.jetbrains.kotlin.gradle.dsl.KotlinJvmCompile
buildscript {
repositories {
mavenCentral()
google()
maven { url = uri("https://repository.quickbirdstudios.com/repository/public") }
}
dependencies {
classpath(Deps.Plugins.kotlin)
}
}
allprojects {
repositories {
mavenCentral()
google()
}
tasks.withType(KotlinJvmCompile::class.java).all {
kotlinOptions {
jvmTarget = "1.8"
freeCompilerArgs = listOf(
"-Xuse-experimental=kotlin.Experimental",
"-Xuse-experimental=kotlinx.coroutines.ObsoleteCoroutinesApi",
"-Xuse-experimental=kotlinx.coroutines.ExperimentalCoroutinesApi",
"-Xuse-experimental=kotlin.ExperimentalStdlibApi"
)
}
}
}