Added dependency for sk89q's command framework
This commit is contained in:
parent
b490df861e
commit
4deb7589ae
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
/target/
|
/target/
|
||||||
|
*.jar
|
36
pom.xml
36
pom.xml
@ -10,6 +10,10 @@
|
|||||||
<id>bukkit-repo</id>
|
<id>bukkit-repo</id>
|
||||||
<url>http://repo.bukkit.org/content/groups/public/</url>
|
<url>http://repo.bukkit.org/content/groups/public/</url>
|
||||||
</repository>
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>repo.oc.tc</id>
|
||||||
|
<url>http://repo.oc.tc/content/repositories/public/</url>
|
||||||
|
</repository>
|
||||||
</repositories>
|
</repositories>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
@ -18,6 +22,11 @@
|
|||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
<version>1.7.9-R0.2</version>
|
<version>1.7.9-R0.2</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.sk89q</groupId>
|
||||||
|
<artifactId>command-framework-bukkit</artifactId>
|
||||||
|
<version>0.5-SNAPSHOT</version>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<build>
|
<build>
|
||||||
<finalName>DiscoSheep</finalName>
|
<finalName>DiscoSheep</finalName>
|
||||||
@ -42,6 +51,33 @@
|
|||||||
</compilerArgs>
|
</compilerArgs>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-shade-plugin</artifactId>
|
||||||
|
<version>2.3</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<phase>package</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>shade</goal>
|
||||||
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<finalName>DiscoSheep</finalName>
|
||||||
|
<useBaseVersion>true</useBaseVersion>
|
||||||
|
<shadedClassifierName/>
|
||||||
|
<outputDirectory>${project.basedir}</outputDirectory>
|
||||||
|
<artifactSet>
|
||||||
|
<includes>
|
||||||
|
<include>com.sk89q:command-framework-bukkit</include>
|
||||||
|
</includes>
|
||||||
|
</artifactSet>
|
||||||
|
<generateUniqueDependencyReducedPom>false</generateUniqueDependencyReducedPom>
|
||||||
|
<shadedArtifactAttached>true</shadedArtifactAttached> <!-- Makes Netbeans shut up -->
|
||||||
|
<shadedClassifierName>unshaded</shadedClassifierName>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
<properties>
|
<properties>
|
||||||
|
Loading…
Reference in New Issue
Block a user