2018-04-10 07:48:18 +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>net.ME1312.SubServers</groupId>
|
|
|
|
<artifactId>SubServers.Host</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
|
|
|
|
2018-09-09 00:06:21 +02:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>me1312-repo</id>
|
|
|
|
<url>https://src.me1312.net/maven</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
2018-04-10 07:48:18 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2018-09-09 00:06:21 +02:00
|
|
|
<groupId>net.ME1312.Galaxi</groupId>
|
|
|
|
<artifactId>GalaxiEngine</artifactId>
|
2018-10-23 01:36:18 +02:00
|
|
|
<version>18w43b</version>
|
2018-09-15 03:05:39 +02:00
|
|
|
<scope>compile</scope>
|
2018-06-09 18:19:25 +02:00
|
|
|
</dependency>
|
2018-04-10 07:48:18 +02:00
|
|
|
<dependency>
|
2018-08-24 04:32:49 +02:00
|
|
|
<groupId>org.msgpack</groupId>
|
|
|
|
<artifactId>msgpack-core</artifactId>
|
|
|
|
<version>0.8.16</version>
|
2018-04-10 07:48:18 +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.Host</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>
|
|
|
|
<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" />
|
2018-07-26 22:14:32 +02:00
|
|
|
<copy file="${basedir}/../Artifacts/SubServers.Client.jar" tofile="${project.build.directory}/classes/net/ME1312/SubServers/Host/Library/Files/client.jar" />
|
2018-07-26 19:34:31 +02:00
|
|
|
</tasks>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<version>2.2-beta-5</version>
|
|
|
|
<configuration>
|
|
|
|
<finalName>SubServers.Host</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>
|
|
|
|
<windowtitle>SubServers.Host Javadoc</windowtitle>
|
|
|
|
<doctitle>SubServers.Host Javadoc</doctitle>
|
|
|
|
<show>public</show>
|
|
|
|
<destDir>./</destDir>
|
|
|
|
<outputDirectory>${basedir}/../Javadoc/SubServers.Host</outputDirectory>
|
|
|
|
<reportOutputDirectory>${basedir}/../Javadoc/SubServers.Host</reportOutputDirectory>
|
|
|
|
<additionalOptions>-Xdoclint:none</additionalOptions>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2018-04-10 07:48:18 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|