-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle.kts
281 lines (234 loc) · 8.87 KB
/
build.gradle.kts
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
buildscript {
repositories {
mavenLocal()
google()
jcenter()
}
dependencies {
classpath("com.guardsquare:proguard-gradle:7.0.0")
}
}
plugins {
application
java
idea
kotlin("jvm") version "1.4.0"
}
group = "net.inceptioncloud"
version = "1.1.5.1"
val outputName
get() = "${project.name}-${project.version}-full.jar"
repositories {
mavenCentral()
}
dependencies {
testImplementation("junit:junit:4.13")
implementation(kotlin("stdlib-jdk8"))
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9")
implementation("org.jetbrains.kotlin:kotlin-reflect:1.4.0")
implementation("com.squareup.okhttp3:okhttp:4.3.1")
implementation("com.esotericsoftware:kryonet:2.22.0-RC1")
implementation("org.javassist:javassist:3.15.0-GA")
// only required for inspector extension
implementation("no.tornado:tornadofx:1.7.20")
implementation(fileTree("libraries"))
implementation(fileTree("libraries-minecraft"))
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
application {
mainClassName = "net.minecraft.client.main.Main"
applicationDefaultJvmArgs = listOf(
"-Djava.library.path=../natives/",
"-XX:+DisableExplicitGC",
"-XX:+UseConcMarkSweepGC",
"-XX:+UseParNewGC",
"-XX:+UseNUMA",
"-XX:+CMSParallelRemarkEnabled",
"-XX:MaxGCPauseMillis=30",
"-XX:GCPauseIntervalMillis=150",
"-XX:+UseAdaptiveGCBoundary",
"-XX:-UseGCOverheadLimit",
"-XX:+UseBiasedLocking",
"-XX:SurvivorRatio=8",
"-XX:TargetSurvivorRatio=90",
"-XX:MaxTenuringThreshold=15",
"-Dfml.ignorePatchDiscrepancies=true",
"-Dfml.ignoreInvalidMinecraftCertificates\u00AD=true",
"-XX:+UseFastAccessorMethods",
"-XX:+UseCompressedOops",
"-XX:+OptimizeStringConcat",
"-XX:+AggressiveOpts",
"-XX:ReservedCodeCacheSize=2048M",
"-XX:+UseCodeCacheFlushing",
"-XX:SoftRefLRUPolicyMSPerMB=20000",
"-XX:ParallelGCThreads=10",
"-XX:+UnlockCommercialFeatures",
"-Dlog4j.configurationFile=assets\\log_configs\\client-1.7.xml"
)
}
sourceSets {
main {
java {
srcDirs("src/main/resources")
exclude("net/inceptioncloud/dragonfly/engine/inspector/extension/**")
}
resources {
srcDirs("resources/")
exclude("resources/Dragonfly-1.8.8.json")
}
}
}
// custom tasks
tasks {
register<net.inceptioncloud.build.update.VersionTask>("version")
register<net.inceptioncloud.build.update.PublishTask>("publish") {
dependsOn("fullJar", "obfuscateJar")
}
register<proguard.gradle.ProGuardTask>("obfuscateJar") {
verbose()
dontwarn()
dontoptimize()
dontshrink()
injars("build/libs/$outputName")
outjars("build/libs/${project.name}-${project.version}-obfuscated.jar")
libraryjars("${System.getProperty("java.home")}/lib/rt.jar")
obfuscationdictionary("obfuscation/dictionary.txt")
classobfuscationdictionary("obfuscation/dictionary.txt")
packageobfuscationdictionary("obfuscation/dictionary.txt")
overloadaggressively()
flattenpackagehierarchy()
repackageclasses()
File("libraries-minecraft").listFiles()!!.forEach { libraryjars(it.absolutePath) }
File("libraries").listFiles()!!.forEach { libraryjars(it.absolutePath) }
printmapping("obfuscation/${project.name}-${project.version}.map")
renamesourcefileattribute("~")
keepattributes("SourceFile,LineNumberTable")
dontnote("kotlin.internal.PlatformImplementationsKt")
dontnote("kotlin.reflect.jvm.internal.**")
keep("class com.** { *; }")
keep("class darwin.** { *; }")
keep("class io.** { *; }")
keep("class javax.** { *; }")
keep("class khttp.** { *; }")
keep("class kotlin.** { *; }")
keep("class kotlinx.** { *; }")
keep("class linux.** { *; }")
keep("class net.arikia.** { *; }")
keep("class net.minecraftforge.** { *; }")
keep("class optifine.** { *; }")
keep("class org.** { *; }")
keep("class oshi.** { *; }")
keep("@net.inceptioncloud.dragonfly.utils.Keep class * { *; }")
keep("class net.inceptioncloud.dragonfly.utils.Keep")
keep("class net.inceptioncloud.dragonfly.ui.taskbar.** { *; }")
keep("class net.inceptioncloud.dragonfly.engine.internal.** { *; }")
keep("class net.inceptioncloud.dragonfly.engine.structure.** { *; }")
keep("class * extends net.inceptioncloud.dragonfly.engine.internal.Widget { *; }")
keep("class * extends net.inceptioncloud.dragonfly.engine.internal.AssembledWidget { *; }")
keep("class * extends net.inceptioncloud.dragonfly.mods.core.DragonflyMod { *; }")
keep("class net.inceptioncloud.dragonfly.mods.core.DragonflyMod { *; }")
keep("class net.dragonfly.kernel.packets.Packet { *; }")
keep("class * implements net.dragonfly.kernel.packets.Packet { *; }")
keep("class net.minecraft.entity.** { *; }")
keep("class net.minecraft.village.** { *; }")
keep("class net.minecraft.block.** { *; }")
keep("class net.minecraft.realms.** { *; }")
keep("class net.minecraft.client.ClientBrandRetriever { *; }")
keep("class net.minecraft.client.gui.Gui { *; }")
keep("class net.minecraft.client.gui.GuiScreen { *; }")
keep("class net.minecraft.client.gui.GuiYesNoCallback { *; }")
keep("class net.minecraft.server.MinecraftServer { *; }")
keepattributes("*Annotation*")
keepclasseswithmembers("""public class * {
public static void main(java.lang.String[]);
}""")
keepclasseswithmembernames("""class * {
native <methods>;
}""")
keepclassmembers(mapOf(
"allowoptimization" to true
), """enum * {
public static **[] values();
public static ** valueOf(java.lang.String);
}""")
keepclassmembers("""class * implements java.io.Serializable {
static final long serialVersionUID;
static final java.io.ObjectStreamField[] serialPersistentFields;
private void writeObject(java.io.ObjectOutputStream);
private void readObject(java.io.ObjectInputStream);
java.lang.Object writeReplace();
java.lang.Object readResolve();
}""")
}
register<Jar>("fullJar") {
archiveClassifier.set("full")
manifest {
attributes["Main-Class"] = "net.minecraft.client.main.Main"
}
from(configurations.runtimeClasspath.get()
.filter { !it.absolutePath.contains("libraries-minecraft") || it.absolutePath.contains("netty-all") }
.filter { "tornadofx" !in it.absolutePath } // exclude tornadofx
.filter { "reflections" !in it.absolutePath } // exclude org.reflections but not kotlin-reflect
.map { if (it.isDirectory) it else zipTree(it) }
) {
exclude { it.name == "module-info.class" || it.name == "icon_inspector.png" }
}
with(jar.get() as CopySpec)
}
register("copy") {
dependsOn("copyJar", "copyJson")
}
register<Copy>("copyJar") {
dependsOn("fullJar")
from("build/libs/")
include(outputName)
destinationDir = file("${System.getenv("APPDATA")}\\.minecraft\\versions\\Dragonfly-1.8.8")
rename(outputName, "Dragonfly-1.8.8.jar")
}
register<Copy>("copyObfuscated") {
dependsOn("fullJar", "obfuscateJar")
from("build/libs")
include("${project.name}-${project.version}-obfuscated.jar")
destinationDir = file("${System.getenv("APPDATA")}\\.minecraft\\versions\\Dragonfly-1.8.8")
rename("${project.name}-${project.version}-obfuscated.jar", "Dragonfly-1.8.8.jar")
}
register<Copy>("copyJson") {
from("resources/")
include("Dragonfly-1.8.8.json")
into("${System.getenv("APPDATA")}\\.minecraft\\versions\\Dragonfly-1.8.8\\")
}
}
// tasks configurations
tasks {
build.configure {
dependsOn("fullJar")
}
run.configure {
main = "Start"
workingDir("runtime/")
}
test {
useJUnit()
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.freeCompilerArgs += listOf(
"-Xopt-in=kotlin.ExperimentalStdlibApi",
"-Xopt-in=kotlin.contracts.ExperimentalContracts",
"-Xopt-in=kotlinx.coroutines.ObsoleteCoroutinesApi",
"-Xuse-experimental=kotlin.Experimental"
)
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileJava {
options.encoding = "UTF-8"
}
compileTestJava {
options.encoding = "UTF-8"
}
}