-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
53 lines (47 loc) · 1.78 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
41
42
43
44
45
46
47
48
49
50
51
52
53
plugins {
id 'application'
}
group 'io.github.stairman06'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
name = "Fabric"
url = "https://maven.fabricmc.net"
}
maven {
name = "Patchwork"
url = 'https://dl.bintray.com/patchworkmc/main/'
}
}
dependencies {
implementation 'org.ow2.asm:asm:9.0'
implementation 'org.ow2.asm:asm-analysis:9.0'
implementation 'org.ow2.asm:asm-commons:9.0'
implementation 'org.ow2.asm:asm-tree:9.0'
implementation 'org.ow2.asm:asm-util:9.0'
implementation 'net.fabricmc:tiny-mappings-parser:0.3.0+build.17'
implementation "commons-io:commons-io:2.7"
implementation 'com.google.code.gson:gson:2.8.6'
implementation 'net.fabricmc:tiny-remapper:0.3.1.72'
implementation 'org.apache.logging.log4j:log4j-api:2.13.2'
implementation 'org.apache.logging.log4j:log4j-core:2.13.2'
// == patcher dependencies ==
// Patchwork
implementation 'net.patchworkmc:patchwork-patcher:0.2'
implementation 'net.patchworkmc:patchwork-manifest:1.0.0'
implementation 'org.apache.logging.log4j:log4j-api:2.13.2'
implementation 'org.apache.logging.log4j:log4j-core:2.13.2'
runtimeOnly 'net.minecrell:terminalconsoleappender:1.2.0'
runtimeOnly 'org.jline:jline-terminal-jansi:3.12.1'
implementation 'net.fabricmc:tiny-remapper:0.3.1.72'
implementation ('net.fabricmc:stitch:0.4.6+build.74') {
exclude module: 'enigma'
}
implementation 'com.electronwill.night-config:toml:3.6.0'
implementation 'com.google.code.gson:gson:2.8.6'
implementation "commons-io:commons-io:2.7"
implementation "org.jetbrains:annotations:16.0.2"
implementation "org.dom4j:dom4j:2.1.3"
}
mainClassName = 'io.github.stairman06.arewepatchworkyet.AreWePatchworkYetGui'