2022-07-23 21:09:41 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<parent>
|
|
|
|
<artifactId>shopchest-nms</artifactId>
|
|
|
|
<groupId>de.epiceric</groupId>
|
2022-12-31 01:54:42 +01:00
|
|
|
<version>1.1.0-SNAPSHOT</version>
|
2022-07-23 21:09:41 +02:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>shopchest-nms-all</artifactId>
|
2022-12-31 01:54:42 +01:00
|
|
|
<version>1.1.0-SNAPSHOT</version>
|
2022-07-23 21:09:41 +02:00
|
|
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
2022-07-24 02:53:50 +02:00
|
|
|
<properties>
|
2022-07-24 17:24:58 +02:00
|
|
|
<builtFilePath>target/${project.build.finalName}.jar</builtFilePath>
|
2022-07-24 02:53:50 +02:00
|
|
|
</properties>
|
|
|
|
|
2022-07-23 21:09:41 +02:00
|
|
|
<!-- Ensure build order for assembly -->
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.epiceric</groupId>
|
|
|
|
<artifactId>shopchest-nms-interface</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.epiceric</groupId>
|
|
|
|
<artifactId>shopchest-nms-reflection</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.epiceric</groupId>
|
|
|
|
<artifactId>shopchest-nms-v1_17_R1</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.epiceric</groupId>
|
2022-07-24 03:09:13 +02:00
|
|
|
<artifactId>shopchest-nms-v1_17_R2</artifactId>
|
2022-07-23 21:09:41 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.epiceric</groupId>
|
|
|
|
<artifactId>shopchest-nms-v1_18_R1</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.epiceric</groupId>
|
|
|
|
<artifactId>shopchest-nms-v1_18_R2</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.epiceric</groupId>
|
|
|
|
<artifactId>shopchest-nms-v1_19_R1</artifactId>
|
|
|
|
</dependency>
|
2022-12-18 16:43:56 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>de.epiceric</groupId>
|
|
|
|
<artifactId>shopchest-nms-v1_19_R2</artifactId>
|
|
|
|
</dependency>
|
2022-07-23 21:09:41 +02:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>nms-assembly</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2022-07-24 03:51:43 +02:00
|
|
|
<appendAssemblyId>false</appendAssemblyId>
|
2022-07-23 21:09:41 +02:00
|
|
|
<descriptors>
|
|
|
|
<descriptor>nms-assembly.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2022-07-24 17:24:58 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>install-file</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>install</phase>
|
|
|
|
<configuration>
|
2022-07-26 22:29:54 +02:00
|
|
|
<generatePom>true</generatePom>
|
2022-07-24 17:24:58 +02:00
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>${project.artifactId}</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2022-07-26 22:29:54 +02:00
|
|
|
<packaging>jar</packaging>
|
2022-07-24 17:24:58 +02:00
|
|
|
<file>${builtFilePath}</file>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>deploy-file</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>deploy</phase>
|
|
|
|
<configuration>
|
2022-07-26 22:29:54 +02:00
|
|
|
<generatePom>true</generatePom>
|
2022-07-24 17:24:58 +02:00
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>${project.artifactId}</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2022-07-26 22:29:54 +02:00
|
|
|
<packaging>jar</packaging>
|
2022-07-24 17:24:58 +02:00
|
|
|
<file>${builtFilePath}</file>
|
|
|
|
<repositoryId>${project.distributionManagement.repository.id}</repositoryId>
|
|
|
|
<url>${project.distributionManagement.repository.url}</url>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2022-07-23 21:09:41 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|
|
|
|
|