2018-04-10 07:48:18 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-04-08 04:06:13 +02:00
|
|
|
<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">
|
2018-04-10 07:48:18 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>net.ME1312.SubServers</groupId>
|
|
|
|
<artifactId>SubServers.Bungee</artifactId>
|
2018-07-26 19:34:31 +02:00
|
|
|
<version>-PLACEHOLDER</version>
|
2018-04-15 03:53:51 +02:00
|
|
|
<packaging>jar</packaging>
|
2018-04-10 07:48:18 +02:00
|
|
|
|
|
|
|
<repositories>
|
2018-11-30 01:42:12 +01:00
|
|
|
<repository>
|
|
|
|
<id>md_5-repo</id>
|
|
|
|
<url>http://repo.md-5.net/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
2018-04-10 08:11:52 +02:00
|
|
|
<repository>
|
|
|
|
<id>me1312-repo</id>
|
2019-12-12 03:01:28 +01:00
|
|
|
<url>https://dev.me1312.net/maven</url>
|
2018-04-10 08:11:52 +02:00
|
|
|
</repository>
|
2018-04-10 07:48:18 +02:00
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2018-04-10 08:11:52 +02:00
|
|
|
<groupId>net.md_5</groupId>
|
|
|
|
<artifactId>bungeecord-internal</artifactId>
|
2020-01-18 06:13:10 +01:00
|
|
|
<version>1.15-SNAPSHOT</version>
|
2018-04-10 08:11:52 +02:00
|
|
|
<scope>provided</scope>
|
2018-04-10 07:48:18 +02:00
|
|
|
</dependency>
|
2020-11-14 04:41:56 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.ME1312.SubServers</groupId>
|
|
|
|
<artifactId>SubServers.Bungee.Common</artifactId>
|
2021-06-14 03:31:59 +02:00
|
|
|
<version>${project.version}</version>
|
2020-11-14 04:41:56 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2019-04-18 16:02:09 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.ME1312.SubData</groupId>
|
|
|
|
<artifactId>Server</artifactId>
|
2021-06-26 22:54:04 +02:00
|
|
|
<version>21w26b</version>
|
2018-08-24 04:32:49 +02:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2018-10-08 01:25:08 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.dosse.upnp</groupId>
|
|
|
|
<artifactId>WaifUPnP</artifactId>
|
|
|
|
<version>1.1</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2018-04-10 07:48:18 +02:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
2018-04-13 02:48:33 +02:00
|
|
|
<directory>../out/compile/target/SubServers.Bungee</directory>
|
2018-04-10 08:11:52 +02:00
|
|
|
<sourceDirectory>src</sourceDirectory>
|
2018-04-15 03:53:51 +02:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src</directory>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/*.java</exclude>
|
|
|
|
</excludes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2018-04-10 07:48:18 +02:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.7.0</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2018-07-26 19:34:31 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
2019-10-18 19:23:02 +02:00
|
|
|
<id>process</id>
|
2018-07-26 19:34:31 +02:00
|
|
|
<phase>process-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<tasks>
|
|
|
|
<mkdir dir="${project.build.directory}" />
|
|
|
|
<copy file="${basedir}/../LICENSE" todir="${project.build.directory}/classes" />
|
2020-11-07 17:35:25 +01:00
|
|
|
<mkdir dir="${basedir}/../Artifacts/Modulized" />
|
|
|
|
<copy file="${basedir}/../Artifacts/SubServers.Client.Universal.jar" tofile="${project.build.directory}/classes/net/ME1312/SubServers/Bungee/Library/Files/client.jar" />
|
2018-11-17 18:39:37 +01:00
|
|
|
<mkdir dir="${project.build.directory}/classes/net/ME1312/SubServers/Bungee/Library/Files/Templates" />
|
2020-11-07 17:35:25 +01:00
|
|
|
<zip basedir="${basedir}/../SubServers.Creator" destfile="${project.build.directory}/classes/net/ME1312/SubServers/Bungee/Library/Files/Templates/forge.zip" includes="Forge/**" />
|
|
|
|
<zip basedir="${basedir}/../SubServers.Creator" destfile="${project.build.directory}/classes/net/ME1312/SubServers/Bungee/Library/Files/Templates/paper.zip" includes="Paper/**" />
|
2021-06-25 05:06:53 +02:00
|
|
|
<zip basedir="${basedir}/../SubServers.Creator" destfile="${project.build.directory}/classes/net/ME1312/SubServers/Bungee/Library/Files/Templates/purpur.zip" includes="Purpur/**" />
|
2020-11-07 17:35:25 +01:00
|
|
|
<zip basedir="${basedir}/../SubServers.Creator" destfile="${project.build.directory}/classes/net/ME1312/SubServers/Bungee/Library/Files/Templates/spigot.zip" includes="Spigot/**" />
|
|
|
|
<zip basedir="${basedir}/../SubServers.Creator" destfile="${project.build.directory}/classes/net/ME1312/SubServers/Bungee/Library/Files/Templates/sponge.zip" includes="Sponge/**" />
|
|
|
|
<zip basedir="${basedir}/../SubServers.Creator" destfile="${project.build.directory}/classes/net/ME1312/SubServers/Bungee/Library/Files/Templates/vanilla.zip" includes="Vanilla/**" />
|
2018-07-26 19:34:31 +02:00
|
|
|
</tasks>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2019-10-18 19:23:02 +02:00
|
|
|
<execution>
|
|
|
|
<id>verify</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<tasks> <!-- Dependency Stripped Jar for Testing -->
|
2020-11-07 17:35:25 +01:00
|
|
|
<jar destfile="${basedir}/../Artifacts/Modulized/SubServers.Bungee.jar" manifest="src/META-INF/MANIFEST.MOD.MF">
|
2019-10-18 19:23:02 +02:00
|
|
|
<zipfileset src="${basedir}/../Artifacts/SubServers.Bungee.jar" excludes="net/ME1312/Galaxi/** net/ME1312/SubData/**" />
|
|
|
|
</jar>
|
|
|
|
</tasks>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2018-07-26 19:34:31 +02:00
|
|
|
</executions>
|
|
|
|
</plugin>
|
2021-06-14 03:31:59 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>3.2.0</version>
|
|
|
|
<configuration>
|
|
|
|
<finalName>SubServers.Bungee</finalName>
|
|
|
|
<outputDirectory>../Artifacts/Maven</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2018-07-26 19:34:31 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<version>2.2-beta-5</version>
|
|
|
|
<configuration>
|
|
|
|
<finalName>SubServers.Bungee</finalName>
|
|
|
|
<outputDirectory>../Artifacts</outputDirectory>
|
|
|
|
<archive>
|
|
|
|
<manifestFile>src/META-INF/MANIFEST.MF</manifestFile>
|
|
|
|
</archive>
|
|
|
|
<descriptorRefs>
|
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
|
</descriptorRefs>
|
|
|
|
<appendAssemblyId>false</appendAssemblyId>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>make-assembly</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2018-07-26 21:09:27 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>3.0.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>generate-sources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>javadoc</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2021-06-14 04:22:23 +02:00
|
|
|
<windowtitle>SubServers.Bungee</windowtitle>
|
2021-06-14 03:31:59 +02:00
|
|
|
<doctitle>SubServers.Bungee ${project.version}</doctitle>
|
2020-06-12 07:45:49 +02:00
|
|
|
<show>protected</show>
|
2018-07-26 21:09:27 +02:00
|
|
|
<destDir>./</destDir>
|
|
|
|
<outputDirectory>${basedir}/../Javadoc/SubServers.Bungee</outputDirectory>
|
|
|
|
<reportOutputDirectory>${basedir}/../Javadoc/SubServers.Bungee</reportOutputDirectory>
|
|
|
|
<additionalOptions>-Xdoclint:none</additionalOptions>
|
2019-01-17 16:39:15 +01:00
|
|
|
<links>
|
2019-12-12 03:01:28 +01:00
|
|
|
<link>https://dev.me1312.net/jenkins/job/GalaxiEngine/javadoc/GalaxiUtil/</link>
|
|
|
|
<link>https://dev.me1312.net/jenkins/job/SubData/javadoc/Server/</link>
|
2019-01-17 16:39:15 +01:00
|
|
|
<link>https://ci.md-5.net/job/BungeeCord/ws/api/target/apidocs/</link>
|
|
|
|
</links>
|
2020-11-14 04:41:56 +01:00
|
|
|
<includeDependencySources>true</includeDependencySources>
|
|
|
|
<dependencySourceIncludes>
|
|
|
|
<dependencySourceInclude>net.ME1312.SubServers:SubServers.Bungee.Common:*</dependencySourceInclude>
|
|
|
|
</dependencySourceIncludes>
|
2018-07-26 21:09:27 +02:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2018-04-10 07:48:18 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|