-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathbuild.gradle
More file actions
52 lines (43 loc) · 999 Bytes
/
build.gradle
File metadata and controls
52 lines (43 loc) · 999 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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
}
}
dependencies {
implementation("org.jetbrains.kotlin:kotlin-stdlib:$gradle.kotlinVersion")
}
}
if (project.plugins.hasPlugin("java")) {
compileJava {
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
}
}
}
}