mirror of
https://github.com/songoda/SongodaCore.git
synced 2024-11-27 12:35:12 +01:00
f545dcc2d9
With this patch, the tested bytes are whole words/lines. This ensures that multi-byte characters (like in UTF-8) are not detected as malformed input and `ISO-8859-1` being detected because it just doesn't care about anything and replaces everything it doesn't know with something it does... Why no error? Would like to know that too :/ This *should* not be able to break existig files or plugins. |
||
---|---|---|
.github/workflows | ||
.idea | ||
Core | ||
NMS | ||
.gitignore | ||
assembly.xml | ||
LICENSE.md | ||
pom.xml | ||
README.md |
SongodaCore
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.49</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.49'
}