This repository has been archived by the owner on Mar 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 54
/
build.gradle
171 lines (149 loc) · 4.47 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
buildscript {
repositories {
mavenCentral()
maven {
name = 'forge'
url = 'https://files.minecraftforge.net/maven'
}
maven {
name = 'SpongePowered'
url = 'https://repo.spongepowered.org/maven'
}
maven {
name = 'jitpack.io'
url = 'https://jitpack.io'
}
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT'
classpath 'org.spongepowered:mixingradle:0.6-SNAPSHOT'
classpath 'com.github.jengelman.gradle.plugins:shadow:4.0.4'
classpath 'com.formdev:flatlaf:1.5'
}
}
// project will not compile when set to true but we can see incompatibilities with vanilla mc.
boolean TWEAKER = false
// TODO: double check from time to time if there's forge methods we missed with vanilla source
if (TWEAKER) {
apply plugin: 'net.minecraftforge.gradle.tweaker-client'
} else {
apply plugin: 'net.minecraftforge.gradle.forge'
}
apply plugin: 'org.spongepowered.mixin'
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'application'
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'eclipse'
apply plugin: 'maven'
mainClassName = 'me.earth.earthhack.installer.main.Main'
group project.modGroup //http://maven.apache.org/guides/mini/guide-naming-conventions.html
project.version = '1.8.6'
boolean VANILLA = false
//noinspection GroovyUnusedAssignment
sourceCompatibility = targetCompatibility = '1.8'
compileJava {
sourceCompatibility = targetCompatibility = '1.8'
}
minecraft {
if (TWEAKER) {
version = '1.12.2'
tweakClass = 'me.earth.earthhack.tweaker.EarthhackTweaker'
} else {
version = project.forgeVersion
}
runDir = 'run'
mappings = project.mcpVersion
makeObfSourceJar = false
}
repositories {
mavenCentral()
google()
maven {
name = 'spongepowered-repo'
url = 'https://repo.spongepowered.org/maven'
}
maven {
name = 'jitpack.io'
url = 'https://jitpack.io'
}
}
dependencies {
compile('org.spongepowered:mixin:0.7.11-SNAPSHOT') {
exclude module: 'launchwrapper'
exclude module: 'guava'
exclude module: 'gson'
exclude module: 'commons-io'
}
/*
Had this in to make a Mixin, not needed anymore, but leaving it here
compileOnly ('com.github.3arthqu4ke:HeadlessMc:1.5.2') {
exclude module: 'headlessmc-launcher'
exclude module: 'headlessmc-lwjgl'
}
*/
compile group: 'club.minnced', name: 'java-discord-rpc', version: '2.0.1'
compile group: 'com.formdev', name: 'flatlaf', version: '1.5'
}
task getDeps(type: Copy) {
from sourceSets.main.runtimeClasspath
into 'runtime/'
}
processResources {
inputs.property 'version', project.version
inputs.property 'mcversion', project.minecraft.version
from(sourceSets.main.resources.srcDirs) {
include 'mcmod.info'
expand 'version': project.version, 'mcversion': project.minecraft.version
}
from(sourceSets.main.resources.srcDirs) {
exclude 'mcmod.info'
}
rename '(.+_at.cfg)', 'META-INF/$1'
}
task copyShadowJar(type: Copy, dependsOn: subprojects.jar) {
from(project.shadowJar)
if (System.getProperty('pb.jar.dir') != null) {
into project.file(System.getProperty('pb.jar.dir'))
} else {
into project.file('build/dummy')
}
}
shadowJar {
finalizedBy(copyShadowJar)
dependencies {
include(dependency('org.spongepowered:mixin'))
include(dependency('club.minnced:java-discord-rpc:2.0.1'))
include(dependency('club.minnced:discord-rpc-release:v3.3.0'))
include(dependency('com.formdev:flatlaf:1.5'))
}
exclude 'dummyThing'
exclude 'LICENSE.txt'
exclude '**/*module-info.class'
exclude '**/META-INF/versions/9/**'
classifier = 'release'
}
mixin {
defaultObfuscationEnv searge
//noinspection GroovyAssignabilityCheck
add sourceSets.main, 'mixins.earth.refmap.json'
}
reobf {
shadowJar {
mappingType = VANILLA ? 'NOTCH' : 'SEARGE'
classpath = sourceSets.main.compileClasspath
}
}
jar {
manifest {
attributes(
'Manifest-Version': 1.0,
'TweakClass': 'me.earth.earthhack.tweaker.EarthhackTweaker',
'TweakOrder': -999,
'FMLCorePluginContainsFMLMod': 'true',
'ForceLoadAsMod': 'true',
'Main-Class': mainClassName
)
}
}
build.dependsOn(shadowJar)