-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
112 lines (99 loc) · 2.53 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
buildscript {
repositories {
mavenCentral()
jcenter()
maven {
name = "forge"
url = "https://maven.minecraftforge.net"
// url = "http://files.minecraftforge.net/maven"
}
maven {
name = 'sponge'
url = 'https://repo.spongepowered.org/maven'
}
maven {
url = 'https://jitpack.io'
}
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:2.1-SNAPSHOT'
classpath 'org.spongepowered:mixingradle:0.6-SNAPSHOT'
}
}
apply plugin: 'net.minecraftforge.gradle.tweaker-client'
apply plugin: 'org.spongepowered.mixin'
apply plugin: 'java'
version = "Release"
group= "me.eldodebug"
archivesBaseName = "GlideClient"
sourceCompatibility = targetCompatibility = 1.8
compileJava.options.encoding = 'UTF-8'
minecraft {
version = "1.8.9"
tweakClass = "me.eldodebug.soar.injection.mixin.GlideTweaker"
runDir = "run"
mappings = "stable_22"
clientJvmArgs = ["-XX:-DisableExplicitGC"]
makeObfSourceJar = false
}
repositories {
maven {
name "jitpack"
url "https://jitpack.io"
}
maven {
name "spongepowered"
url "https://repo.spongepowered.org/maven/"
}
jcenter()
mavenCentral()
}
configurations {
embed
compile.extendsFrom(embed)
}
dependencies {
embed('org.spongepowered:mixin:0.7.11-SNAPSHOT') {
exclude module: 'launchwrapper'
exclude module: 'guava'
exclude module: 'gson'
exclude module: 'commons-io'
}
embed(files('libs/lwjgl-soar.jar'))
embed(files('libs/lwjgl-soar-natives.jar'))
}
mixin {
defaultObfuscationEnv = "notch"
add sourceSets.main, "mixins.soar.refmap.json"
}
processResources {
inputs.files "src/main/resources"
outputs.dir "build/classes/main"
copy {
from("src/main/resources")
into("build/classes/main")
}
}
jar {
dependsOn configurations.compile
from {
configurations.embed.collect {
it.isDirectory() ? it : zipTree(it)
}
}
exclude 'META-INF/*.RSA', 'META-INF/*.SF', 'META-INF/*.DSA'
}
jar {
manifest.attributes(
"MixinConfigs": 'mixins.soar.json',
"TweakClass": 'me.eldodebug.soar.injection.mixin.GlideTweaker',
"TweakOrder": 0,
"Manifest-Version": 1.0,
'FMLAT': 'soar_at.cfg'
)
configurations.embed.each { dep ->
from(project.zipTree(dep)) {
exclude 'META-INF', 'META-INF/**'
}
}
}