Go to file
2024-07-13 14:22:35 +02:00
.github feat: add nms submodule for Minecraft 1.21 support 2024-06-21 21:27:51 +02:00
Compatibility [Fixed] Error due to Particles in 1.8.8 2024-07-09 18:42:46 +05:30
Core Add generic return type methods 2024-07-13 14:22:35 +02:00
NMS Release v3.1.0-SNAPSHOT 2024-06-22 13:10:51 +02:00
.editorconfig chore: Update .editorconfig 2024-03-26 21:24:22 +01:00
.gitignore Add dependencies for unit tests 2021-10-30 14:53:23 +02:00
LICENSE Switch LICENSE from GPLv3 to CC BY-NC-ND 4.0 2023-03-29 18:06:35 +02:00
pom.xml build: use manually uploaded artifact for CMI-API 2024-06-22 19:08:13 +02:00
README.md docs: Update files to reflect repository rename to 'SongodaCore' 2024-03-26 20:41:28 +01:00

SongodaCore

An elaborate multi functional general Spigot plugin compatibility core and general use API.

Discord Patreon
Build Latest version

Maven

Repository

<repository>
    <id>songoda-public</id>
    <url>https://repo.songoda.com/repository/public/</url>
</repository>

Artifact

<dependency>
  <groupId>com.songoda</groupId>
  <artifactId>SongodaCore</artifactId>
  <version>VERSION</version>
</dependency>

Gradle

Repository

repositories {
    maven {
        url 'https://repo.songoda.com/repository/public/'
    }
}

Artifact

dependencies {
    compileOnly 'com.songoda:SongodaCore:VERSION'
}