forked from dexman545/GitCraft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
58 lines (47 loc) · 1.54 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
54
55
56
57
58
plugins {
id 'groovy'
id 'application'
}
group 'dex.mcgitmaker'
version '0.1.1-SNAPSHOT'
repositories {
maven {
name = 'Fabric'
url = 'https://maven.fabricmc.net/'
}
maven {
url = "https://maven.quiltmc.org/repository/release"
}
mavenCentral()
}
tasks.withType(JavaCompile).configureEach {
it.options.encoding = "UTF-8"
it.options.release = 8
}
application {
mainClass = 'dex.mcgitmaker.GitCraft'
}
dependencies {
implementation 'org.codehaus.groovy:groovy-all:3.0.11'
// Loader and its deps
implementation "net.fabricmc:fabric-loader:0.+"
implementation "org.ow2.asm:asm:${project.asm_version}"
implementation "org.ow2.asm:asm-analysis:${project.asm_version}"
implementation "org.ow2.asm:asm-commons:${project.asm_version}"
implementation "org.ow2.asm:asm-tree:${project.asm_version}"
implementation "org.ow2.asm:asm-util:${project.asm_version}"
implementation('net.fabricmc:stitch:0.+') {
exclude module: 'enigma'
}
// tinyfile management
implementation('net.fabricmc:tiny-remapper:0.+')
implementation 'net.fabricmc:access-widener:2.+'
implementation 'net.fabricmc:mapping-io:0.+'
implementation('net.fabricmc:lorenz-tiny:4.+') {
transitive = false
}
// https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit
implementation 'org.eclipse.jgit:org.eclipse.jgit:6.2.0.202206071550-r'
// Decompiler, could be replaced with another fernflower fork
implementation 'org.quiltmc:quiltflower:1.+'
}