diff options
author | makamys <makamys@outlook.com> | 2022-06-04 09:31:42 +0200 |
---|---|---|
committer | makamys <makamys@outlook.com> | 2022-06-04 09:33:13 +0200 |
commit | 24204cfdc91a9ecc5e0012d9f256a7e72f541d64 (patch) | |
tree | 233971dbe560cb416eaa0646c7bf38853daabc1b /buildscript | |
parent | b0f7f36a0b26f8ae0f6c238ae1a11f68d20efa1c (diff) | |
download | Neodymium-24204cfdc91a9ecc5e0012d9f256a7e72f541d64.tar.gz Neodymium-24204cfdc91a9ecc5e0012d9f256a7e72f541d64.tar.bz2 Neodymium-24204cfdc91a9ecc5e0012d9f256a7e72f541d64.zip |
Migrate to generic buildscript
Diffstat (limited to 'buildscript')
-rw-r--r-- | buildscript/forge-1.7-mixin.gradle | 42 | ||||
-rw-r--r-- | buildscript/forge-1.7.gradle | 90 |
2 files changed, 132 insertions, 0 deletions
diff --git a/buildscript/forge-1.7-mixin.gradle b/buildscript/forge-1.7-mixin.gradle new file mode 100644 index 0000000..fddc15b --- /dev/null +++ b/buildscript/forge-1.7-mixin.gradle @@ -0,0 +1,42 @@ +/** Applying this file in a Forge build will imbue it with the powers of Mixin. */ + +repositories { + maven { + name = 'sponge' + url = 'https://repo.spongepowered.org/maven/' + } +} + +dependencies { + embed('org.spongepowered:mixin:0.7.11-SNAPSHOT'){ + setTransitive false + } +} + +ext.outRefMapFile = "${tasks.compileJava.temporaryDir}/${project.modid}.mixin.refmap.json" + +jar { + manifest { + attributes ( + 'MixinConfigs': "${project.modid}.mixin.json", + 'TweakClass': 'org.spongepowered.asm.launch.MixinTweaker', + 'TweakOrder': 0, + + // If these two are not set, Forge will not detect the mod, it will only run the mixins + 'FMLCorePluginContainsFMLMod': 'true', + 'ForceLoadAsMod': 'true', + ) + } + + from outRefMapFile; +} + +def outSrgFile = "${tasks.compileJava.temporaryDir}/outSrg.srg" + +afterEvaluate { + tasks.compileJava.options.compilerArgs += ["-AreobfSrgFile=${tasks.reobf.srg}", "-AoutSrgFile=${outSrgFile}", "-AoutRefMapFile=${outRefMapFile}"]; +} + +reobf { + addExtraSrgFile outSrgFile +}
\ No newline at end of file diff --git a/buildscript/forge-1.7.gradle b/buildscript/forge-1.7.gradle new file mode 100644 index 0000000..ca2f66b --- /dev/null +++ b/buildscript/forge-1.7.gradle @@ -0,0 +1,90 @@ +/** Common code for Forge 1.7.10 builds */ + +apply plugin: 'forge' + + +project.version = new File(project.multiproject_structure.toBoolean() ? "${projectDir}/../version.txt" : "${projectDir}/publish/version.txt").getText('UTF-8').trim() + +group = project.group +archivesBaseName = "${project.archives_base}-${project.minecraft_version}" + +minecraft { + version = "${project.minecraft_version}-${project.forge_version}" + runDir = "run" + replace '@VERSION@', project.version +} + +// These settings allow you to choose what version of Java you want to be compatible with. Forge 1.7.10 runs on Java 6 to 8. +sourceCompatibility = 1.8 +targetCompatibility = 1.8 + +repositories { + maven { + name = "chickenbones" + url = "http://chickenbones.net/maven/" + } +} + +configurations { + embed + compile.extendsFrom(embed) + shade + compile.extendsFrom(shade) +} + +if(project.enable_mixin.toBoolean()) { + apply from: "buildscript/forge-1.7-mixin.gradle" +} + +apply from: "project.gradle" + +jar { + from(sourceSets.main.output); + + // embed libraries in jar + from configurations.embed.collect { + exclude '**/LICENSE', '**/LICENSE.txt' + it.isDirectory() ? it : zipTree(it) + } + + configurations.shade.each { dep -> + from(project.zipTree(dep)){ + exclude '**/LICENSE', '**/LICENSE.txt', 'META-INF', 'META-INF/**' + } + } +} + +processResources { + // This will ensure that this task is redone when the versions or any + // user-defined properties change. + inputs.property "version", version + inputs.property "mcversion", project.minecraft.version + inputs.properties project.ext.getProperties() + + filesMatching('*.info') { + expand project.properties + } +} + +// Ensures that the encoding of source files is set to UTF-8, see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html +tasks.withType(JavaCompile) { + options.encoding = "UTF-8" +} + +// This task creates a .jar file containing the source code of this mod. +task sourcesJar(type: Jar, dependsOn: classes) { + classifier = "sources" + from sourceSets.main.allSource +} + +// This task creates a .jar file containing a deobfuscated version of this mod, for other developers to use in a development environment. +task devJar(type: Jar) { + classifier = "dev" + from sourceSets.main.output +} + +// Creates the listed artifacts on building the mod. +artifacts { + archives sourcesJar + archives devJar +}
\ No newline at end of file |