Waterfall fort that is used on our server
Downloads - Wiki (Coming soon)
BungeeCord - Waterfall - FlameCord
<repository>
<id>sapphiremc</id>
<url>http://repo.denaryworld.ru/snapshots/</url>
</repository>
<dependency>
<groupId>io.sapphiremc.amethyst</groupId>
<!-- For any other modules use amethyst-<modulename> Example: amethyst-chat -->
<artifactId>amethyst-api</artifactId>
<version>1.19-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
repositories {
maven {
url 'http://repo.denaryworld.ru/snapshots/'
allowInsecureProtocol = true
}
}
dependencies {
// For any other modules use amethyst-<modulename> Example: amethyst-chat
compileOnly 'io.sapphiremc.amethyst:amethyst-api:1.19-R0.1-SNAPSHOT'
}
repositories {
maven("http://repo.denaryworld.ru/snapshots/") {
isAllowInsecureProtocol = true
}
}
dependencies {
// For any other modules use amethyst-<modulename> Example: amethyst-chat
compileOnly("io.sapphiremc.amethyst:amethyst-api:1.19-R0.1-SNAPSHOT")
}
Yes, this also includes all API provided by Waterfall and BungeeCord.
- Java 8 or above
- Maven 3.8.0 or above
Run the following command in the root directory:
./amethyst p
Use the command mvn clean install
to build all modules and install it to your local maven repo.
Compiled JAR will be placed under Amethyst-Proxy/bootstrap/target/Amethyst-1.19-R0.1-SNAPSHOT.jar
.