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.