Add tooltips and commands for f invite command as specified in issue #73.

This commit is contained in:
drtshock
2014-10-13 14:10:18 -05:00
parent 272c35cda6
commit 04fd18f17a
3 changed files with 183 additions and 1 deletions

36
pom.xml
View File

@@ -36,8 +36,35 @@
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.2</version>
<configuration>
<artifactSet>
<includes>
<include>mkremins:fanciful</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>mkremins.fanciful</pattern>
<shadedPattern>com.massivecraft.factions.shade.mkremins.fanciful</shadedPattern>
</relocation>
</relocations>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
@@ -77,6 +104,11 @@
<version>LATEST</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>mkremins</groupId>
<artifactId>fanciful</artifactId>
<version>0.2.0-SNAPSHOT</version>
</dependency>
</dependencies>
<repositories>
@@ -96,5 +128,9 @@
<id>maven.sk89q.com</id>
<url>http://maven.sk89q.com/repo/</url>
</repository>
<repository>
<id>fanciful-mvn-repo</id>
<url>https://raw.github.com/mkremins/fanciful/mvn-repo/</url>
</repository>
</repositories>
</project>