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.Client.Bukkit</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>
|
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
2019-04-18 16:02:09 +02:00
|
|
|
<repository>
|
|
|
|
<id>bungeecord-repo</id>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>me1312-repo</id>
|
|
|
|
<url>https://src.me1312.net/maven</url>
|
|
|
|
</repository>
|
2018-04-10 07:48:18 +02:00
|
|
|
<repository>
|
|
|
|
<id>puharesource-repo</id>
|
|
|
|
<url>https://repo.puha.io/repo/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>vault-repo</id>
|
|
|
|
<url>http://nexus.hc.to/content/repositories/pub_releases</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
|
|
|
<version>1.11-R0.1-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2018-08-24 04:32:49 +02:00
|
|
|
<dependency>
|
2019-04-18 16:02:09 +02:00
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>bungeecord-chat</artifactId>
|
|
|
|
<version>1.10-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.ME1312.Galaxi</groupId>
|
|
|
|
<artifactId>GalaxiUtil</artifactId>
|
2019-05-23 20:37:18 +02:00
|
|
|
<version>19w21a</version>
|
2019-04-18 16:02:09 +02:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.ME1312.SubData</groupId>
|
|
|
|
<artifactId>Client</artifactId>
|
2019-05-14 04:02:38 +02:00
|
|
|
<version>19w20g</version>
|
2018-08-24 04:32:49 +02:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2018-04-10 07:48:18 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.puharesource.mc</groupId>
|
|
|
|
<artifactId>TitleManager</artifactId>
|
|
|
|
<version>1.5.11</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
|
|
<artifactId>VaultAPI</artifactId>
|
|
|
|
<version>1.6</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
2018-04-13 02:48:33 +02:00
|
|
|
<directory>../../out/compile/target/SubServers.Client.Bukkit</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" />
|
|
|
|
</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.Client.Bukkit</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.Client.Bukkit Javadoc</windowtitle>
|
|
|
|
<doctitle>SubServers.Client.Bukkit Javadoc</doctitle>
|
|
|
|
<show>public</show>
|
|
|
|
<destDir>./</destDir>
|
|
|
|
<outputDirectory>${basedir}/../../Javadoc/SubServers.Client.Bukkit</outputDirectory>
|
|
|
|
<reportOutputDirectory>${basedir}/../../Javadoc/SubServers.Client.Bukkit</reportOutputDirectory>
|
|
|
|
<additionalOptions>-Xdoclint:none</additionalOptions>
|
2019-01-17 16:39:15 +01:00
|
|
|
<links>
|
2019-04-18 16:02:09 +02:00
|
|
|
<link>https://src.me1312.net/jenkins/job/GalaxiEngine/javadoc/GalaxiUtil/</link>
|
|
|
|
<link>https://src.me1312.net/jenkins/job/SubData/javadoc/Client/</link>
|
2019-01-17 16:39:15 +01:00
|
|
|
<link>https://hub.spigotmc.org/javadocs/spigot/</link>
|
|
|
|
</links>
|
2018-07-26 21:09:27 +02:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2018-04-10 07:48:18 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|