2021-07-07 18:40:17 +02:00
|
|
|
<!--suppress HtmlDeprecatedAttribute -->
|
|
|
|
<div align="center">
|
2021-01-19 19:24:29 +01:00
|
|
|
|
2023-06-11 00:22:39 +02:00
|
|
|
# CraftaroCore
|
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>
|
2023-05-07 19:01:43 +02:00
|
|
|
[](https://github.com/songoda/SongodaCore/actions/workflows/build.yml)
|
2021-07-07 18:40:17 +02:00
|
|
|
[](https://repo.songoda.com/#browse/browse:public:com%2Fsongoda%2FSongodaCore)
|
|
|
|
</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
|
|
|
```
|