-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
50 lines (41 loc) · 1.14 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
plugins {
java
id("us.ascendtech.gwt.lib") version "0.9.2" apply false
id("us.ascendtech.gwt.modern") version "0.9.2" apply false
}
defaultTasks("build")
subprojects {
apply(plugin = "java")
defaultTasks("build")
group = "io.zulia.ui"
repositories {
mavenCentral()
flatDir {
dirs(rootProject.file("notInMaven"))
}
}
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")
}
dependencies {
testImplementation("org.junit.jupiter:junit-jupiter-api:5.4.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.4.2")
}
sourceSets {
main {
java {
srcDir("src/main/java")
}
resources {
srcDir("src/main/java")
}
}
}
}