Go to file
Christian Koop 3f89267e8e
Don't fully shutdown the plugin when license verification fails
The goal here is to keep the plugin enabled and initialize the Core.
This is needed for the `/craftaro license` command to work etc.

Sadly this also means other plugins checking for the plugin being the
(including the `/plugins` command), report the plugin as enabled
and seemingly ready (Although the plugin's API is not).
2023-06-09 15:20:33 +02:00
.github GitHub Actions: Updates the names of some secrets/variables in use 2023-05-23 20:49:30 +02:00
Compatibility Release v2.6.22 2023-05-07 15:19:04 +02:00
Core Don't fully shutdown the plugin when license verification fails 2023-06-09 15:20:33 +02:00
NMS Fix NMS module for v1_19_R3 missing in final jar 2023-05-18 19:17:47 +02: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 Switch LICENSE from GPLv3 to CC BY-NC-ND 4.0 2023-03-29 18:06:35 +02:00
pom.xml Bump maven-surefire-plugin from 3.0.0-M6 to 3.1.0 (#54) 2023-06-01 17:52:06 +02:00
README.md README.md: Updates badges 2023-05-07 19:01:43 +02: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'
}