forked from Rosewood-Development/PlayerPoints
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
52 changed files
with
409 additions
and
317 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# 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://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "gradle" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "daily" | ||
time: "12:00" | ||
timezone: "America/Sao_Paulo" | ||
# Maintain dependencies for GitHub Actions | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
time: "12:00" | ||
timezone: "America/Sao_Paulo" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
|
||
name: Build and Upload | ||
|
||
on: | ||
push: | ||
branches: [ "master", "dev/*" ] | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up JDK 21 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '21' | ||
distribution: 'temurin' | ||
check-latest: true | ||
cache: gradle | ||
- name: Run chmod to make gradlew executable | ||
run: chmod +x ./gradlew | ||
- name: Setup Gradle | ||
uses: gradle/actions/setup-gradle@v4 | ||
- name: Build with Gradle | ||
run: ./gradlew build | ||
- name: Upload Plugin | ||
uses: actions/[email protected] | ||
with: | ||
name: PlayerPoints | ||
path: build/libs/*.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,22 @@ | ||
![](https://imgur.com/TFTzDud.png) | ||
|
||
PlayerPoints is a plugin that allows management of a primary or secondary economy based around a point system. This is a continuation of the original PlayerPoints plugin by Blackixx which can be found [here](https://github.com/Mitsugaru/PlayerPoints). | ||
PlayerPoints is a plugin that allows management of a primary or secondary economy based around a point system. This is a | ||
continuation of the original PlayerPoints plugin by Blackixx which can be | ||
found [here](https://github.com/Mitsugaru/PlayerPoints). | ||
|
||
### Documentation | ||
Any and all information you need for the plugin should already be included [in our Wiki](https://github.com/Rosewood-Development/PlayerPoints/wiki)! | ||
|
||
Any and all information you need for the plugin should already be | ||
included [in our Wiki](https://github.com/Rosewood-Development/PlayerPoints/wiki)! | ||
|
||
### Support | ||
If there's anything we left out, you have a question, you want to report a bug, or anything else, please [join our Discord server](https://discord.gg/MgUsTBK). We offer any and all support in our server. | ||
|
||
If there's anything we left out, you have a question, you want to report a bug, or anything else, | ||
please [join our Discord server](https://discord.gg/MgUsTBK). We offer any and all support in our server. | ||
|
||
### Server Compatibility | ||
PlayerPoints is compatible with [Spigot](https://www.spigotmc.org/) and any forks. We recommend using [Paper](https://papermc.io/) to run your server. CraftBukkit servers will not be supported. | ||
|
||
PlayerPoints is compatible with [Spigot](https://www.spigotmc.org/) and any forks. We recommend | ||
using [Paper](https://papermc.io/) to run your server. CraftBukkit servers will not be supported. | ||
|
||
We support Minecraft versions 1.8.8 and newer. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
[versions] | ||
rosegarden = "1.4.2" | ||
spigot = "1.21-R0.1-SNAPSHOT" | ||
vault = "1.7.3" | ||
treasury = "1.2.1" | ||
votifier = "2.7.2" | ||
placeholderapi = "2.11.6" | ||
annotations = "24.0.1" | ||
tokenmanager = "3.2.5" | ||
gamepoints = "1.3.1" | ||
nexengine = "2.2.0" | ||
|
||
[libraries] | ||
rosewood-rosegarden = { module = "dev.rosewood:rosegarden", version.ref = "rosegarden" } | ||
spigot-api = { module = "org.spigotmc:spigot-api", version.ref = "spigot" } | ||
vault = { module = "com.github.milkbowl:vault", version.ref = "vault" } | ||
treasury-api = { module = "me.lokka30:treasury-api", version.ref = "treasury" } | ||
votifier = { module = "com.vexsoftware:votifier", version.ref = "votifier" } | ||
placeholderapi = { module = "me.clip:placeholderapi", version.ref = "placeholderapi" } | ||
annotations = { module = "org.jetbrains:annotations", version.ref = "annotations" } | ||
tokenmanager = { module = "me.realized:tokenmanager", version.ref = "tokenmanager" } | ||
gamepoints = { module = "su.nightexpress:gamepoints", version.ref = "gamepoints" } | ||
nexengine = { module = "su.nexmedia:nexengine", version.ref = "nexengine" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.