Go to file
Christian Koop f7c9dfe1c5
feat: Add Message#getMessageLines(char) which EpicAutomators needs
EpicAutomators just needs the method. It never existed in the core,
it has been used in the plugin since for ever essentially...
Somebody just never comitted it and published local builds I guess...

I'm annoyed
2024-10-02 14:41:46 +02:00
.github Merge branch 'master' into development 2024-09-06 10:59:35 +02:00
Compatibility Release v3.5.0-SNAPSHOT 2024-09-23 09:49:31 +02:00
Core feat: Add Message#getMessageLines(char) which EpicAutomators needs 2024-10-02 14:41:46 +02:00
NMS Release v3.5.0-SNAPSHOT 2024-09-23 09:49:31 +02: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 Release v3.5.0-SNAPSHOT 2024-09-23 09:49:31 +02: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'
}