mirror of
https://github.com/ME1312/SubServers-2.git
synced 2024-11-16 07:15:20 +01:00
ef1c593607
And automatic external server definitions
131 lines
5.6 KiB
XML
131 lines
5.6 KiB
XML
<?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.Sync</artifactId>
|
|
<version>-PLACEHOLDER</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>md_5-repo</id>
|
|
<url>http://repo.md-5.net/content/repositories/snapshots/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>me1312-repo</id>
|
|
<url>https://dev.me1312.net/maven</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>net.md_5</groupId>
|
|
<artifactId>bungeecord-internal</artifactId>
|
|
<version>1.15-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.ME1312.SubServers</groupId>
|
|
<artifactId>SubServers.Bungee.Common</artifactId>
|
|
<version>${project.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.ME1312.SubServers</groupId>
|
|
<artifactId>SubServers.Client.Common</artifactId>
|
|
<version>${project.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.dosse.upnp</groupId>
|
|
<artifactId>WaifUPnP</artifactId>
|
|
<version>1.1</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<directory>../out/compile/target/SubServers.Sync</directory>
|
|
<sourceDirectory>src</sourceDirectory>
|
|
<resources>
|
|
<resource>
|
|
<directory>src</directory>
|
|
<excludes>
|
|
<exclude>**/*.java</exclude>
|
|
</excludes>
|
|
</resource>
|
|
</resources>
|
|
<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>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>process</id>
|
|
<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" />
|
|
</tasks>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>3.2.0</version>
|
|
<configuration>
|
|
<finalName>SubServers.Sync</finalName>
|
|
<outputDirectory>../Artifacts/Maven</outputDirectory>
|
|
</configuration>
|
|
</plugin>
|
|
<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.Sync</windowtitle>
|
|
<doctitle>SubServers.Sync ${project.version}</doctitle>
|
|
<show>protected</show>
|
|
<destDir>./</destDir>
|
|
<outputDirectory>${basedir}/../Javadoc/SubServers.Sync</outputDirectory>
|
|
<reportOutputDirectory>${basedir}/../Javadoc/SubServers.Sync</reportOutputDirectory>
|
|
<additionalOptions>-Xdoclint:none</additionalOptions>
|
|
<links>
|
|
<link>https://dev.me1312.net/jenkins/job/GalaxiEngine/javadoc/GalaxiUtil/</link>
|
|
<link>https://dev.me1312.net/jenkins/job/SubData/javadoc/Client/</link>
|
|
<link>https://ci.md-5.net/job/BungeeCord/ws/api/target/apidocs/</link>
|
|
</links>
|
|
<includeDependencySources>true</includeDependencySources>
|
|
<dependencySourceIncludes>
|
|
<dependencySourceInclude>net.ME1312.SubServers:SubServers.Bungee.Common:*</dependencySourceInclude>
|
|
<dependencySourceInclude>net.ME1312.SubServers:SubServers.Client.Common:*</dependencySourceInclude>
|
|
</dependencySourceIncludes>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |