-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 449b731
Showing
40 changed files
with
1,047 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
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,2 @@ | ||
#Tue Mar 31 09:22:45 AEDT 2020 | ||
gradle.version=4.0 |
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 @@ | ||
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 @@ | ||
This mapping 'stable_20' was designed for MC 1.8.8! Use at your own peril. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,106 @@ | ||
buildscript { | ||
repositories { | ||
jcenter() | ||
maven { url = "https://files.minecraftforge.net/maven" } | ||
maven { url = "https://repo.spongepowered.org/maven" } | ||
} | ||
dependencies { | ||
classpath 'net.minecraftforge.gradle:ForgeGradle:2.1-SNAPSHOT' | ||
classpath 'org.spongepowered:mixingradle:0.6-SNAPSHOT' | ||
classpath 'com.github.jengelman.gradle.plugins:shadow:4.0.4' | ||
} | ||
} | ||
|
||
apply plugin: 'java' | ||
apply plugin: 'net.minecraftforge.gradle.forge' | ||
apply plugin: 'org.spongepowered.mixin' | ||
apply plugin: 'com.github.johnrengelman.shadow' | ||
|
||
sourceCompatibility = 1.8 | ||
targetCompatibility = 1.8 | ||
|
||
version = "1.0" | ||
group= "io.github.moulberry" | ||
archivesBaseName = "SBCustomMobTex" | ||
String modid = "sbcustommobtex" | ||
String mixinClassifier = "dep" | ||
|
||
minecraft { | ||
version = "1.8.9-11.15.1.2318-1.8.9" | ||
runDir = "run" | ||
mappings = "stable_20" | ||
} | ||
|
||
repositories { | ||
jcenter() | ||
maven { url 'https://repo.spongepowered.org/maven/' } | ||
} | ||
|
||
dependencies { | ||
compile('org.spongepowered:mixin:0.7.11-SNAPSHOT') | ||
compile('org.kohsuke:github-api:1.108') | ||
compile('com.fasterxml.jackson.core:jackson-core:2.10.2') | ||
} | ||
|
||
mixin { | ||
add sourceSets.main, "mixins.${modid}.refmap.json" | ||
} | ||
|
||
jar { | ||
manifest.attributes( | ||
'TweakClass': 'org.spongepowered.asm.launch.MixinTweaker', | ||
'MixinConfigs': "mixins.${modid}.json", | ||
'FMLCorePluginContainsFMLMod': true, | ||
"ForceLoadAsMod": true | ||
) | ||
} | ||
|
||
shadowJar { | ||
dependencies { | ||
include(dependency('org.spongepowered:mixin:0.7.11-SNAPSHOT')) | ||
} | ||
|
||
exclude 'module-info.class' | ||
exclude 'dummyThing' | ||
exclude 'LICENSE.txt' | ||
|
||
classifier = mixinClassifier | ||
} | ||
|
||
reobf { | ||
shadowJar { | ||
mappingType = 'SEARGE' | ||
} | ||
} | ||
|
||
|
||
task runClientFix { | ||
doLast { | ||
String fileName = "${archivesBaseName}-${version}-${mixinClassifier}.jar" | ||
ant.move file: "${buildDir}/libs/${fileName}", tofile: "${projectDir}/run/mods/${fileName}" | ||
ant.delete file: "${buildDir}/libs/${archivesBaseName}-${version}.jar" | ||
} | ||
} | ||
|
||
runClient { | ||
standardInput = System.in | ||
} | ||
|
||
build.dependsOn(shadowJar) | ||
runClient.dependsOn(build) | ||
runClient.dependsOn(runClientFix) | ||
|
||
processResources | ||
{ | ||
inputs.property "version", project.version | ||
inputs.property "mcversion", project.minecraft.version | ||
|
||
from(sourceSets.main.resources.srcDirs) { | ||
include 'mcmod.info' | ||
expand 'version':project.version, 'mcversion':project.minecraft.version | ||
} | ||
|
||
from(sourceSets.main.resources.srcDirs) { | ||
exclude 'mcmod.info' | ||
} | ||
} |
Empty file added
0
eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/MDKExample/.location
Empty file.
Binary file not shown.
Oops, something went wrong.