forked from cegeka/XPTraining-battle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (26 loc) · 782 Bytes
/
build.gradle
File metadata and controls
35 lines (26 loc) · 782 Bytes
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
allprojects {
apply plugin: 'java-library'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
version = '1.2.1'
repositories {
mavenCentral()
}
dependencies {
implementation(
[group: 'commons-io', name: 'commons-io', version: '2.17.0'],
[group: 'com.google.guava', name: 'guava', version: '33.3.1-jre']
)
testImplementation(
[group: 'org.junit.jupiter', name: 'junit-jupiter', version: '5.11.2'],
[group: 'org.assertj', name: 'assertj-core', version: '3.26.3'],
[group: 'org.mockito', name: 'mockito-core', version: '5.14.2']
)
}
test {
useJUnitPlatform()
}
}