Compatibility layer for several factions forks
- AtlasFactions
- VulcanFactions
- Joseph's Factions (MCore Factions)
- SaberFactions
- SaberXFactions
- StellarFactions
- FactionsUUID
- various privatized forks
Forks not supported (and not planned)
- SavageFactions
- SupremeFactions
- UltimateFactionsV2
Before you can use FactionIntegrations, you have to import it into your project.
Add the following Repository to your build file.
<repository>
<id>luxious-public</id>
<name>Luxious Repository</name>
<url>https://repo.luxiouslabs.net/repository/maven-public/</url>
</repository>maven {
name = "luxiousPublic"
url = uri("https://repo.luxiouslabs.net/repository/maven-public/")
}maven {
name "luxiousPublic"
url "https://repo.luxiouslabs.net/repository/maven-public/"
}Add the following dependency to your build file.
Replace {VERSION} with the version listed at the top of this page.
<dependency>
<groupId>com.kamikazejam</groupId>
<artifactId>FactionIntegrations</artifactId>
<version>{VERSION}</version>
<scope>compile</scope>
</dependency>implementation "com.kamikazejam:FactionIntegrations:{VERSION}"implementation("com.kamikazejam:FactionIntegrations:{VERSION}")