SongodaCore/README.md

57 lines
1.4 KiB
Markdown
Raw Permalink Normal View History

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 -->
[![Discord](https://img.shields.io/discord/293212540723396608?color=7289DA&label=Discord&logo=discord&logoColor=7289DA)](https://discord.gg/songoda)
[![Patreon](https://img.shields.io/badge/-Support_on_Patreon-F96854.svg?logo=patreon&style=flat&logoColor=white)](https://www.patreon.com/join/songoda)
<br>
2023-05-07 19:01:43 +02:00
[![Build](https://github.com/songoda/SongodaCore/actions/workflows/build.yml/badge.svg)](https://github.com/songoda/SongodaCore/actions/workflows/build.yml)
2021-07-07 18:40:17 +02:00
[![Latest version](https://img.shields.io/nexus/public/com.songoda/SongodaCore?label=Latest%20version&server=https%3A%2F%2Frepo.songoda.com%2F)](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
```