-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathbuild.gradle
59 lines (49 loc) · 1.18 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
plugins {
id "kotlin" apply false
}
allprojects {
repositories {
gradlePluginPortal()
mavenCentral()
jcenter()
maven {
url "https://dl.bintray.com/kotlin/kotlin-eap"
}
maven {
url "https://cache-redirector.jetbrains.com/jcenter.bintray.com"
}
}
afterEvaluate { project ->
if (project.plugins.hasPlugin("kotlin")) {
test {
useJUnitPlatform()
}
project.sourceSets {
main.kotlin.srcDirs = ['src']
test.kotlin.srcDirs = ['test/src']
test.resources.srcDirs = ['test/data']
}
compileKotlin {
kotlinOptions {
jvmTarget = '1.8'
allWarningsAsErrors = true
freeCompilerArgs += "-Xuse-experimental=kotlin.Experimental"
}
}
compileTestKotlin {
kotlinOptions {
freeCompilerArgs += "-Xuse-experimental=kotlin.Experimental"
}
}
dependencies {
implementation("org.jetbrains.kotlin:kotlin-stdlib:$gradle.kotlinVersion")
}
}
if (project.plugins.hasPlugin("java")) {
compileJava {
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
}
}
}
}