Update gradle wrapper to 2.14, reference MC json, and add java6 compat lines to default MDK build.gradle.
This commit is contained in:
parent
a3ec974285
commit
7c9542263b
1 changed files with 5 additions and 0 deletions
|
@ -24,6 +24,11 @@ version = "1.0"
|
|||
group= "com.yourname.modid" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
|
||||
archivesBaseName = "modid"
|
||||
|
||||
sourceCompatibility = targetCompatibility = "1.6" // Need this here so eclipse task generates correctly.
|
||||
compileJava {
|
||||
sourceCompatibility = targetCompatibility = "1.6"
|
||||
}
|
||||
|
||||
minecraft {
|
||||
version = "@VERSION@"
|
||||
runDir = "run"
|
||||
|
|
Loading…
Reference in a new issue