Go to file
2016-09-21 12:43:33 -07:00
src/me/ryanhamshire/GriefPrevention Make DataStore#getGroupBonusBlocks(UUID) public 2016-09-20 18:30:46 +02:00
.gitignore Ignore snowballs, etc. from triggering PvP timer 2016-09-16 00:12:03 -07:00
plugin.yml Use pom.xml's version 2016-09-15 23:31:03 -07:00
pom.xml version to 15.2.3 2016-09-15 23:32:00 -07:00
README 3.2 2012-03-29 17:27:12 -07:00
README.md Create README.md 2016-09-21 12:43:33 -07:00

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>

```xml
	<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