Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.telesphoreo:tf-essentialsx:2.17.2.2'
}
dependencies {
implementation("com.github.telesphoreo:tf-essentialsx:2.17.2.2")
}
<dependency>
<groupId>com.github.telesphoreo</groupId>
<artifactId>tf-essentialsx</artifactId>
<version>2.17.2.2</version>
</dependency>
libraryDependencies += "com.github.telesphoreo" % "tf-essentialsx" % "2.17.2.2"
:dependencies [[com.github.telesphoreo/tf-essentialsx "2.17.2.2"]]
This is a fork of Essentials called EssentialsX.
If you are using this, do NOT ask Essentials for support.
The official upstream repository is at https://github.com/Essentials/Essentials.
EssentialsX is an unofficial continuation of Essentials, updated to support modern Minecraft and Spigot versions. It provides several performance enhancements and fixes that are currently not available in Essentials and Spigot-Essentials. For more details, see the wiki.
EssentialsX is almost a completely drop-in replacement for Essentials. However, it has different requirements:
EssentialsX requires Vault to enable chat prefix/suffixes and group support if you have a supported permissions plugin. We recommend using LuckPerms.
If you have an unsupported permissions plugin but still wish to use wildcards, enable use-bukkit-permissions
in the configuration. Otherwise, the plugin will fall back to config-based permissions.
EssentialsX requires Java 8 or higher. On older versions, the plugin may not work properly.
EssentialsX supports Minecraft versions 1.8.8, 1.9.4, 1.10.2, 1.11.2, 1.12.2, 1.13.2, 1.14.4, and 1.15.2.
Need help with using EssentialsX? Join the MOSS Discord community to ask for help and discuss EssentialsX.
If you need to report a bug or want to suggest a new feature, you can open an issue on GitHub.
EssentialsX builds against the Spigot/CraftBukkit server software for legacy support.
To compile EssentialsX, you first need to run BuildTools. This only needs to be done once. There are two ways to do this:
scripts/buildtools.sh
to automatically download and run BuildTools if needed.1.8
and 1.8.3
.Next, to build EssentialsX with Maven, run the following command:
mvn clean install
Each module's jar can be found in target/
inside each module's directory.
Writing a plugin and want to support EssentialsX? We have a Maven repository at https://ci.ender.zone/plugin/repository/everything/, and the EssentialsX artifact is net.ess3:EssentialsX:2.17.0
. More information at the wiki.
Want to help improve EssentialsX? There are numerous ways you can contribute to the project.
If you'd like to make a financial contribution to the project, you can join our Patreon. If you can't make a donation, don't worry! There's lots of other ways to contribute: