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>
|
2020-06-27 23:30:24 +02:00
|
|
|
<version>1.5-BETA-3</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>
|
|
|
|
|
2020-04-27 15:25:26 +02:00
|
|
|
<scm>
|
|
|
|
<connection>scm:git:git@github.com:JamesPeters98/ChestsPlusPlus.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:JamesPeters98/ChestsPlusPlus.git</developerConnection>
|
|
|
|
<url>https://github.com/JamesPeters98/ChestsPlusPlus</url>
|
|
|
|
<tag>@{project.version}</tag>
|
|
|
|
</scm>
|
|
|
|
|
2019-09-16 20:22:50 +02:00
|
|
|
<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>
|
|
|
|
|
2020-04-19 16:03:15 +02:00
|
|
|
<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>
|
2020-06-25 17:21:52 +02:00
|
|
|
<version>1.14.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>
|
|
|
|
|
2020-04-27 13:22:51 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>plugin-annotations</artifactId>
|
2020-06-25 17:21:52 +02:00
|
|
|
<version>1.2.3-SNAPSHOT</version>
|
2020-04-27 13:22:51 +02:00
|
|
|
</dependency>
|
|
|
|
|
2020-04-19 16:03:15 +02:00
|
|
|
<!-- <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>
|
2020-04-19 16:03:15 +02:00
|
|
|
<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>
|
|
|
|
|
2020-07-03 01:42:55 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.jamesdpeters.chests</groupId>
|
|
|
|
<artifactId>ChestsPlusPlus_1_16</artifactId>
|
|
|
|
<version>1.5-BETA-3</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.jamesdpeters.chests</groupId>
|
|
|
|
<artifactId>ChestsPlusPlus_1_15</artifactId>
|
|
|
|
<version>1.5-BETA-3</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</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-->
|
2020-06-27 23:30:24 +02:00
|
|
|
<outputFile>${project.basedir}/Server/plugins/${project.artifactId}-${project.version}.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>
|
2020-04-27 14:14:34 +02:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>templating-maven-plugin</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>filter-src</id>
|
|
|
|
<goals>
|
|
|
|
<goal>filter-sources</goal><!-- add this if you filter main sources -->
|
|
|
|
<goal>filter-test-sources</goal><!-- add this if you filter test sources -->
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2020-04-27 15:25:26 +02:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
|
|
<version>3.0.0-M1</version>
|
|
|
|
</plugin>
|
2020-06-26 22:23:55 +02:00
|
|
|
|
2019-09-16 20:22:50 +02:00
|
|
|
</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>
|