-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle.kts
73 lines (57 loc) · 1.56 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
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()
}
configurations.all {
// check for updates every build more than 10 minutes apart (for snapshots)
resolutionStrategy.cacheChangingModulesFor(10, TimeUnit.MINUTES)
}
tasks.withType<JavaCompile> {
options.isDebug = true
options.debugOptions.debugLevel = "source,lines,vars"
options.encoding = "UTF-8"
options.compilerArgs.add("-parameters")
}
sourceSets {
main {
java {
srcDir("src/main/java")
}
resources {
srcDir("src/main/java")
}
}
}
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
}
}