2013-02-09 09:08:56 +01:00
|
|
|
|
2013-01-10 07:41:37 +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>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>bungeecord-parent</artifactId>
|
2013-03-14 07:50:33 +01:00
|
|
|
<version>1.5-SNAPSHOT</version>
|
2013-01-10 07:41:37 +01:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>bungeecord-proxy</artifactId>
|
2013-03-15 11:21:58 +01:00
|
|
|
<version>1.5-SNAPSHOT</version>
|
2013-01-10 07:41:37 +01:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2013-01-10 07:56:09 +01:00
|
|
|
<name>BungeeCord-Proxy</name>
|
2013-01-10 07:41:37 +01:00
|
|
|
<description>Proxy component of the Elastic Portal Suite</description>
|
|
|
|
|
|
|
|
<dependencies>
|
2013-03-07 08:17:49 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
2013-03-14 10:35:58 +01:00
|
|
|
<artifactId>netty-codec</artifactId>
|
|
|
|
<version>${netty.version}</version>
|
2013-03-20 08:52:26 +01:00
|
|
|
<scope>compile</scope>
|
2013-03-14 10:35:58 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-handler</artifactId>
|
|
|
|
<version>${netty.version}</version>
|
2013-03-20 08:52:26 +01:00
|
|
|
<scope>compile</scope>
|
2013-03-07 08:17:49 +01:00
|
|
|
</dependency>
|
2013-01-10 07:41:37 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.md-5</groupId>
|
2013-02-09 09:08:56 +01:00
|
|
|
<artifactId>bungeecord-protocol</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2013-03-20 08:52:26 +01:00
|
|
|
<scope>compile</scope>
|
2013-01-10 07:41:37 +01:00
|
|
|
</dependency>
|
2013-01-10 07:56:09 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>bungeecord-api</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2013-03-20 08:52:26 +01:00
|
|
|
<scope>compile</scope>
|
2013-01-10 07:56:09 +01:00
|
|
|
</dependency>
|
2013-03-07 11:04:03 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.trove4j</groupId>
|
|
|
|
<artifactId>trove4j</artifactId>
|
|
|
|
<version>3.0.3</version>
|
2013-03-20 08:52:26 +01:00
|
|
|
<scope>compile</scope>
|
2013-03-07 11:04:03 +01:00
|
|
|
</dependency>
|
2013-01-22 07:01:32 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
2013-03-14 09:50:17 +01:00
|
|
|
<version>5.1.24</version>
|
2013-05-14 10:32:17 +02:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.javassist</groupId>
|
|
|
|
<artifactId>javassist</artifactId>
|
|
|
|
<version>3.17.1-GA</version>
|
|
|
|
<scope>runtime</scope>
|
2013-01-22 07:01:32 +01:00
|
|
|
</dependency>
|
2013-05-03 13:25:47 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.xerial</groupId>
|
|
|
|
<artifactId>sqlite-jdbc</artifactId>
|
|
|
|
<version>3.7.2</version>
|
2013-05-14 10:32:17 +02:00
|
|
|
<scope>runtime</scope>
|
2013-05-03 13:25:47 +02:00
|
|
|
</dependency>
|
2013-01-10 07:41:37 +01:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
2013-01-10 07:56:09 +01:00
|
|
|
<finalName>BungeeCord</finalName>
|
2013-01-10 07:41:37 +01:00
|
|
|
<plugins>
|
2013-03-14 07:50:33 +01:00
|
|
|
<plugin>
|
|
|
|
<!-- Don't deploy proxy to maven repo, only APIs -->
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2013-01-10 07:41:37 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifestEntries>
|
|
|
|
<Main-Class>net.md_5.bungee.BungeeCord</Main-Class>
|
|
|
|
<Implementation-Version>${describe}</Implementation-Version>
|
|
|
|
</manifestEntries>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>2.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<artifact>*:*</artifact>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/*.java</exclude>
|
|
|
|
<exclude>**/*.SF</exclude>
|
|
|
|
<exclude>**/*.DSA</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
</filters>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|