ChestsPlusPlus/pom.xml

145 lines
5.4 KiB
XML
Raw Normal View History

2019-09-16 20:22:50 +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>com.jamesdpeters.chests</groupId>
<artifactId>ChestsPlusPlus</artifactId>
<version>1.0-SNAPSHOT</version>
2019-09-19 16:16:53 +02:00
2019-09-16 20:22:50 +02:00
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
<repositories>
<repository>
<id>spigotmc-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/groups/public/</url>
</repository>
<repository>
<id>dmulloy2-repo</id>
<url>http://repo.dmulloy2.net/nexus/repository/public/</url>
</repository>
2019-09-19 16:16:53 +02:00
2020-04-15 13:59:29 +02:00
<repository>
<id>CodeMC</id>
<url>https://repo.codemc.org/repository/maven-public</url>
</repository>
<repository>
<id>sytm-nexus</id>
<url>https://repo.sytm.de/repository/maven-hosted/</url>
</repository>
2019-09-16 20:22:50 +02:00
</repositories>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.15.2-R0.1-SNAPSHOT</version>
2019-09-16 20:22:50 +02:00
<scope>provided</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.4</version>
</dependency>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>plugin-annotations</artifactId>
<version>1.2.2-SNAPSHOT</version>
</dependency>
<!-- <dependency>-->
<!-- <groupId>fr.minuskube.inv</groupId>-->
<!-- <artifactId>smart-invs</artifactId>-->
<!-- <version>1.2.7</version>-->
<!-- </dependency>-->
2019-09-16 20:22:50 +02:00
<dependency>
2019-09-19 16:16:53 +02:00
<groupId>fr.minuskube.inv</groupId>
<artifactId>smart-invs</artifactId>
<version>1.3.0-SNAPSHOT</version>
2019-09-16 20:22:50 +02:00
</dependency>
2020-04-15 13:59:29 +02:00
<dependency>
<groupId>org.bstats</groupId>
<artifactId>bstats-bukkit</artifactId>
<version>1.7</version>
</dependency>
2019-09-16 20:22:50 +02:00
</dependencies>
<!--Tell maven how to prepare and build our jar file from our source and dependancies-->
<build>
<!--Tell maven what plugins we want to add and what they should do-->
<plugins>
<!--Tell maven the id and version of the 'shade' plugin's jar file so it can download it from a repository-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.0</version>
2019-09-19 16:16:53 +02:00
<configuration>
<artifactSet>
<includes>
<include>fr.minuskube.inv*:*</include>
2020-04-15 13:59:29 +02:00
<include>org.bstats*:*</include>
2019-09-19 16:16:53 +02:00
</includes>
</artifactSet>
<relocations>
2020-04-15 13:59:29 +02:00
<relocation>
<pattern>org.bstats</pattern>
<!-- Replace this with your package! -->
<shadedPattern>com.jamesdpeters.minecraft.chests</shadedPattern>
</relocation>
2019-09-19 16:16:53 +02:00
<relocation>
<pattern>fr.minuskube.inv</pattern>
<shadedPattern>com.jamesdpeters.minecraft.chests</shadedPattern>
</relocation>
</relocations>
</configuration>
2019-09-16 20:22:50 +02:00
<executions>
<!--Tell the shade plugin when it should be run during a maven build-->
<execution>
<!--Tell the shade plugin to run once during the 'package' phase of a maven build-->
<phase>package</phase>
<!--Tell the shade plugin which of it's goals to attempt to run during this phase-->
<goals>
<goal>shade</goal>
</goals>
<!--Tell the shade plugin which of it's goals to attempt to run during this phase-->
<configuration>
<!--Tell the shade plugin where to put our jar file-->
<outputFile>${project.basedir}/Server/plugins/${project.artifactId}.jar</outputFile>
2020-04-15 13:59:29 +02:00
<!-- <minimizeJar>true</minimizeJar>-->
2019-09-16 20:22:50 +02:00
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<!--Tell maven to enable resource filtering so we can use macros like '${project.version}' inside of our plugin.yml-->
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
</project>