Go to file
Christian Koop a73ed7908e Update pom.xml files and project structure
* Should fix IntelliJ sometimes not finding classes
* Should make things easier to understand and maintain
* Rename `LICENSE.md` to `LICENSE`
2021-07-08 15:37:37 +02:00
.github/workflows GitHub-Actions: Use JDK 16 2021-06-25 16:21:56 +02:00
Compatibility Update pom.xml files and project structure 2021-07-08 15:37:37 +02:00
Core Update pom.xml files and project structure 2021-07-08 15:37:37 +02:00
NMS Update pom.xml files and project structure 2021-07-08 15:37:37 +02:00
.gitignore Update pom.xml files and project structure 2021-07-08 15:37:37 +02:00
LICENSE Update pom.xml files and project structure 2021-07-08 15:37:37 +02:00
pom.xml Update pom.xml files and project structure 2021-07-08 15:37:37 +02:00
README.md version 2.5 2021-06-12 20:15:56 -05:00

SongodaCore GitHub Workflow Status (branch) GitHub Workflow Status (branch)

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

Maven Information

  • Repository
<repository>
    <id>Songoda</id>
    <url>https://repo.songoda.com/repository/public/</url>
</repository>
  • Artifact Information:
<dependency>
    <groupId>com.songoda</groupId>
    <artifactId>SongodaCore</artifactId>
    <version>2.4.59</version>
    <scope>provided</scope>
</dependency>

Gradle Information

  • Repository:
repositories {
    maven {
        url 'https://repo.songoda.com/repository/public/'
    }
}
  • Artifact:
dependencies {
    compileOnly 'com.songoda:SongodaCore:2.4.59'
}