Go to file
Christian Koop fce5c5c6a1
Remove Config related methods in SongodaPlugin
Escept for #getExtraConfigs which got renamed, the other methods are no longer required and have been removed.

Additionally the config methods defined by Bukkit's JavaPlugin class
have been overwritten with empty bodies.
This prevents the default behaviour trying to access stuff that's not there
or should not be considered a valid config to use.
2022-06-26 02:38:29 +02:00
.github Update required snakeyaml version from 1.26 to 1.30 (#41) 2022-04-27 21:42:20 +02:00
Compatibility Fix ServerVersion#UNKNOWN being treated like a normal version 2022-06-26 01:39:39 +02:00
Core Remove Config related methods in SongodaPlugin 2022-06-26 02:38:29 +02:00
NMS Release v2.6.12 2022-03-18 14:47:22 +01:00
.editorconfig Update EditorConfig [DEV-2] 2021-10-30 14:10:22 +02:00
.gitignore Add dependencies for unit tests 2021-10-30 14:53:23 +02:00
LICENSE Update pom.xml files and project structure 2021-07-08 15:37:37 +02:00
README.md Dependabot, FUNDING, README 2021-07-08 15:37:37 +02:00
pom.xml Update `junit-jupiter` dependency from v.5.8.1 to v5.8.2 2022-04-15 18:34:54 +02:00

README.md

SongodaCore

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

Discord Patreon
Build Latest version Quality Gate Status GitHub last commit

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'
}