From e72b5b369c96018180c7127f5f9400e0ed72e5e6 Mon Sep 17 00:00:00 2001 From: yueh Date: Sat, 23 Jun 2018 14:28:54 +0200 Subject: [PATCH] Updated Dependencies and readme --- README.md | 11 ++++++----- gradle.properties | 14 +++++++------- gradle/scripts/dependencies.gradle | 2 +- 3 files changed, 14 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index b676a2333..8c56e0a54 100644 --- a/README.md +++ b/README.md @@ -27,17 +27,18 @@ A Mod about Matter, Energy and using them to conquer the world.. * [Website](http://ae-mod.info/) * [IRC #appliedenergistics on esper.net](http://webchat.esper.net/?channels=appliedenergistics&prompt=1) * [GitHub](https://github.com/AppliedEnergistics/Applied-Energistics-2) +* [Discord](https://discord.gg/DJ9hVAN) ## License * Applied Energistics 2 API - - (c) 2013 - 2017 AlgorithmX2 et al + - (c) 2013 - 2018 AlgorithmX2 et al - [![License](https://img.shields.io/badge/License-MIT-red.svg?style=flat-square)](http://opensource.org/licenses/MIT) * Applied Energistics 2 - - (c) 2013 - 2017 AlgorithmX2 et al + - (c) 2013 - 2018 AlgorithmX2 et al - [![License](https://img.shields.io/badge/License-LGPLv3-blue.svg?style=flat-square)](https://raw.githubusercontent.com/AppliedEnergistics/Applied-Energistics-2/rv2/LICENSE) * Textures and Models - - (c) 2013 - 2017 AlgorithmX2 et al + - (c) 2013 - 2018 AlgorithmX2 et al - [![License](https://img.shields.io/badge/License-CC%20BY--NC--SA%203.0-yellow.svg?style=flat-square)](https://creativecommons.org/licenses/by-nc-sa/3.0/) * Text and Translations - [![License](https://img.shields.io/badge/License-No%20Restriction-green.svg?style=flat-square)](https://creativecommons.org/publicdomain/zero/1.0/) @@ -146,14 +147,14 @@ Universal builds obtained [Here](http://ae2.ae-mod.info/Downloads/) should work When compiling against the AE2 API you can use gradle dependencies, just add dependencies { - compile "appeng:appliedenergistics2:rv_-_____-__:dev" + compile "appeng:appliedenergistics2:rv_-_____-__:api" } or add the compile line to your existing dependencies task to your build.gradle Where the __ are filled in with the correct version criteria; AE2 is available from the default forge maven so no additional repositories are necessary. -An example string would be `appeng:appliedenergistics2:rv2-alpha-30:dev` +An example string would be `appeng:appliedenergistics2:rv5-stable-1:api` for the API only or `appeng:appliedenergistics2:rv5-stable-1` for the whole mod. ## Applied Energistics 2 CraftTweaker diff --git a/gradle.properties b/gradle.properties index 98794801b..a00780633 100644 --- a/gradle.properties +++ b/gradle.properties @@ -14,17 +14,17 @@ forge_version=14.23.3.2655 ######################################################### # Installable # ######################################################### -hwyla_version=1.8.20-B35_1.12 +hwyla_version=1.8.26-B41_1.12.2 ######################################################### # Provided APIs # ######################################################### -jei_version=4.8.0.105 -tesla_version=1.0.61 -ic2_version=2.8.19-ex112 -top_version=1.12-1.4.18-10 -cofhcore_version=1.12-4.+ -crafttweaker_version=4.0.10.310 +jei_version=4.10.0.198 +tesla_version=1.0.63 +ic2_version=2.8.73-ex112 +top_version=1.12-1.4.23-16 +cofhcore_version=1.12.2-4.5.2.19 +crafttweaker_version=4.1.8.9 ######################################################### # Deployment # diff --git a/gradle/scripts/dependencies.gradle b/gradle/scripts/dependencies.gradle index cabc07714..38fe0a98b 100644 --- a/gradle/scripts/dependencies.gradle +++ b/gradle/scripts/dependencies.gradle @@ -83,7 +83,7 @@ dependencies { // compile against provided APIs compileOnly "mezz.jei:jei_${minecraft_version}:${jei_version}:api" compileOnly "mcp.mobius.waila:Hwyla:${hwyla_version}" - compileOnly "net.darkhax.tesla:Tesla-1.12:${tesla_version}" + compileOnly "net.darkhax.tesla:Tesla-1.12.2:${tesla_version}" compileOnly "net.industrial-craft:industrialcraft-2:${ic2_version}:api" compileOnly "mcjty.theoneprobe:TheOneProbe-1.12:${top_version}:api" compileOnly "cofh:CoFHCore:${cofhcore_version}:deobf"