-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
41 lines (33 loc) · 837 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
plugins {
id 'java'
id 'application'
}
group = 'io.github.ititus'
version = '1.0.0'
wrapper {
gradleVersion '7.5.1'
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
repositories {
mavenCentral()
}
dependencies {
// implementation 'org.apache.bcel:bcel:6.5.0'
implementation fileTree(dir: 'libs', include: '*.jar')
implementation 'org.json:json:20250107'
implementation 'io.github.ititus:ititus-commons:2.3.3'
testImplementation platform('org.junit:junit-bom:5.11.4')
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation 'org.assertj:assertj-core:3.27.3'
testImplementation 'org.mockito:mockito-core:5.15.2'
}
test {
useJUnitPlatform()
}
application {
mainClass = 'io.github.ititus.factorio.recipes.FactorioRecipes'
}