forked from FabricMC/Mixin
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from LegacyModdingMC/mixins-8-7
Mixins 0.8.7
- Loading branch information
Showing
134 changed files
with
5,012 additions
and
1,554 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,13 +6,13 @@ buildscript { | |
} | ||
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') | ||
classpath 'com.guardsquare:proguard-gradle:' + (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_11) ? '7.5.0' : '7.1.0') | ||
} | ||
} | ||
|
||
plugins { | ||
id "me.modmuss50.remotesign" version "0.4.0" | ||
id "me.modmuss50.remotesign" version "0.4.0" | ||
id "io.github.goooler.shadow" version "8.1.7" | ||
} | ||
|
||
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar | ||
|
@@ -24,17 +24,18 @@ apply plugin: 'checkstyle' | |
apply plugin: 'maven-publish' | ||
apply plugin: 'eclipse' | ||
apply plugin: 'idea' | ||
apply plugin: 'com.github.johnrengelman.shadow' | ||
apply plugin: 'potemkin-modules' | ||
|
||
// Default tasks | ||
defaultTasks 'licenseFormat', 'check', 'build' | ||
|
||
// Basic project information | ||
group = 'io.github.legacymoddingmc' | ||
archivesBaseName = 'sponge-mixin' | ||
version = buildVersion + "+mixin." + upstreamMixinVersion | ||
|
||
base { | ||
archivesName = 'sponge-mixin' | ||
} | ||
|
||
def ENV = System.getenv() | ||
if (!ENV.CI) { | ||
|
@@ -50,12 +51,13 @@ ext.packaging = 'jar' | |
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' | ||
|
||
java { | ||
modularity.inferModulePath = false | ||
disableAutoTargetJvm() | ||
|
||
// Minimum version of Java required | ||
sourceCompatibility = '1.8' | ||
targetCompatibility = '1.8' | ||
} | ||
|
||
// Project repositories | ||
|
@@ -71,40 +73,20 @@ repositories { | |
} | ||
maven { | ||
// For modlauncher | ||
name = 'forge' | ||
url = 'https://files.minecraftforge.net/maven' | ||
} | ||
} | ||
|
||
configurations { | ||
stagingJar | ||
|
||
exampleImplementation .extendsFrom implementation | ||
fernflowerImplementation .extendsFrom implementation | ||
launchwrapperImplementation .extendsFrom implementation | ||
agentImplementation .extendsFrom implementation | ||
modlauncherImplementation .extendsFrom implementation | ||
modlauncher9Implementation .extendsFrom modlauncherImplementation | ||
modularityImplementation .extendsFrom modlauncher9Implementation | ||
modularityCompileOnly .extendsFrom compileOnly | ||
|
||
proguard { | ||
extendsFrom fernflowerImplementation | ||
extendsFrom launchwrapperImplementation | ||
extendsFrom modlauncherImplementation | ||
extendsFrom compileClasspath | ||
name = 'neoforged' | ||
url = 'https://maven.neoforged.net/releases' | ||
} | ||
} | ||
|
||
sourceSets { | ||
legacy { | ||
ext.languageVersion = 8 | ||
ext.compatibility = '1.6' | ||
ext.compatibility = '1.8' | ||
} | ||
main { | ||
compileClasspath += legacy.output | ||
ext.languageVersion = 8 | ||
ext.compatibility = '1.6' | ||
ext.compatibility = '1.8' | ||
} | ||
ap { | ||
compileClasspath += main.output | ||
|
@@ -114,13 +96,13 @@ sourceSets { | |
fernflower { | ||
compileClasspath += main.output | ||
ext.languageVersion = 8 | ||
ext.compatibility = '1.6' | ||
ext.compatibility = '1.8' | ||
ext.modularityExcluded = true | ||
} | ||
agent { | ||
compileClasspath += main.output | ||
ext.languageVersion = 8 | ||
ext.compatibility = '1.6' | ||
ext.compatibility = '1.8' | ||
} | ||
bridge { | ||
compileClasspath += main.output | ||
|
@@ -164,6 +146,26 @@ sourceSets { | |
modularityDummy {} | ||
} | ||
|
||
configurations { | ||
stagingJar | ||
|
||
exampleImplementation .extendsFrom implementation | ||
fernflowerImplementation .extendsFrom implementation | ||
launchwrapperImplementation .extendsFrom implementation | ||
agentImplementation .extendsFrom implementation | ||
modlauncherImplementation .extendsFrom implementation | ||
modlauncher9Implementation .extendsFrom modlauncherImplementation | ||
modularityImplementation .extendsFrom modlauncher9Implementation | ||
modularityCompileOnly .extendsFrom compileOnly | ||
|
||
proguard { | ||
extendsFrom fernflowerImplementation | ||
extendsFrom launchwrapperImplementation | ||
extendsFrom modlauncherImplementation | ||
extendsFrom compileClasspath | ||
} | ||
} | ||
|
||
// Because Mixin aims to support a variety of environments, we have to be able to run with older versions of GSON and Guava that lack official module | ||
// names. This means the same library may appear with multiple module names. We want to be able to link our module with either of these two at | ||
// runtime, without having to have two versions of the library on our compile-time module path. To do this, we generate empty "potemkin" jars with | ||
|
@@ -226,7 +228,7 @@ dependencies { | |
modlauncher9Implementation ("cpw.mods:modlauncher:$modlauncherVersion") { | ||
exclude module: 'jopt-simple' | ||
} | ||
modlauncher9Implementation 'cpw.mods:securejarhandler:0.9.+' | ||
modlauncher9Implementation 'cpw.mods:securejarhandler:2.1.24' | ||
|
||
// asm bridge | ||
bridgeImplementation 'org.apache.logging.log4j:log4j-core:2.0-beta9' | ||
|
@@ -243,11 +245,11 @@ javadoc { | |
source sourceSets.ap.allJava | ||
options.encoding = 'UTF-8' | ||
exclude { | ||
it.relativePath.file && it.relativePath.pathString =~ 'tools' && !(it.name =~ /SuppressedBy|package-info/) } | ||
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 { | ||
|
@@ -320,7 +322,7 @@ checkstyle { | |
"year" : project.inceptionYear | ||
] | ||
configFile = file("checkstyle.xml") | ||
toolVersion = '8.44' | ||
toolVersion = '10.17.0' | ||
} | ||
|
||
// Source compiler configuration | ||
|
@@ -333,10 +335,8 @@ tasks.withType(JavaCompile) { | |
def modularityInputs = objects.fileCollection() | ||
|
||
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("languageVersion") && JavaVersion.current().isJava9Compatible()) { | ||
project.tasks[set.compileJavaTaskName].options.release = set.ext.languageVersion | ||
} | ||
if (set.ext.has("compatibility")) { | ||
project.tasks[set.compileJavaTaskName].sourceCompatibility = set.ext.compatibility | ||
|
@@ -439,7 +439,7 @@ task sourceJar(type: Jar) { | |
} | ||
|
||
task javadocJar(type: Jar, dependsOn: javadoc) { | ||
from javadoc.destinationDir | ||
from javadoc.destinationDir | ||
archiveClassifier = "javadoc" | ||
} | ||
|
||
|
@@ -464,7 +464,7 @@ publishing { | |
publications { | ||
developer(MavenPublication) { publication -> | ||
groupId project.group | ||
artifactId project.archivesBaseName | ||
artifactId project.base.archivesName.get() | ||
version project.version | ||
|
||
artifact sourceJar | ||
|
@@ -519,8 +519,8 @@ publishing { | |
} | ||
} | ||
|
||
developers { | ||
// Et. al. that arent in the fabric org on maven central | ||
developers { | ||
// Et. al. that arent in the fabric org on maven central | ||
|
||
developer { | ||
id = "makamys" | ||
|
@@ -534,13 +534,13 @@ publishing { | |
email = "[email protected]" | ||
} | ||
|
||
developer { | ||
id = "sfPlayer" | ||
name = "Player" | ||
email = "[email protected]" | ||
} | ||
} | ||
} | ||
developer { | ||
id = "sfPlayer" | ||
name = "Player" | ||
email = "[email protected]" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
|
@@ -555,24 +555,24 @@ publishing { | |
} | ||
} | ||
|
||
if (ENV.MAVEN_CENTRAL_URL) { | ||
repositories.maven { | ||
name "central" | ||
url ENV.MAVEN_CENTRAL_URL | ||
credentials { | ||
username ENV.MAVEN_CENTRAL_USERNAME | ||
password ENV.MAVEN_CENTRAL_PASSWORD | ||
} | ||
} | ||
} | ||
if (ENV.MAVEN_CENTRAL_URL) { | ||
repositories.maven { | ||
name "central" | ||
url ENV.MAVEN_CENTRAL_URL | ||
credentials { | ||
username ENV.MAVEN_CENTRAL_USERNAME | ||
password ENV.MAVEN_CENTRAL_PASSWORD | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
remoteSign { | ||
requestUrl = ENV.SIGNING_SERVER | ||
pgpAuthKey = ENV.SIGNING_PGP_KEY | ||
useDummyForTesting = ENV.SIGNING_SERVER == null | ||
sign publishing.publications.developer | ||
requestUrl = ENV.SIGNING_SERVER | ||
pgpAuthKey = ENV.SIGNING_PGP_KEY | ||
useDummyForTesting = ENV.SIGNING_SERVER == null | ||
sign publishing.publications.developer | ||
} | ||
|
||
// A task to ensure that the version being released has not already been released. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip | ||
networkTimeout=10000 | ||
validateDistributionUrl=true | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
Oops, something went wrong.