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
d6d9a45100
commit
a01bfc260a
3 changed files with 12 additions and 7 deletions
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
|
@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
|
|||
distributionPath=wrapper/dists
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.7-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14-bin.zip
|
||||
|
|
|
@ -242,13 +242,13 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"name": "com.mojang:realms:1.9.3",
|
||||
"name": "com.mojang:realms:1.9.5",
|
||||
"downloads": {
|
||||
"artifact": {
|
||||
"size": 1575798,
|
||||
"sha1": "b291425bf7ef763452eaa894575018706339f72b",
|
||||
"path": "com/mojang/realms/1.9.3/realms-1.9.3.jar",
|
||||
"url": "https://libraries.minecraft.net/com/mojang/realms/1.9.3/realms-1.9.3.jar"
|
||||
"size": 1575703,
|
||||
"sha1": "efd57120f97df871cc725cf832f628d9d3f17eec",
|
||||
"path": "com/mojang/realms/1.9.5/realms-1.9.5.jar",
|
||||
"url": "https://libraries.minecraft.net/com/mojang/realms/1.9.5/realms-1.9.5.jar"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -558,6 +558,6 @@
|
|||
"minecraftArguments": "--username ${auth_player_name} --version ${version_name} --gameDir ${game_directory} --assetsDir ${assets_root} --assetIndex ${assets_index_name} --uuid ${auth_uuid} --accessToken ${auth_access_token} --userType ${user_type} --versionType ${version_type}",
|
||||
"minimumLauncherVersion": 18,
|
||||
"releaseTime": "2016-06-23T09:17:32+00:00",
|
||||
"time": "2016-07-22T08:46:23+00:00",
|
||||
"time": "2016-08-16T12:54:57+00:00",
|
||||
"type": "release"
|
||||
}
|
||||
|
|
|
@ -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