forked from LegacyModdingMC/UniMix
-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.gradle
426 lines (370 loc) · 12.2 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
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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
// Gradle repositories and dependencies
buildscript {
repositories {
gradlePluginPortal()
mavenCentral()
}
dependencies {
classpath 'gradle.plugin.com.hierynomus.gradle.plugins:license-gradle-plugin:0.16.1'
classpath 'gradle.plugin.com.github.jengelman.gradle.plugins:shadow:7.0.0'
classpath 'com.guardsquare:proguard-gradle:' + (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_11) ? '7.2.0' : '7.1.0')
}
}
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
// Apply plugin
apply plugin: 'java'
apply plugin: 'com.github.hierynomus.license'
apply plugin: 'checkstyle'
apply plugin: 'maven-publish'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'com.github.johnrengelman.shadow'
// Default tasks
defaultTasks 'licenseFormat', 'check', 'build'
// Basic project information
group = 'com.cleanroommc'
archivesBaseName = 'sponge-mixin'
version = buildVersion + "+mixin." + upstreamMixinVersion
def ENV = System.getenv()
if (!ENV.CI) {
version = version + "-local"
}
// Extended project information
ext.projectName = 'Mixin'
ext.inceptionYear = '2014'
ext.packaging = 'jar'
// Define variables
ext.asmVersion = project.hasProperty("asmVersion") ? asmVersion : '9.0'
ext.legacyForgeAsmVersion = project.hasProperty("legacyForgeAsmVersion") ? asmVersion : '5.0.3'
// Minimum version of Java required
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
// Project repositories
repositories {
mavenCentral()
maven {
name = 'minecraft'
url = 'https://libraries.minecraft.net/'
}
maven {
name = 'Fabric'
url = 'https://maven.fabricmc.net/'
}
}
configurations {
stagingJar
exampleImplementation .extendsFrom implementation
fernflowerImplementation .extendsFrom implementation
launchwrapperImplementation .extendsFrom implementation
agentImplementation .extendsFrom implementation
proguard {
extendsFrom fernflowerImplementation
extendsFrom launchwrapperImplementation
extendsFrom compileClasspath
}
}
sourceSets {
legacy {
ext.languageVersion = 8
ext.compatibility = '1.8'
}
main {
compileClasspath += legacy.output
ext.languageVersion = 8
ext.compatibility = '1.8'
}
ap {
compileClasspath += main.output
ext.languageVersion = 8
ext.compatibility = '1.8'
}
fernflower {
compileClasspath += main.output
ext.languageVersion = 8
ext.compatibility = '1.6'
}
agent {
compileClasspath += main.output
ext.languageVersion = 8
ext.compatibility = '1.8'
}
bridge {
compileClasspath += main.output
ext.languageVersion = 8
ext.compatibility = '1.8'
}
example {
compileClasspath += main.output
compileClasspath += ap.output
}
test
launchwrapper {
compileClasspath += main.output
ext.languageVersion = 8
ext.compatibility = '1.8'
}
}
// Project dependencies
dependencies {
def guava = 'com.google.guava:guava:21.0' // from mc1.12 onwards
def gson = 'com.google.code.gson:gson:2.2.4'
stagingJar guava
stagingJar gson
implementation guava
implementation 'com.google.code.gson:gson:2.2.4'
if (Float.parseFloat(asmVersion) < 6) {
implementation "org.ow2.asm:asm-debug-all:$asmVersion"
}
implementation "org.ow2.asm:asm-tree:$asmVersion"
implementation "org.ow2.asm:asm-commons:$asmVersion"
implementation "org.ow2.asm:asm-util:$asmVersion"
// Annotation Processor
apImplementation "org.ow2.asm:asm-tree:$asmVersion"
apImplementation guava
apImplementation gson
// Fernflower decompiler
fernflowerImplementation 'org.jetbrains:intellij-fernflower:1.0.0.9'
// LegacyLauncher service
launchwrapperImplementation ('net.minecraft:launchwrapper:1.11') {
exclude module: 'lwjgl'
exclude module: 'asm-debug-all'
exclude module: 'jopt-simple'
}
// asm bridge
bridgeImplementation 'org.apache.logging.log4j:log4j-core:2.0-beta9'
bridgeImplementation "org.ow2.asm:asm-commons:$legacyForgeAsmVersion"
legacyImplementation "org.ow2.asm:asm-tree:$asmVersion"
}
javadoc {
exclude '**/throwables'
classpath += sourceSets.legacy.output
source sourceSets.ap.allJava
options.encoding = 'UTF-8'
exclude {
it.relativePath.file && it.relativePath.pathString =~ 'tools' && !(it.name =~ /SuppressedBy|package-info/) }
options {
docTitle 'Welcome to the Mixin Javadoc'
overview 'docs/javadoc/overview.html'
stylesheetFile file('docs/javadoc/mixin.css')
addBooleanOption '-allow-script-in-comments', true
}
doLast {
copy {
from 'docs/javadoc/resources'
into outputDirectory
}
}
}
eclipse {
classpath {
containers 'org.eclipse.buildship.core.gradleclasspathcontainer'
file.whenMerged {
entries.removeAll { it.kind == 'lib' && it.path =~ ~/log4j.*beta9/ }
// Mark everything else as a module
entries.findAll { it.kind == "con" && it.path =~ /gradleclasspathcontainer$/ }.each {
it.entryAttributes['module'] = 'true'
}
}
}
project {
resourceFilter {
appliesTo = 'FOLDERS'
type = 'EXCLUDE_ALL'
matcher {
id = 'org.eclipse.ui.ide.multiFilter'
arguments = '1.0-name-matches-false-false-buildSrc'
}
}
}
// Build service task outputs for test projects
autoBuildTasks compileLaunchwrapperJava
}
// Filter, process, and include resources
processResources {
// Include in final JAR
from 'LICENSE.txt'
}
// License header formatting
license {
ext {
name = "Mixin"
organization = "SpongePowered"
url = "https://www.spongepowered.org"
}
include '**/*.java'
header file("HEADER.txt")
sourceSets = project.sourceSets
ignoreFailures false
strictCheck true
mapping {
java = 'SLASHSTAR_STYLE'
}
}
checkstyle {
configProperties = [
"name" : project.name,
"organization": project.organization,
"url" : project.url,
"year" : project.inceptionYear
]
configFile = file("checkstyle.xml")
toolVersion = '8.44'
}
// Source compiler configuration
tasks.withType(JavaCompile) {
options.compilerArgs += ['-Xlint:all', '-Xlint:-path', '-proc:none']
options.deprecation = true
options.encoding = 'utf8'
}
project.sourceSets.each { set -> {
if (set.ext.has("languageVersion")) {
project.tasks[set.compileJavaTaskName].javaCompiler = javaToolchains.compilerFor {
languageVersion = JavaLanguageVersion.of(set.ext.languageVersion)
}
}
if (set.ext.has("compatibility")) {
project.tasks[set.compileJavaTaskName].sourceCompatibility = set.ext.compatibility
project.tasks[set.compileJavaTaskName].targetCompatibility = set.ext.compatibility
}
}}
if (JavaVersion.current().isJava8Compatible()) {
tasks.withType(Javadoc) {
// disable the crazy super-strict doclint tool in Java 8
options.addStringOption('Xdoclint:syntax', '-quiet')
}
}
task stagingJar(type: ShadowJar) {
sourceSets.findAll { !(it.name =~ /example|test/) }.each {
from it.output
}
configurations = [project.configurations.stagingJar]
// JAR manifest configuration
manifest.attributes(
"Built-By": System.properties['user.name'],
"Created-By": System.properties['java.vm.version'] + " (" + System.properties['java.vm.vendor'] + ")",
"Implementation-Title": name,
"Implementation-Version": project.version,
"Implementation-Vendor": url,
// for hotswap agent
"Premain-Class": "org.spongepowered.tools.agent.MixinAgent",
"Agent-Class": "org.spongepowered.tools.agent.MixinAgent",
"Can-Redefine-Classes": true,
"Can-Retransform-Classes": true
)
mergeServiceFiles()
relocate 'com.google', 'org.spongepowered.include.com.google'
archiveClassifier = "staging"
}
File proguardFile = file("build/libs/sponge-mixin-${version}.jar")
task stagingProguardJar(type: proguard.gradle.ProGuardTask, dependsOn: stagingJar) {
doFirst {
configurations.proguard.resolve().forEach {
libraryjars it
}
}
outputs.upToDateWhen { false }
libraryjars JavaVersion.current().java9Compatible ? "${System.getProperty('java.home')}/jmods" : "${System.getProperty('java.home')}/lib/rt.jar"
injars stagingJar.archiveFile
outjars proguardFile
configuration file("proguard.conf")
}
build.dependsOn stagingProguardJar
// Clear artifacts because jar will be there by default and we want to use staging jar instead
configurations.archives.artifacts.clear()
// generate shadow jar so we can use the AP standalone
shadowJar {
from sourceSets.ap.output
archiveClassifier = 'processor'
}
build.dependsOn(shadowJar)
// Run this task instead of build to generate a timestamped shadow jar (for dev)
task timestamp(type: Jar, dependsOn: build) {
if (gradle.startParameter.taskNames.contains(name)) {
shadowJar.archiveClassifier = new Date().format('yyyyMMddHHmmss')
}
}
task sourceJar(type: Jar) {
sourceSets.each {
from it.java
from it.resources
}
archiveClassifier = "sources"
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}
task javadocJar(type: Jar, dependsOn: javadoc) {
from javadoc.destinationDir
archiveClassifier = "javadoc"
}
artifacts {
archives stagingJar
archives sourceJar
archives javadocJar
archives shadowJar
}
ext.excludePomDeps = [
'fernflower',
'jarjar',
'hamcrest-library',
'junit',
'mockito-core',
'mixin-asm-debug-all',
'log4j-core'
]
publishing {
publications {
developer(MavenPublication) { publication ->
groupId project.group
artifactId project.archivesBaseName
version project.version
artifact sourceJar
artifact javadocJar
artifact(proguardFile) {
builtBy stagingProguardJar
classifier = null
}
// https://issues.gradle.org/browse/GRADLE-2966
pom.withXml {
def dependenciesNode = asNode().appendNode('dependencies')
configurations.runtimeClasspath.allDependencies.each {
if (it.group != null && it.name != null && !excludePomDeps.contains(it.name)) {
def dependencyNode = dependenciesNode.appendNode('dependency')
dependencyNode.appendNode('groupId', it.group)
dependencyNode.appendNode('artifactId', it.name)
dependencyNode.appendNode('version', it.version)
if (it.excludeRules.size() > 0) {
def exclusionsNode = dependencyNode.appendNode('exclusions')
it.excludeRules.each { rule ->
def exclusionNode = exclusionsNode.appendNode('exclusion')
exclusionNode.appendNode('groupId', rule.group)
exclusionNode.appendNode('artifactId', rule.module)
}
}
}
}
}
}
}
repositories {
if (ENV.MAVEN_URL) {
maven {
url ENV.MAVEN_URL
credentials {
username ENV.MAVEN_USERNAME
password ENV.MAVEN_PASSWORD
}
}
}
}
}
// A task to ensure that the version being released has not already been released.
task checkVersion {
doFirst {
def xml = new URL("https://maven.fabricmc.net/net/fabricmc/sponge-mixin/maven-metadata.xml").text
def metadata = new XmlSlurper().parseText(xml)
def versions = metadata.versioning.versions.version*.text();
if (versions.contains(version)) {
throw new RuntimeException("${version} has already been released!")
}
}
}
publish.mustRunAfter checkVersion