From 8a0dd192e50c8d9d43b97c6258d5aeec41fa7419 Mon Sep 17 00:00:00 2001 From: Sebastian Hartte Date: Wed, 26 Aug 2020 23:19:42 +0200 Subject: [PATCH] Added Modmaven repository to README.md --- README.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index daf3b6c0b..7b2103670 100644 --- a/README.md +++ b/README.md @@ -72,12 +72,20 @@ The API for Applied Energistics 2. It is open source to discuss changes, improve ### Maven -We use Github Packages as maven repository now. You can use the following snippet as example on how to add a repository to your gradle build file. +Our authoritative Maven repository is Github Packages, which you can also use in your builds. Use of Github Packages +[requires special setup](https://docs.github.com/en/packages/using-github-packages-with-your-projects-ecosystem/configuring-gradle-for-use-with-github-packages#authenticating-to-github-packages) +to authenticate with your personal access token. + +AE2 is also available without authentication from Modmaven. You can use the following snippet as example on how to add a repository to your gradle build file. repositories { maven { - name "AE2" - url "https://maven.pkg.github.com/AppliedEnergistics/Applied-Energistics-2" + name "Modmaven" + url "https://modmaven.k-4u.nl/" + // For Gradle 5.1 and above, limit it to just AE2 + content { + includeGroup 'appeng' + } } }