EggCatcher/pom.xml

97 lines
3.4 KiB
XML
Raw Permalink 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>
2020-03-09 10:28:58 +01:00
<version>3.8.1</version>
2013-02-28 18:42:25 +01:00
<configuration>
2017-06-09 01:34:34 +02:00
<source>1.8</source>
<target>1.8</target>
2013-02-28 18:42:25 +01:00
</configuration>
</plugin>
2013-02-28 20:29:03 +01:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
2017-06-09 01:35:03 +02:00
<version>3.0.0</version>
2013-02-28 20:29:03 +01:00
<configuration>
<minimizeJar>true</minimizeJar>
<artifactSet>
2017-06-09 01:35:20 +02:00
<includes>
<include>org.bstats:*</include>
</includes>
2013-02-28 20:29:03 +01:00
<excludes>
<exclude>org.bukkit:bukkit</exclude>
<exclude>org.yaml:snakeyaml</exclude>
<exclude>net.milkbowl.vault:Vault</exclude>
</excludes>
</artifactSet>
2017-06-09 01:35:20 +02:00
<relocations>
<relocation>
<pattern>org.bstats</pattern>
<shadedPattern>me.shansen.EggCatcher.bstats</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>
2017-06-09 00:28:24 +02:00
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
2015-01-30 20:06:41 +01:00
</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>
2017-06-09 01:35:20 +02:00
<repository>
2020-03-09 10:28:43 +01:00
<id>CodeMC</id>
<url>https://repo.codemc.org/repository/maven-public</url>
2017-06-09 01:35:20 +02:00
</repository>
2013-02-28 20:29:03 +01:00
</repositories>
2013-02-28 20:29:03 +01:00
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
2020-03-09 12:36:57 +01:00
<version>1.15.2-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>
2017-06-09 00:37:49 +02:00
<artifactId>VaultAPI</artifactId>
<version>1.6</version>
2015-01-30 20:00:38 +01:00
<scope>provided</scope>
2013-02-28 20:29:03 +01:00
</dependency>
2017-06-09 01:35:20 +02:00
<dependency>
<groupId>org.bstats</groupId>
<artifactId>bstats-bukkit</artifactId>
2020-03-09 10:28:43 +01:00
<version>1.7</version>
2017-06-09 01:35:20 +02:00
</dependency>
2013-02-28 20:29:03 +01:00
</dependencies>
</project>