2014-07-28 15:37:04 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>ca.gibstick</groupId>
|
|
|
|
<artifactId>DiscoSheep</artifactId>
|
|
|
|
<version>1.1.2</version>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>bukkit-repo</id>
|
|
|
|
<url>http://repo.bukkit.org/content/groups/public/</url>
|
|
|
|
</repository>
|
2014-07-28 15:53:52 +02:00
|
|
|
<repository>
|
|
|
|
<id>repo.oc.tc</id>
|
|
|
|
<url>http://repo.oc.tc/content/repositories/public/</url>
|
|
|
|
</repository>
|
2014-07-28 15:37:04 +02:00
|
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<version>1.7.9-R0.2</version>
|
|
|
|
</dependency>
|
2014-07-28 15:53:52 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
<artifactId>command-framework-bukkit</artifactId>
|
|
|
|
<version>0.5-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2014-07-28 15:37:04 +02:00
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<finalName>DiscoSheep</finalName>
|
|
|
|
<sourceDirectory>src/main/java</sourceDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<targetPath>.</targetPath>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<directory>src/main/resources/</directory>
|
|
|
|
<includes>
|
|
|
|
<include>plugin.yml</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.1</version>
|
|
|
|
<configuration>
|
|
|
|
<compilerArgs>
|
|
|
|
<arg>-Xlint:deprecation</arg>
|
|
|
|
</compilerArgs>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2014-07-28 15:53:52 +02:00
|
|
|
<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>
|
2014-07-28 15:37:04 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<maven.compiler.source>1.7</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.7</maven.compiler.target>
|
|
|
|
</properties>
|
|
|
|
</project>
|