2016-01-18 02:42:47 +01: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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>com.mineplex</groupId>
|
|
|
|
<artifactId>mineplex-parent</artifactId>
|
|
|
|
<version>dev-SNAPSHOT</version>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2016-01-20 17:57:21 +01:00
|
|
|
<timestamp>${maven.build.timestamp}</timestamp>
|
|
|
|
<maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
|
2016-01-18 02:42:47 +01:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>Mineplex.Bungee.Mineplexer</module>
|
|
|
|
<module>Mineplex.BungeeRotator</module>
|
|
|
|
<module>Mineplex.Cache</module>
|
|
|
|
<module>Mineplex.Core</module>
|
|
|
|
<module>Mineplex.Core.Common</module>
|
|
|
|
<module>Mineplex.Database</module>
|
|
|
|
<module>Mineplex.DDoSProtectionSwitcher</module>
|
|
|
|
<module>Mineplex.EnjinTranslator</module>
|
|
|
|
<module>Mineplex.Game.Clans</module>
|
|
|
|
<module>Mineplex.Game.Clans.Core</module>
|
|
|
|
<module>Mineplex.Hub</module>
|
|
|
|
<module>Mineplex.MapParser</module>
|
|
|
|
<module>Mineplex.Minecraft.Game.ClassCombat</module>
|
|
|
|
<module>Mineplex.Minecraft.Game.Core</module>
|
2016-05-04 16:24:29 +02:00
|
|
|
<module>Mineplex.ReportServer</module>
|
2016-01-18 02:42:47 +01:00
|
|
|
<module>Mineplex.ServerData</module>
|
|
|
|
<module>Mineplex.ServerMonitor</module>
|
|
|
|
<module>Mineplex.StaffServer</module>
|
|
|
|
<module>Mineplex.Votifier</module>
|
|
|
|
<module>Nautilus.Game.Arcade</module>
|
2016-06-17 14:14:39 +02:00
|
|
|
|
|
|
|
<module>mavericks-review-hub</module>
|
2016-01-18 02:42:47 +01:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>mineplex</id>
|
2016-01-30 23:44:36 +01:00
|
|
|
<url>http://dev.mineplex.com:8081/nexus/content/groups/public/</url>
|
2016-01-18 02:42:47 +01:00
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
<version>1.6</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
<version>2.2.1</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.vexsoftware</groupId>
|
|
|
|
<artifactId>votifier</artifactId>
|
|
|
|
<version>1.9</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>fr.neatmonster</groupId>
|
|
|
|
<artifactId>nocheatplus</artifactId>
|
|
|
|
<version>3.12.1-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.mail</groupId>
|
|
|
|
<artifactId>mail</artifactId>
|
|
|
|
<version>1.4.7</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2016-02-19 10:10:01 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
<version>5.1.14</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2016-02-19 09:44:30 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.kencochrane.raven</groupId>
|
|
|
|
<artifactId>raven</artifactId>
|
|
|
|
<version>6.0.0</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2016-02-07 11:40:51 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.kencochrane.raven</groupId>
|
|
|
|
<artifactId>raven-log4j2</artifactId>
|
|
|
|
<version>6.0.0</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2016-01-18 02:42:47 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>bungeecord-proxy</artifactId>
|
|
|
|
<version>1.8-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-dbcp2</artifactId>
|
|
|
|
<version>2.0.1</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
<artifactId>cxf-bundle</artifactId>
|
|
|
|
<version>2.7.2</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
2016-05-20 08:58:58 +02:00
|
|
|
<version>4.5.2</version>
|
2016-01-18 02:42:47 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.ws.security</groupId>
|
|
|
|
<artifactId>wss4j</artifactId>
|
|
|
|
<version>1.6.9</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jooq</groupId>
|
|
|
|
<artifactId>jooq-codegen</artifactId>
|
|
|
|
<version>3.5.2</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.mineplex</groupId>
|
|
|
|
<artifactId>spigot</artifactId>
|
2016-02-28 01:12:59 +01:00
|
|
|
<version>1.8.8-1.9-SNAPSHOT</version>
|
2016-01-20 19:13:20 +01:00
|
|
|
<scope>compile</scope>
|
2016-01-18 02:42:47 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>redis.clients</groupId>
|
|
|
|
<artifactId>jedis</artifactId>
|
2016-04-17 05:51:20 +02:00
|
|
|
<version>2.8.1</version>
|
2016-01-18 02:42:47 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<finalName>${project.name}</finalName>
|
|
|
|
<sourceDirectory>${project.basedir}/src</sourceDirectory>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>scriptus</artifactId>
|
|
|
|
<version>0.3.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>initialize</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>describe</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<format>git:${project.name}:%s:${maven.build.timestamp}</format>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifestEntries>
|
|
|
|
<Implementation-Version>${describe}</Implementation-Version>
|
|
|
|
</manifestEntries>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>2.6</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>2.4.2</version>
|
|
|
|
<configuration>
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2016-02-01 00:24:49 +01:00
|
|
|
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.eclipse.m2e</groupId>
|
|
|
|
<artifactId>lifecycle-mapping</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<configuration>
|
|
|
|
<lifecycleMappingMetadata>
|
|
|
|
<pluginExecutions>
|
|
|
|
<pluginExecution>
|
|
|
|
<pluginExecutionFilter>
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>scriptus</artifactId>
|
|
|
|
<versionRange>[0.3.1,)</versionRange>
|
|
|
|
<goals>
|
|
|
|
<goal>describe</goal>
|
|
|
|
</goals>
|
|
|
|
</pluginExecutionFilter>
|
|
|
|
<action>
|
|
|
|
<ignore></ignore>
|
|
|
|
</action>
|
|
|
|
</pluginExecution>
|
|
|
|
</pluginExecutions>
|
|
|
|
</lifecycleMappingMetadata>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2016-01-18 02:42:47 +01:00
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
</project>
|