2021-07-07 18:40:17 +02:00
<!-- suppress HtmlDeprecatedAttribute -->
< div align = "center" >
2021-01-19 19:24:29 +01:00
2021-07-07 18:40:17 +02:00
# SongodaCore
2021-01-19 19:24:29 +01:00
2021-07-07 18:40:17 +02:00
**An elaborate multi functional general Spigot plugin compatibility core and general use API.**
2021-01-19 19:24:29 +01:00
2021-07-07 18:40:17 +02:00
<!-- Shields -->
[](https://discord.gg/songoda)
[](https://www.patreon.com/join/songoda)
< br >
[](https://github.com/songoda/SongodaCore/actions/workflows/maven.yml)
[](https://repo.songoda.com/#browse/browse:public:com%2Fsongoda%2FSongodaCore)
[](https://sonarcloud.io/dashboard?id=songoda_SongodaCore)
[](https://github.com/songoda/SongodaCore/commits)
< / div >
<!-- TODO:
## Documentation
JavaDocs are hosted at ???.
-->
## Maven
**Repository**
2021-01-19 19:24:29 +01:00
```xml
< repository >
2021-07-07 18:40:17 +02:00
< id > songoda-public< / id >
2021-01-19 19:24:29 +01:00
< url > https://repo.songoda.com/repository/public/< / url >
< / repository >
```
2021-07-07 18:40:17 +02:00
**Artifact**
2021-01-19 19:24:29 +01:00
```xml
< dependency >
2021-07-07 18:40:17 +02:00
< groupId > com.songoda< / groupId >
< artifactId > SongodaCore< / artifactId >
< version > VERSION< / version >
2021-01-19 19:24:29 +01:00
< / dependency >
```
2021-07-07 18:40:17 +02:00
## Gradle
**Repository**
2021-01-19 19:24:29 +01:00
```groovy
repositories {
maven {
url 'https://repo.songoda.com/repository/public/'
}
}
```
2021-07-07 18:40:17 +02:00
**Artifact**
2021-01-19 19:24:29 +01:00
```groovy
dependencies {
2021-07-07 18:40:17 +02:00
compileOnly 'com.songoda:SongodaCore:VERSION'
2021-01-19 19:24:29 +01:00
}
2021-07-07 18:40:17 +02:00
```