mirror of
https://github.com/songoda/SongodaCore.git
synced 2025-01-25 08:41:38 +01:00
339a4d6f6c
Depending on the environment the default system charset might not be UTF-8 beaking messages files using non-english language etc. I'm not sure but Spigot might even set it to ASCII? The tests succeed locally because I am using Manjaro Linux which uses UTF-8 by default in the JVM. But testing a plugin and logging the default charset returns ASCII instead (on the same machine). |
||
---|---|---|
.github | ||
Compatibility | ||
Core | ||
NMS | ||
.editorconfig | ||
.gitignore | ||
LICENSE | ||
pom.xml | ||
README.md |
SongodaCore
An elaborate multi functional general Spigot plugin compatibility core and general use API.
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'
}