-
Notifications
You must be signed in to change notification settings - Fork 11
/
build.gradle
46 lines (37 loc) · 1.25 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
buildscript {
ext {
jgraph_version = '1.5.2'
}
}
allprojects {
apply plugin: 'java'
group 'com.faforever.neroxis'
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
repositories {
mavenCentral()
}
dependencies {
implementation('info.picocli:picocli:4.7.6')
implementation('com.github.therapi:therapi-runtime-javadoc:0.15.0')
compileOnly('org.projectlombok:lombok:1.18.34')
annotationProcessor('org.projectlombok:lombok:1.18.34')
annotationProcessor('info.picocli:picocli-codegen:4.7.6')
annotationProcessor('com.github.therapi:therapi-runtime-javadoc-scribe:0.15.0')
def junitVersion = '5.11.3'
testImplementation("org.junit.jupiter:junit-jupiter-params:${junitVersion}")
testImplementation("org.junit.jupiter:junit-jupiter-api:${junitVersion}")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:${junitVersion}")
}
test {
useJUnitPlatform()
systemProperties = [
'junit.jupiter.execution.parallel.enabled': true
]
}
tasks.withType(JavaCompile) {
configure(options) {
options.compilerArgs << '-parameters'
}
}
}