-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
40 lines (33 loc) · 1.03 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
plugins {
id 'application'
}
group = 'uk.gemwire'
archivesBaseName = 'mcpconvert'
version = '0.1'
repositories {
mavenCentral()
maven { url = 'https://files.minecraftforge.net/maven/' }
}
dependencies {
implementation group: 'net.minecraftforge', name: 'srgutils', version: '0.4.13'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.14.2'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.14.2'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.14.2'
implementation group: 'com.google.jimfs', name: 'jimfs', version: '1.2'
testImplementation(platform('org.junit:junit-bom:5.9.2'))
testImplementation('org.junit.jupiter:junit-jupiter')
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
}
application {
mainClassName = 'uk.gemwire.mcpconvert.Main'
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}