Also remove todo, since it's possible to use the bonus claim blocks to "extend" the claim block limit via an addon: https://github.com/TechFortress/GriefPrevention/issues/41#issuecomment-261471314 |
||
|---|---|---|
| src/me/ryanhamshire/GriefPrevention | ||
| .gitignore | ||
| .travis.yml | ||
| ISSUE_TEMPLATE.md | ||
| plugin.yml | ||
| pom.xml | ||
| README | ||
| README.md | ||
Adding GriefPrevention as a gradle/maven/sbt/leiningen dependency
Apparently there's this neat thing called JitPack that makes a public maven repo for public Github repos on the fly.
According to it, this is all you need to do to add this to your maven project:
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.TechFortress</groupId>
<artifactId>GriefPrevention</artifactId>
<version>master-SNAPSHOT</version>
</dependency>
You can also add it to gradle/sbt/leiningen projects: https://jitpack.io/#TechFortress/GriefPrevention/master-SNAPSHOT