2012-01-09 20:19:39 +01:00
|
|
|
<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>com.gmail.nossr50.mcMMO</groupId>
|
|
|
|
<artifactId>mcMMO</artifactId>
|
2013-02-16 06:15:12 +01:00
|
|
|
<version>1.4.00-dev4</version>
|
2012-01-09 20:19:39 +01:00
|
|
|
<name>mcMMO</name>
|
2012-02-16 18:15:05 +01:00
|
|
|
<url>https://github.com/mcMMO-Dev/mcMMO</url>
|
2012-01-09 20:19:39 +01:00
|
|
|
<issueManagement>
|
2013-01-17 18:38:43 +01:00
|
|
|
<url>https://github.com/mcMMO-Dev/mcMMO/issues</url>
|
|
|
|
<system>GitHub</system>
|
2012-01-09 20:19:39 +01:00
|
|
|
</issueManagement>
|
|
|
|
<build>
|
|
|
|
<finalName>mcMMO</finalName>
|
|
|
|
<sourceDirectory>${basedir}/src/main/java</sourceDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<targetPath>.</targetPath>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<directory>${basedir}/src/main/resources/</directory>
|
|
|
|
<includes>
|
2012-01-31 08:59:46 +01:00
|
|
|
<include>*.yml</include>
|
2013-02-02 10:38:15 +01:00
|
|
|
<include>.jenkins</include>
|
2012-01-09 20:19:39 +01:00
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<targetPath>resources</targetPath>
|
2012-02-05 07:38:18 +01:00
|
|
|
<filtering>false</filtering>
|
2012-01-25 22:52:09 +01:00
|
|
|
<directory>${basedir}/src/main/resources/xpbar/</directory>
|
|
|
|
<includes>
|
|
|
|
<include>xpbar*.png</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<targetPath>resources</targetPath>
|
2012-02-05 07:38:18 +01:00
|
|
|
<filtering>false</filtering>
|
2012-01-25 22:52:09 +01:00
|
|
|
<directory>${basedir}/src/main/resources/healthbar/</directory>
|
|
|
|
<includes>
|
|
|
|
<include>health*.png</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<targetPath>resources</targetPath>
|
2012-02-05 07:38:18 +01:00
|
|
|
<filtering>false</filtering>
|
2012-01-25 22:52:09 +01:00
|
|
|
<directory>${basedir}/src/main/resources/skillicon/</directory>
|
2012-01-09 20:19:39 +01:00
|
|
|
<includes>
|
|
|
|
<include>*.png</include>
|
2012-01-25 22:52:09 +01:00
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<targetPath>resources</targetPath>
|
2012-02-05 07:38:18 +01:00
|
|
|
<filtering>false</filtering>
|
2012-01-25 22:52:09 +01:00
|
|
|
<directory>${basedir}/src/main/resources/sound/</directory>
|
|
|
|
<includes>
|
2012-01-09 20:29:04 +01:00
|
|
|
<include>*.wav</include>
|
2012-01-09 20:19:39 +01:00
|
|
|
</includes>
|
|
|
|
</resource>
|
2012-01-25 22:52:09 +01:00
|
|
|
<resource>
|
2013-01-23 22:34:01 +01:00
|
|
|
<targetPath>com/gmail/nossr50/locale</targetPath>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<directory>${basedir}/src/main/resources/locale/</directory>
|
|
|
|
<includes>
|
|
|
|
<include>locale*.properties</include>
|
|
|
|
</includes>
|
2012-01-25 22:52:09 +01:00
|
|
|
</resource>
|
2012-01-09 20:19:39 +01:00
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>2.3.2</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.6</source>
|
|
|
|
<target>1.6</target>
|
|
|
|
<excludes>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<descriptors>
|
|
|
|
<descriptor>src/main/assembly/package.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>build</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2013-02-02 10:38:15 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>1.5</version>
|
|
|
|
<configuration>
|
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
2013-02-15 17:08:00 +01:00
|
|
|
<include>com.turt2live.metrics:MetricsExtension</include>
|
2013-02-02 10:38:15 +01:00
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
2013-02-02 10:55:49 +01:00
|
|
|
<relocations>
|
|
|
|
<relocation>
|
2013-02-15 17:08:00 +01:00
|
|
|
<pattern>com.turt2live.metrics</pattern>
|
2013-02-02 10:55:49 +01:00
|
|
|
<shadedPattern>com.gmail.nossr50.util.mcstats</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
</relocations>
|
2013-02-02 10:38:15 +01:00
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2012-01-09 20:19:39 +01:00
|
|
|
</plugins>
|
2013-01-16 04:19:03 +01:00
|
|
|
<extensions>
|
|
|
|
<extension>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
<artifactId>wagon-file</artifactId>
|
|
|
|
<version>2.2</version>
|
|
|
|
</extension>
|
|
|
|
</extensions>
|
2012-01-09 20:19:39 +01:00
|
|
|
</build>
|
2012-01-25 22:52:09 +01:00
|
|
|
<repositories>
|
2012-02-23 15:07:51 +01:00
|
|
|
<repository>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
<updatePolicy>always</updatePolicy>
|
|
|
|
<checksumPolicy>fail</checksumPolicy>
|
2013-02-02 10:38:15 +01:00
|
|
|
</snapshots>
|
2012-01-25 22:52:09 +01:00
|
|
|
<id>bukkit-repo</id>
|
|
|
|
<url>http://repo.bukkit.org/content/groups/public/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
2012-02-23 15:07:51 +01:00
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
<updatePolicy>always</updatePolicy>
|
|
|
|
<checksumPolicy>fail</checksumPolicy>
|
2013-02-02 10:38:15 +01:00
|
|
|
</snapshots>
|
2013-01-23 22:34:01 +01:00
|
|
|
<id>spout-repo</id>
|
|
|
|
<url>http://nexus.spout.org/content/groups/public/</url>
|
2012-01-25 22:52:09 +01:00
|
|
|
</repository>
|
2013-02-02 10:38:15 +01:00
|
|
|
<repository>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
<updatePolicy>always</updatePolicy>
|
|
|
|
<checksumPolicy>fail</checksumPolicy>
|
|
|
|
</snapshots>
|
2013-02-15 17:08:00 +01:00
|
|
|
<id>Plugin MetricsExtension</id>
|
|
|
|
<url>http://repo.turt2live.com</url>
|
2013-02-02 10:38:15 +01:00
|
|
|
</repository>
|
2012-01-25 22:52:09 +01:00
|
|
|
</repositories>
|
2012-01-09 20:19:39 +01:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
2012-03-02 16:04:20 +01:00
|
|
|
<version>LATEST</version>
|
2012-01-09 20:19:39 +01:00
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.getspout</groupId>
|
2012-12-06 20:22:22 +01:00
|
|
|
<artifactId>spoutplugin</artifactId>
|
2012-12-26 06:22:38 +01:00
|
|
|
<version>LATEST</version>
|
2012-01-09 20:19:39 +01:00
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2013-01-23 22:34:01 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit-dep</artifactId>
|
|
|
|
<version>4.10</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2013-02-02 10:38:15 +01:00
|
|
|
<dependency>
|
2013-02-15 17:08:00 +01:00
|
|
|
<groupId>com.turt2live.metrics</groupId>
|
|
|
|
<artifactId>MetricsExtension</artifactId>
|
2013-02-16 03:44:30 +01:00
|
|
|
<version>0.0.2-SNAPSHOT</version>
|
2013-02-15 17:08:00 +01:00
|
|
|
<type>jar</type>
|
2013-02-02 10:38:15 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2012-01-09 20:19:39 +01:00
|
|
|
</dependencies>
|
2013-01-16 04:19:03 +01:00
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>mcmmo-repo</id>
|
|
|
|
<url>file:///var/lib/jenkins/repo</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
2012-01-09 20:19:39 +01:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
</project>
|