mirror of
https://github.com/songoda/SongodaCore.git
synced 2025-02-17 03:51:27 +01:00
Dependabot, FUNDING, README
This commit is contained in:
parent
a73ed7908e
commit
685aa4bc8a
12
.github/FUNDING.yml
vendored
Normal file
12
.github/FUNDING.yml
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
# These are supported funding model platforms
|
||||
|
||||
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
|
||||
patreon: songoda
|
||||
open_collective: # Replace with a single Open Collective username
|
||||
ko_fi: # Replace with a single Ko-fi username
|
||||
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
|
||||
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
||||
liberapay: # Replace with a single Liberapay username
|
||||
issuehunt: # Replace with a single IssueHunt username
|
||||
otechie: # Replace with a single Otechie username
|
||||
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
|
11
.github/dependabot.yml
vendored
Normal file
11
.github/dependabot.yml
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
# To get started with Dependabot version updates, you'll need to specify which
|
||||
# package ecosystems to update and where the package manifests are located.
|
||||
# Please see the documentation for all configuration options:
|
||||
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
||||
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "maven" # See documentation for possible values
|
||||
directory: "/" # Location of package manifests
|
||||
schedule:
|
||||
interval: "monthly"
|
52
README.md
52
README.md
@ -1,32 +1,47 @@
|
||||
SongodaCore ![GitHub Workflow Status (branch)](https://img.shields.io/github/workflow/status/Songoda/SongodaCore/Build%20SongodaCore/master) ![GitHub Workflow Status (branch)](https://img.shields.io/discord/293212540723396608)
|
||||
===========
|
||||
<!--suppress HtmlDeprecatedAttribute -->
|
||||
<div align="center">
|
||||
|
||||
An elaborate multi functional general Spigot plugin compatibility core and general use API.
|
||||
# SongodaCore
|
||||
|
||||
Maven Information
|
||||
------
|
||||
**An elaborate multi functional general Spigot plugin compatibility core and general use API.**
|
||||
|
||||
* Repository
|
||||
<!-- 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>
|
||||
[![Build](https://github.com/songoda/SongodaCore/actions/workflows/maven.yml/badge.svg)](https://github.com/songoda/SongodaCore/actions/workflows/maven.yml)
|
||||
[![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)
|
||||
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=songoda_SongodaCore&metric=alert_status)](https://sonarcloud.io/dashboard?id=songoda_SongodaCore)
|
||||
[![GitHub last commit](https://img.shields.io/github/last-commit/songoda/SongodaCore?label=Last+commit)](https://github.com/songoda/SongodaCore/commits)
|
||||
</div>
|
||||
|
||||
<!-- TODO:
|
||||
## Documentation
|
||||
|
||||
JavaDocs are hosted at ???.
|
||||
-->
|
||||
|
||||
## Maven
|
||||
**Repository**
|
||||
```xml
|
||||
<repository>
|
||||
<id>Songoda</id>
|
||||
<id>songoda-public</id>
|
||||
<url>https://repo.songoda.com/repository/public/</url>
|
||||
</repository>
|
||||
```
|
||||
* Artifact Information:
|
||||
|
||||
**Artifact**
|
||||
```xml
|
||||
<dependency>
|
||||
<groupId>com.songoda</groupId>
|
||||
<artifactId>SongodaCore</artifactId>
|
||||
<version>2.4.59</version>
|
||||
<scope>provided</scope>
|
||||
<groupId>com.songoda</groupId>
|
||||
<artifactId>SongodaCore</artifactId>
|
||||
<version>VERSION</version>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
Gradle Information
|
||||
------
|
||||
|
||||
* Repository:
|
||||
## Gradle
|
||||
**Repository**
|
||||
```groovy
|
||||
repositories {
|
||||
maven {
|
||||
@ -34,9 +49,10 @@ repositories {
|
||||
}
|
||||
}
|
||||
```
|
||||
* Artifact:
|
||||
|
||||
**Artifact**
|
||||
```groovy
|
||||
dependencies {
|
||||
compileOnly 'com.songoda:SongodaCore:2.4.59'
|
||||
compileOnly 'com.songoda:SongodaCore:VERSION'
|
||||
}
|
||||
```
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user