BungeeCord/proxy/pom.xml

118 lines
4.2 KiB
XML
Raw Normal View History

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>
<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>
<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>
<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>
<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>
<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>
<scope>compile</scope>
2013-01-10 07:56:09 +01:00
</dependency>
<dependency>
<groupId>net.sf.trove4j</groupId>
<artifactId>trove4j</artifactId>
<version>3.0.3</version>
<scope>compile</scope>
</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>
<scope>compile</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>
<scope>compile</scope>
</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>
<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>