Skip to content

InfernalSuite/AdvancedSlimePurpur

 
 

Repository files navigation

Advanced Slime Purpur (ASWM) Build Status

Advanced Slime Purpur is a fork of Purpur implementing the Slime Region Format developed by Hypixel. Originally a plugin, this project has been converted to a fork to maximize our ability to provide fixes and performance improvements. Its goal is to provide server administrators with an easy-to-use tool to load worlds faster and save space.

Releases

ASWM releases can be found here. More recent releases can be found in the Discord under the #new-builds channel.

Using SWM in your plugin

Maven

<!-- InfernalSuite RELEASE -->
<repositories>
  <repository>
    <id>is-releases</id>
    <url>https://repo.infernalsuite.com/repository/maven-releases/</url>
  </repository>
</repositories>

<!-- InfernalSuite SNAPSHOT -->
<repositories>
  <repository>
    <id>is-snapshots</id>
    <url>https://repo.infernalsuite.com/repository/maven-snapshots/</url>
  </repository>
</repositories>
<dependencies>
  <dependency>
    <groupId>com.infernalsuite.aswm</groupId>
    <artifactId>api</artifactId>
    <version>INSERT LATEST VERSION HERE</version>
    <scope>provided</scope>
  </dependency>
</dependencies>

Gradle

repositories {
    maven { url = 'https://repo.infernalsuite.com/repository/maven-snapshots/' }
}

dependencies {
    compileOnly 'com.infernalsuite.aswm:api:INSERT LATEST VERSION HERE'
}

If you run into any Flow-NBT errors when building your project, add the additional repository: https://repo.rapture.pw/repository/maven-releases/

Javadocs

The Javadocs can be found here.

Wiki Overview

Credits

Thanks to:

  • All the contributors that actively maintain ASWM and added features to SWM.
  • Paul19988 - ASWM Creator.
  • ComputerNerd100 - Large Contributor & Maintainer.
  • b0ykoe - Provider of build services & repositories.
  • Owen1212055 - Large Contributor & Maintainer.
  • Gerolmed - Contributor & Maintainer.
  • Grinderwolf - The original creator.
  • Glare - Providing the original Maven repository.
  • Minikloon and all the Hypixel team for developing the SRF.

YourKit

YourKit supports open source projects with innovative and intelligent tools for monitoring and profiling Java and .NET applications. YourKit is the creator of YourKit Java Profiler, YourKit .NET Profiler and YourKit YouMonitor.

YourKit

About

Advanced Slime World Manager as a Paper Fork

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 99.3%
  • Shell 0.7%