-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathbuild.gradle
47 lines (37 loc) · 1.05 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
allprojects {
apply plugin: "java"
apply plugin: "groovy"
repositories {
mavenLocal()
mavenCentral()
}
ext {
groovyVersion = "3.0.6"
spockVersion = "2.0-M4-groovy-3.0"
javaxCDIVersion = "2.0"
apacheCommonsVersion = "3.11"
}
dependencies {
compile "org.codehaus.groovy:groovy-json:${groovyVersion}"
compile "javax.enterprise:cdi-api:${javaxCDIVersion}"
compile "org.apache.commons:commons-lang3:${apacheCommonsVersion}"
testCompile "org.spockframework:spock-core:${spockVersion}"
testCompile platform("org.spockframework:spock-bom:${spockVersion}")
}
group "com.dolap.quarkus.ddd"
version "1.0.0"
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
compileJava {
options.encoding = "UTF-8"
options.compilerArgs << "-parameters"
}
compileTestJava {
options.encoding = "UTF-8"
}
test {
useJUnitPlatform()
}
}