EggCatcher/pom.xml

95 lines
3.3 KiB
XML
Raw Normal View History

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2013-02-28 20:29:03 +01:00
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>
2013-02-28 20:29:03 +01:00
<groupId>me.shansen</groupId>
<artifactId>EggCatcher</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
2013-02-28 20:29:03 +01:00
<name>EggCatcher</name>
<url>http://maven.apache.org</url>
2013-02-28 20:29:03 +01:00
<build>
<plugins>
2013-02-28 18:42:25 +01:00
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
2013-12-18 20:32:06 +01:00
<version>2.5.1</version>
2013-02-28 18:42:25 +01:00
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
2013-02-28 20:29:03 +01:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
2013-12-18 20:32:06 +01:00
<version>2.2</version>
2013-02-28 20:29:03 +01:00
<configuration>
<minimizeJar>true</minimizeJar>
<artifactSet>
<excludes>
<exclude>org.bukkit:bukkit</exclude>
<exclude>org.yaml:snakeyaml</exclude>
<exclude>net.milkbowl.vault:Vault</exclude>
</excludes>
</artifactSet>
<relocations>
<relocation>
<pattern>org.mcstats</pattern>
<shadedPattern>me.shansen.EggCatcher.mcstats</shadedPattern>
</relocation>
</relocations>
2013-02-28 20:29:03 +01:00
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
2013-02-24 21:03:09 +01:00
2013-02-28 20:29:03 +01:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
2013-02-28 20:29:03 +01:00
<repositories>
2015-01-30 20:06:41 +01:00
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
</repository>
2013-02-28 20:29:03 +01:00
<repository>
<id>vault-repo</id>
2016-08-11 02:18:59 +02:00
<url>http://nexus.hc.to/content/repositories/pub_releases</url>
2013-02-28 20:29:03 +01:00
</repository>
<repository>
<id>Plugin Metrics</id>
<url>http://repo.mcstats.org/content/repositories/public</url>
</repository>
</repositories>
2013-02-28 20:29:03 +01:00
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
2016-11-17 17:06:23 +01:00
<version>1.11-R0.1-SNAPSHOT</version>
2015-01-30 20:00:38 +01:00
<scope>provided</scope>
2013-02-28 20:29:03 +01:00
</dependency>
<dependency>
<groupId>net.milkbowl.vault</groupId>
<artifactId>Vault</artifactId>
2016-06-15 08:00:37 +02:00
<version>1.5.6</version>
2015-01-30 20:00:38 +01:00
<scope>provided</scope>
2013-02-28 20:29:03 +01:00
</dependency>
<dependency>
<groupId>org.mcstats.bukkit</groupId>
<artifactId>metrics</artifactId>
2016-03-07 21:45:18 +01:00
<version>R8-SNAPSHOT</version>
2013-02-28 20:29:03 +01:00
<scope>compile</scope>
</dependency>
</dependencies>
</project>