Go to file
Christian Koop d3f9f4c226
feat:Some compatibility with paper builds without CraftBukkit relocation
To be fully compatible, the `ClassMapping` and `MethodMapping` classes should finally be removed
and their usages updated.

Announced in https://forums.papermc.io/threads/important-dev-psa-future-removal-of-cb-package-relocation.1106/
2024-03-29 15:32:39 +01:00
.github docs: Removes Craftaro+-URL from FUNDING.yml 2024-03-26 20:39:35 +01:00
Compatibility feat:Some compatibility with paper builds without CraftBukkit relocation 2024-03-29 15:32:39 +01:00
Core fix: DiagCommand's compatibility with Paper builds without CB relocation 2024-03-29 15:28:41 +01:00
NMS version 3.0.4 2024-03-27 13:13:01 -05: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 version 3.0.4 2024-03-27 13:13:01 -05: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'
}