-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
56 lines (45 loc) · 1.05 KB
/
build.gradle
File metadata and controls
56 lines (45 loc) · 1.05 KB
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
47
48
49
50
51
52
53
54
55
56
plugins {
id 'java'
id 'java-library'
id 'maven-publish'
id 'com.gradleup.shadow' version '8.3.1'
}
group = 'be.yvanmazy'
version = '1.1'
repositories {
mavenCentral()
}
dependencies {
// Code style
api 'org.jetbrains:annotations:24.1.0'
// Logging
api 'org.tinylog:slf4j-tinylog:2.7.0'
api 'org.tinylog:tinylog-impl:2.7.0'
// Arguments
api 'org.jcommander:jcommander:2.0'
// Json
api 'com.google.code.gson:gson:2.12.1'
// Byte code
api 'net.md-5:SpecialSource:1.11.4'
api 'org.vineflower:vineflower:1.11.0'
// Testing
testImplementation platform('org.junit:junit-bom:5.10.3')
testImplementation 'org.junit.jupiter:junit-jupiter'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
}
shadowJar {
manifest {
attributes 'Main-Class': 'be.yvanmazy.minecraftremapper.Main'
}
archiveClassifier.set('')
}
test {
useJUnitPlatform()
}