-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
42 lines (31 loc) · 819 Bytes
/
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
plugins {
id 'application'
}
mainClassName = 'de.oppa.javalings.Javalings'
group = 'de.oppa'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation group: 'commons-io', name: 'commons-io', version: '2.11.0'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.15.1'
implementation group: 'com.ongres', name: 'fluent-process', version: '1.0.1'
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}
run {
standardInput = System.in
}
compileJava {options.encoding = "UTF-8"}
configurations {
compile.exclude module: 'exercises'
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(21))
}
}