1
0
mirror of https://github.com/chylex/Java-Checker.git synced 2025-06-14 15:34:04 +02:00

Update README.md

This commit is contained in:
chylex 2015-10-13 03:15:43 +02:00
parent 1dea2b6998
commit a461941e35

View File

@ -8,7 +8,7 @@ The mod is in Public Domain, so do whatever you want with it! Hugs and mentions
*Warning: this is experimental, if you find any issues, please report them immediately.*
You can insert Java Checker into your mod, so that it will alert the user if they are using outdated Java. You will need to download a special version designed for shading, you can find it on [CurseForge](http://minecraft.curseforge.com/projects/java-version-checker/files/2262108).
You can insert Java Checker into your mod, so that it will alert the user if they are using outdated Java. You will need to use a special version designed for shading, you can use tterrag's Maven repository in your build.gradle or download it manually.
This file will work fine for all Minecraft versions starting from 1.6.2. It can currently check for Java 7 or 8, based on how you configure it.
@ -22,8 +22,15 @@ configurations{
<your buildscript info is somewhere here>
repositories{
maven{
name "tterrag Repo"
url "http://maven.tterrag.com/"
}
}
dependencies{
shade files('libs/JavaCheckerShade MC-UNIVERSAL v1.2.jar')
shade "chylex.javacheck:JavaChecker:v1.2-b1"
}
<your mod info is somewhere here>
@ -45,6 +52,14 @@ jar{
}
```
If you want [download the file](http://minecraft.curseforge.com/projects/java-version-checker/files/2262108) manually as a library, remove 'repositories' and replace the 'dependencies' block with:
```
dependencies{
files('libs/JavaCheckerShade MC-UNIVERSAL v1.2.jar')
}
```
You can also use [Hardcore Ender Expansion's build.gradle](https://github.com/chylex/Hardcore-Ender-Expansion/blob/master/build.gradle) as a reference.
Now build the mod and run it to make sure nothing messed up. If you need help with something related to build.gradle, ask AbrarSyed because I have absolutely no idea what I'm doing :P.