2012-10-05 03:01:31 +02: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>
|
|
|
|
|
2013-01-07 08:09:40 +01:00
|
|
|
<parent>
|
|
|
|
<groupId>org.sonatype.oss</groupId>
|
|
|
|
<artifactId>oss-parent</artifactId>
|
|
|
|
<version>7</version>
|
|
|
|
</parent>
|
|
|
|
|
2012-10-05 03:01:31 +02:00
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>bungeecord</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>BungeeCord</name>
|
2012-10-12 07:07:20 +02:00
|
|
|
<description>Proxy component of the Elastic Portal Suite</description>
|
|
|
|
<url>https://github.com/ElasticPortalSuite/BungeeCord</url>
|
2012-10-05 03:01:31 +02:00
|
|
|
<inceptionYear>2012</inceptionYear>
|
2012-10-12 07:07:20 +02:00
|
|
|
<organization>
|
|
|
|
<name>Elastic Portal Suite</name>
|
|
|
|
<url>https://github.com/ElasticPortalSuite</url>
|
|
|
|
</organization>
|
2012-10-05 03:01:31 +02:00
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>The BSD 3-Clause License</name>
|
|
|
|
<url>http://opensource.org/licenses/BSD-3-Clause</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
2012-10-12 07:07:20 +02:00
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>md_5</id>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
2012-10-05 03:01:31 +02:00
|
|
|
<scm>
|
2012-10-12 07:07:20 +02:00
|
|
|
<connection>scm:git:git@github.com:ElasticPortalSuite/BungeeCord.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:ElasticPortalSuite/BungeeCord.git</developerConnection>
|
|
|
|
<url>git@github.com:ElasticPortalSuite/BungeeCord.git</url>
|
2012-10-05 03:01:31 +02:00
|
|
|
</scm>
|
|
|
|
<issueManagement>
|
|
|
|
<system>GitHub</system>
|
2012-10-12 07:07:20 +02:00
|
|
|
<url>https://github.com/ElasticPortalSuite/BungeeCord/issues</url>
|
2012-10-05 03:01:31 +02:00
|
|
|
</issueManagement>
|
|
|
|
<ciManagement>
|
|
|
|
<system>jenkins</system>
|
|
|
|
<url>http://ci.md-5.net/job/BungeeCord</url>
|
|
|
|
</ciManagement>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<build.number>unknown</build.number>
|
|
|
|
<main.class>net.md_5.bungee.BungeeCord</main.class>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
2012-10-18 08:42:12 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
<version>2.0.1</version>
|
|
|
|
</dependency>
|
2012-10-05 03:01:31 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<version>13.0.1</version>
|
|
|
|
</dependency>
|
2012-10-18 08:42:12 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.md-5</groupId>
|
2012-10-26 07:43:46 +02:00
|
|
|
<artifactId>mendax</artifactId>
|
2012-12-20 04:25:55 +01:00
|
|
|
<version>1.4.6-SNAPSHOT</version>
|
2012-10-18 08:42:12 +02:00
|
|
|
</dependency>
|
2012-11-19 09:08:56 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
<artifactId>bcprov-ext-jdk15on</artifactId>
|
|
|
|
<version>1.47</version>
|
|
|
|
</dependency>
|
2012-10-05 03:01:31 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.yaml</groupId>
|
|
|
|
<artifactId>snakeyaml</artifactId>
|
|
|
|
<version>1.11</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2013-01-07 08:09:40 +01:00
|
|
|
<version>0.11.6</version>
|
2012-10-05 03:01:31 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<finalName>${project.name}</finalName>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.lukegb.mojo</groupId>
|
|
|
|
<artifactId>gitdescribe-maven-plugin</artifactId>
|
|
|
|
<version>1.3</version>
|
|
|
|
<configuration>
|
|
|
|
<outputPrefix>git-${project.name}-${project.version}-</outputPrefix>
|
|
|
|
<outputPostfix>-${build.number}</outputPostfix>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>compile</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>gitdescribe</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2013-01-07 08:09:40 +01:00
|
|
|
<version>3.0</version>
|
2012-10-05 03:01:31 +02:00
|
|
|
<configuration>
|
|
|
|
<source>1.7</source>
|
|
|
|
<target>1.7</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifestEntries>
|
|
|
|
<Main-Class>${main.class}</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>
|
2012-10-18 08:42:12 +02:00
|
|
|
<exclude>**/*.java</exclude>
|
|
|
|
<exclude>**/*.properties</exclude>
|
|
|
|
<exclude>**/*.SF</exclude>
|
|
|
|
<exclude>**/*.DSA</exclude>
|
2012-10-05 03:01:31 +02:00
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
</filters>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2012-10-18 08:42:12 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>com.github.wvengen</groupId>
|
|
|
|
<artifactId>proguard-maven-plugin</artifactId>
|
|
|
|
<version>2.0.6</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>proguard</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<addMavenDescriptor>true</addMavenDescriptor>
|
|
|
|
<includeDependency>false</includeDependency>
|
|
|
|
<libs>
|
|
|
|
<lib>${java.home}/lib/rt.jar</lib>
|
|
|
|
<lib>${java.home}/lib/jce.jar</lib>
|
|
|
|
</libs>
|
|
|
|
<obfuscate>false</obfuscate>
|
|
|
|
<options>
|
2012-10-19 08:29:49 +02:00
|
|
|
<option>-dontoptimize</option>
|
2012-10-18 08:42:12 +02:00
|
|
|
<option>-keep class net.md_5.bungee.** { *; }</option>
|
|
|
|
</options>
|
|
|
|
</configuration>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.proguard</groupId>
|
|
|
|
<artifactId>proguard-base</artifactId>
|
|
|
|
<version>4.8</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
2012-10-05 03:01:31 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|