-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
76 lines (58 loc) · 1.61 KB
/
build.gradle.kts
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import org.ajoberstar.reckon.gradle.ReckonExtension
plugins {
java
idea
id("us.ascendtech.gwt.lib") version "0.5.4" apply false
id("org.ajoberstar.reckon") version "0.13.0"
}
configure<ReckonExtension> {
scopeFromProp()
stageFromProp("rc", "final")
}
defaultTasks("build")
subprojects {
apply(plugin = "java")
apply(plugin = "maven")
apply(plugin = "idea")
defaultTasks("build")
group = "us.ascendtech"
repositories {
mavenCentral()
}
tasks.withType<JavaCompile> {
options.isDebug = true
options.debugOptions.debugLevel = "source,lines,vars"
options.encoding = "UTF-8"
options.compilerArgs.add("-parameters")
}
dependencies {
testImplementation("org.junit.jupiter:junit-jupiter-api:5.2.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.2.0")
}
sourceSets {
main {
java {
srcDir("src/main/java")
}
resources {
srcDir("src/main/java")
}
}
}
//workaround for intellij 2018.3 (should be fixed in 2018.3.2)
idea.module {
resourceDirs = resourceDirs - file("src/main/java")
}
val sourcesJar = tasks.register<Jar>("sourcesJar") {
classifier = "sources"
from(sourceSets.getByName("main").allSource)
}
artifacts.add("archives", sourcesJar)
tasks.withType<Jar> {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
}