diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 21 |
1 files changed, 17 insertions, 4 deletions
@@ -2,19 +2,22 @@ <img align="center" src="https://leonardobishop.com/artwork/QUESTS%20BANNER%20NO%20BACKGROUND.png"></img><br> </div> -[](http://isitmaintained.com/project/LMBishop/Quests "Average time to resolve an issue") [](http://isitmaintained.com/project/LMBishop/Quests "Percentage of issues still open")  +[](http://isitmaintained.com/project/LMBishop/Quests "Average time to resolve an issue") [](http://isitmaintained.com/project/LMBishop/Quests "Percentage of issues still open")  ## About Quests This plugin will allow your players to do quests in-game to earn rewards. This can all be configured. ## 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 |
