From 492f31bc5221cf47bbdcfd1b0e94935ac8feff3b Mon Sep 17 00:00:00 2001 From: md678685 <1917406+md678685@users.noreply.github.com> Date: Thu, 9 Apr 2020 16:54:02 +0100 Subject: [PATCH] Update dependency instructions Closes #7. --- Common-Issues.md | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/Common-Issues.md b/Common-Issues.md index f4d2162..51655e4 100644 --- a/Common-Issues.md +++ b/Common-Issues.md @@ -77,6 +77,10 @@ Under `repositories` in your `pom.xml`, you need to add a new `repository` for t ess-repo https://ci.ender.zone/plugin/repository/everything/ + + paper-repo + https://papermc.io/repo/repository/maven-public/ + ``` @@ -87,7 +91,7 @@ Next, add EssentialsX as a `dependency` under `dependencies`: net.ess3 EssentialsX - 2.16.1 + 2.17.2 provided @@ -102,8 +106,13 @@ First, add the repository to your `build.gradle`: ```groovy repositories { maven { + name "essentialsx" url "https://ci.ender.zone/plugin/repository/everything/" } + maven { + name "papermc" + url "https://papermc.io/repo/repository/maven-public/" + } } ``` @@ -111,8 +120,8 @@ Next, add the dependency as a `compileOnly` dependency: ```groovy dependencies { ... - compileOnly 'net.ess3:EssentialsX:2.16.1' + compileOnly 'net.ess3:EssentialsX:2.17.2' } ``` -You should now be able to build against EssentialsX's API in your IDE. \ No newline at end of file +You should now be able to build against EssentialsX's API in your IDE.