Created
October 28, 2015 15:22
-
-
Save AbrarSyed/d83b1952e8a38d400e40 to your computer and use it in GitHub Desktop.
tweaker-server example
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
plugins { | |
id "net.minecraftforge.gradle.tweaker-server" version "2.0.2" | |
} | |
version = "1.0" | |
group= "com.yourname.modid" // http://maven.apache.org/guides/mini/guide-naming-conventions.html | |
archivesBaseName = "modid" | |
minecraft { | |
version = "1.8" | |
mappings = "snapshot_20150611" | |
runDir = "runDir" | |
tweakClass = "com.example.tweaker.ExampleTweaker" | |
// yes you can specify Access transformers at dev time.. but its your problem to apply them | |
// at 'test_at.cfg' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment