diff options
| author | Rubenicos <44579213+rubenicos@users.noreply.github.com> | 2021-02-03 07:41:35 -0600 |
|---|---|---|
| committer | Leonardo <13875753+LMBishop@users.noreply.github.com> | 2021-02-03 16:47:09 +0000 |
| commit | 865f91c9367870e7b6eb513adcced50d057dad27 (patch) | |
| tree | 11195b25e0833f82ac631f424c694e10568a02cd /README.md | |
| parent | 5c2460c93cc2746816893607c966eba2b5284d05 (diff) | |
New faster placeholders
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 19 |
1 files changed, 16 insertions, 3 deletions
@@ -8,13 +8,16 @@ This plugin will allow your players to do quests in-game to earn rewards. This c ## Downloads/Building The latest release version of Quests can be found on [Spigot](https://www.spigotmc.org/resources/▶-quests-◀-set-up-goals-for-players.23696/). +The latest build of Quests can be found on [Github](https://github.com/LMBishop/Quests/actions). -Alternatively, you can build Quests via Maven using ``mvn clean package``. +Alternatively, you can build Quests via Gradle using ``gradlew build``. -### Maven +### Custom Task Creating new Task Types within Quests is supported, [see the wiki](https://github.com/LMBishop/Quests/wiki/New-Task-Type) for help. -You can include quests in your Maven project using [JitPack](https://jitpack.io/#LMBishop/Quests): +You can include quests in your project using [JitPack](https://jitpack.io/#LMBishop/Quests) repository. + +### Maven ```xml <repository> <id>jitpack.io</id> @@ -30,6 +33,16 @@ You can include quests in your Maven project using [JitPack](https://jitpack.io/ </dependency> ``` +### Gradle +```groovy +repositories { + maven { url = 'https://jitpack.io' } +} +dependencies { + compileOnly 'com.github.LMBishop:Quests:master-SNAPSHOT' +} +``` + ## Contributors See https://github.com/LMBishop/Quests/graphs/contributors |
