Go to file
Christian Koop ac1239ad9b
Adds some additional repos trying to fight missing dependencies
Maybe some stuff moved to another URL, got their own repo now, or whatever, but this fixes failing builds locally (Hopefully helps with GitHub Actions too)
2021-10-02 22:11:55 +02:00
.github Disables Dependabot for now 2021-10-02 09:44:32 +02:00
Compatibility Version 2.5.11 2021-09-30 13:03:36 -03:00
Core Prevents #getRandomPlayer from throwing an Exception on 0 online players 2021-10-02 14:58:14 +02:00
NMS Version 2.5.11 2021-09-30 13:03:36 -03:00
.editorconfig EditorConfig 2021-07-08 15:37:37 +02:00
.gitignore Update .gitignore 2021-09-25 21:21:01 +02:00
LICENSE Update pom.xml files and project structure 2021-07-08 15:37:37 +02:00
pom.xml Adds some additional repos trying to fight missing dependencies 2021-10-02 22:11:55 +02:00
README.md Dependabot, FUNDING, README 2021-07-08 15:37:37 +02:00

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