forked from StopModReposts/Splash-Screen-Mod
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: OutCraft-Mods <yt.outcraft@gmail.com>
- Loading branch information
1 parent
720e834
commit bfa988a
Showing
20 changed files
with
997 additions
and
404 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Disable autocrlf on generated files, they always generate with LF | ||
# Add any extra files or paths here to make git stop saying they | ||
# are changed when only line endings change. | ||
src/generated/**/.cache/cache text eol=lf | ||
src/generated/**/*.json text eol=lf |
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 |
---|---|---|
|
@@ -20,3 +20,6 @@ build | |
# other | ||
eclipse | ||
run | ||
|
||
# Files from Forge MDK | ||
forge*changelog.txt |
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 |
---|---|---|
@@ -0,0 +1,65 @@ | ||
Minecraft Forge: Credits/Thank You | ||
|
||
Forge is a set of tools and modifications to the Minecraft base game code to assist | ||
mod developers in creating new and exciting content. It has been in development for | ||
several years now, but I would like to take this time thank a few people who have | ||
helped it along it's way. | ||
|
||
First, the people who originally created the Forge projects way back in Minecraft | ||
alpha. Eloraam of RedPower, and SpaceToad of Buildcraft, without their acceptiance | ||
of me taking over the project, who knows what Minecraft modding would be today. | ||
|
||
Secondly, someone who has worked with me, and developed some of the core features | ||
that allow modding to be as functional, and as simple as it is, cpw. For developing | ||
FML, which stabelized the client and server modding ecosystem. As well as the base | ||
loading system that allows us to modify Minecraft's code as elegently as possible. | ||
|
||
Mezz, who has stepped up as the issue and pull request manager. Helping to keep me | ||
sane as well as guiding the community into creating better additions to Forge. | ||
|
||
Searge, Bspks, Fesh0r, ProfMobious, and all the rest over on the MCP team {of which | ||
I am a part}. For creating some of the core tools needed to make Minecraft modding | ||
both possible, and as stable as can be. | ||
On that note, here is some specific information of the MCP data we use: | ||
* Minecraft Coder Pack (MCP) * | ||
Forge Mod Loader and Minecraft Forge have permission to distribute and automatically | ||
download components of MCP and distribute MCP data files. This permission is not | ||
transitive and others wishing to redistribute the Minecraft Forge source independently | ||
should seek permission of MCP or remove the MCP data files and request their users | ||
to download MCP separately. | ||
|
||
And lastly, the countless community members who have spent time submitting bug reports, | ||
pull requests, and just helping out the community in general. Thank you. | ||
|
||
--LexManos | ||
|
||
========================================================================= | ||
|
||
This is Forge Mod Loader. | ||
|
||
You can find the source code at all times at https://github.com/MinecraftForge/MinecraftForge/tree/1.12.x/src/main/java/net/minecraftforge/fml | ||
|
||
This minecraft mod is a clean open source implementation of a mod loader for minecraft servers | ||
and minecraft clients. | ||
|
||
The code is authored by cpw. | ||
|
||
It began by partially implementing an API defined by the client side ModLoader, authored by Risugami. | ||
http://www.minecraftforum.net/topic/75440- | ||
This support has been dropped as of Minecraft release 1.7, as Risugami no longer maintains ModLoader. | ||
|
||
It also contains suggestions and hints and generous helpings of code from LexManos, author of MinecraftForge. | ||
http://www.minecraftforge.net/ | ||
|
||
Additionally, it contains an implementation of topological sort based on that | ||
published at http://keithschwarz.com/interesting/code/?dir=topological-sort | ||
|
||
It also contains code from the Maven project for performing versioned dependency | ||
resolution. http://maven.apache.org/ | ||
|
||
It also contains a partial repackaging of the javaxdelta library from http://sourceforge.net/projects/javaxdelta/ | ||
with credit to it's authors. | ||
|
||
Forge Mod Loader downloads components from the Minecraft Coder Pack | ||
(http://mcp.ocean-labs.de/index.php/Main_Page) with kind permission from the MCP team. | ||
|
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 |
---|---|---|
@@ -1,117 +1,183 @@ | ||
buildscript { | ||
repositories { | ||
jcenter() | ||
maven { url = "http://files.minecraftforge.net/maven" } | ||
} | ||
dependencies { | ||
classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT' | ||
} | ||
plugins { | ||
id 'eclipse' | ||
id 'maven-publish' | ||
id 'net.minecraftforge.gradle' version '5.1.+' | ||
} | ||
apply plugin: 'net.minecraftforge.gradle.forge' | ||
apply plugin: 'maven-publish' | ||
//Only edit below this line, the above code adds and enables the necessary things for Forge to be setup. | ||
|
||
version = "1.12.2-1.0.0" | ||
group = "org.stopmodreposts" | ||
archivesBaseName = "stopmodreposts" | ||
version = '1.0' | ||
group = 'org.stopmodreposts.stopmodreposts' // http://maven.apache.org/guides/mini/guide-naming-conventions.html | ||
archivesBaseName = 'stopmodreposts' | ||
|
||
sourceCompatibility = targetCompatibility = '1.8' | ||
compileJava { | ||
sourceCompatibility = targetCompatibility = '1.8' | ||
} | ||
// Mojang ships Java 17 to end users in 1.18+, so your mod should target Java 17. | ||
java.toolchain.languageVersion = JavaLanguageVersion.of(17) | ||
|
||
println "Java: ${System.getProperty 'java.version'}, JVM: ${System.getProperty 'java.vm.version'} (${System.getProperty 'java.vendor'}), Arch: ${System.getProperty 'os.arch'}" | ||
minecraft { | ||
version = "1.12.2-14.23.4.2765" | ||
runDir = "run" | ||
|
||
mappings = "snapshot_20180814" | ||
|
||
if (project.hasProperty('mc_username')) { | ||
clientRunArgs += ['--username', project.mc_username] | ||
if (project.hasProperty('mc_password')) { | ||
clientRunArgs += ['--password', project.mc_password] | ||
} | ||
} | ||
if (project.hasProperty('mc_uuid')) { | ||
clientRunArgs += ['--uuid', project.mc_uuid] | ||
} | ||
|
||
// disable server gui | ||
serverRunArgs += 'nogui' | ||
|
||
// skip the screen to confirm that you want to load a world with missing registry entries | ||
serverJvmArgs += '-Dfml.doNotBackup=true' | ||
clientJvmArgs += '-Dfml.doNotBackup=true' | ||
|
||
// skip having to confirm on server | ||
serverJvmArgs += '-Dfml.queryResult=confirm' | ||
|
||
//skip jansi warnings in the log | ||
serverJvmArgs += '-Dlog4j.skipJansi=true' | ||
clientJvmArgs += '-Dlog4j.skipJansi=true' | ||
} | ||
// The mappings can be changed at any time and must be in the following format. | ||
// Channel: Version: | ||
// official MCVersion Official field/method names from Mojang mapping files | ||
// parchment YYYY.MM.DD-MCVersion Open community-sourced parameter names and javadocs layered on top of official | ||
// | ||
// You must be aware of the Mojang license when using the 'official' or 'parchment' mappings. | ||
// See more information here: https://github.com/MinecraftForge/MCPConfig/blob/master/Mojang.md | ||
// | ||
// Parchment is an unofficial project maintained by ParchmentMC, separate from MinecraftForge | ||
// Additional setup is needed to use their mappings: https://github.com/ParchmentMC/Parchment/wiki/Getting-Started | ||
// | ||
// Use non-default mappings at your own risk. They may not always work. | ||
// Simply re-run your setup task after changing the mappings to update your workspace. | ||
mappings channel: 'official', version: '1.19' | ||
|
||
processResources { | ||
// this will ensure that this task is redone when the versions change. | ||
inputs.property "version", project.version | ||
inputs.property "mcversion", project.minecraft.version | ||
|
||
// replace stuff in mcmod.info, nothing else | ||
from(sourceSets.main.resources.srcDirs) { | ||
include 'mcmod.info' | ||
|
||
// replace version and mcversion | ||
expand 'version':project.version, 'mcversion':project.minecraft.version | ||
} | ||
|
||
// copy everything else except the mcmod.info | ||
from(sourceSets.main.resources.srcDirs) { | ||
exclude 'mcmod.info' | ||
// accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg') // Currently, this location cannot be changed from the default. | ||
|
||
// Default run configurations. | ||
// These can be tweaked, removed, or duplicated as needed. | ||
runs { | ||
client { | ||
workingDirectory project.file('run') | ||
|
||
// Recommended logging data for a userdev environment | ||
// The markers can be added/remove as needed separated by commas. | ||
// "SCAN": For mods scan. | ||
// "REGISTRIES": For firing of registry events. | ||
// "REGISTRYDUMP": For getting the contents of all registries. | ||
property 'forge.logging.markers', 'REGISTRIES' | ||
|
||
// Recommended logging level for the console | ||
// You can set various levels here. | ||
// Please read: https://stackoverflow.com/questions/2031163/when-to-use-the-different-log-levels | ||
property 'forge.logging.console.level', 'debug' | ||
|
||
// Comma-separated list of namespaces to load gametests from. Empty = all namespaces. | ||
property 'forge.enabledGameTestNamespaces', 'stopmodreposts' | ||
|
||
mods { | ||
stopmodreposts { | ||
source sourceSets.main | ||
} | ||
} | ||
} | ||
|
||
server { | ||
workingDirectory project.file('run') | ||
|
||
property 'forge.logging.markers', 'REGISTRIES' | ||
|
||
property 'forge.logging.console.level', 'debug' | ||
|
||
property 'forge.enabledGameTestNamespaces', 'stopmodreposts' | ||
|
||
mods { | ||
stopmodreposts { | ||
source sourceSets.main | ||
} | ||
} | ||
} | ||
|
||
// This run config launches GameTestServer and runs all registered gametests, then exits. | ||
// By default, the server will crash when no gametests are provided. | ||
// The gametest system is also enabled by default for other run configs under the /test command. | ||
gameTestServer { | ||
workingDirectory project.file('run') | ||
|
||
property 'forge.logging.markers', 'REGISTRIES' | ||
|
||
property 'forge.logging.console.level', 'debug' | ||
|
||
property 'forge.enabledGameTestNamespaces', 'stopmodreposts' | ||
|
||
mods { | ||
stopmodreposts { | ||
source sourceSets.main | ||
} | ||
} | ||
} | ||
|
||
data { | ||
workingDirectory project.file('run') | ||
|
||
property 'forge.logging.markers', 'REGISTRIES' | ||
|
||
property 'forge.logging.console.level', 'debug' | ||
|
||
// Specify the stopmodreposts for data generation, where to output the resulting resource, and where to look for existing resources. | ||
args '--mod', 'stopmodreposts', '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/') | ||
|
||
mods { | ||
stopmodreposts { | ||
source sourceSets.main | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
//Signing the Jar | ||
task signJar(type: SignJar, dependsOn: reobfJar) { | ||
|
||
if(project.hasProperty('jarSigning.store')){ | ||
keyStore = project.findProperty('jarSigning.store') | ||
alias = project.findProperty('jarSigning.alias') | ||
storePass = project.findProperty('jarSigning.storePass') | ||
keyPass = project.findProperty('jarSigning.keyPass') | ||
|
||
inputFile = jar.archivePath | ||
outputFile = jar.archivePath | ||
} | ||
// Include resources generated by data generators. | ||
sourceSets.main.resources { srcDir 'src/generated/resources' } | ||
|
||
repositories { | ||
// Put repositories for dependencies here | ||
// ForgeGradle automatically adds the Forge maven and Maven Central for you | ||
|
||
// If you have mod jar dependencies in ./libs, you can declare them as a repository like so: | ||
// flatDir { | ||
// dir 'libs' | ||
// } | ||
} | ||
build.dependsOn signJar | ||
|
||
jar{ | ||
manifest { | ||
attributes([ | ||
'Maven-Artifact': "${project.group}:${project.archivesBaseName}:${project.version}", | ||
'Timestamp': System.currentTimeMillis() | ||
]) | ||
} | ||
|
||
dependencies { | ||
// Specify the version of Minecraft to use. If this is any group other than 'net.minecraft', it is assumed | ||
// that the dep is a ForgeGradle 'patcher' dependency, and its patches will be applied. | ||
// The userdev artifact is a special name and will get all sorts of transformations applied to it. | ||
minecraft 'net.minecraftforge:forge:1.19-41.1.0' | ||
|
||
// Real mod deobf dependency examples - these get remapped to your current mappings | ||
// compileOnly fg.deobf("mezz.jei:jei-${mc_version}:${jei_version}:api") // Adds JEI API as a compile dependency | ||
// runtimeOnly fg.deobf("mezz.jei:jei-${mc_version}:${jei_version}") // Adds the full JEI mod as a runtime dependency | ||
// implementation fg.deobf("com.tterrag.registrate:Registrate:MC${mc_version}-${registrate_version}") // Adds registrate as a dependency | ||
|
||
// Examples using mod jars from ./libs | ||
// implementation fg.deobf("blank:coolmod-${mc_version}:${coolmod_version}") | ||
|
||
// For more info... | ||
// http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html | ||
// http://www.gradle.org/docs/current/userguide/dependency_management.html | ||
} | ||
|
||
// Example for how to get properties into the manifest for reading at runtime. | ||
jar { | ||
manifest { | ||
attributes([ | ||
"Specification-Title" : "stopmodreposts", | ||
"Specification-Vendor" : "stopmodrepostssareus", | ||
"Specification-Version" : "1", // We are version 1 of ourselves | ||
"Implementation-Title" : project.name, | ||
"Implementation-Version" : project.jar.archiveVersion, | ||
"Implementation-Vendor" : "stopmodrepostssareus", | ||
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ") | ||
]) | ||
} | ||
} | ||
|
||
// Example configuration to allow publishing using the maven-publish plugin | ||
// This is the preferred method to reobfuscate your jar file | ||
jar.finalizedBy('reobfJar') | ||
// However if you are in a multi-project build, dev time needs unobfed jar files, so you can delay the obfuscation until publishing by doing | ||
// publish.dependsOn('reobfJar') | ||
|
||
publishing { | ||
publications { | ||
maven(MavenPublication) { | ||
from components.java | ||
groupId = project.group | ||
artifactId = project.archivesBaseName | ||
version = project.version | ||
mavenJava(MavenPublication) { | ||
artifact jar | ||
} | ||
} | ||
|
||
|
||
repositories { | ||
maven{ | ||
url = "sftp://dark-roleplay.net:22/${project.mvn_path}" | ||
credentials { | ||
username project.mvn_username_smr | ||
password project.mvn_password_smr | ||
} | ||
} | ||
} | ||
} | ||
repositories { | ||
maven { | ||
url "file://${project.projectDir}/mcmodsrepo" | ||
} | ||
} | ||
} | ||
|
||
tasks.withType(JavaCompile).configureEach { | ||
options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation | ||
} |
Oops, something went wrong.