2013-09-29 20:16:47 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2014-09-21 17:56:46 +00:00
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
2013-09-29 20:16:47 +00:00
|
|
|
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-10-13 20:06:45 +00:00
|
|
|
<groupId>com.imaginarycode.minecraft</groupId>
|
2013-09-29 20:16:47 +00:00
|
|
|
<artifactId>RedisBungee</artifactId>
|
2017-03-10 20:32:31 +00:00
|
|
|
<version>0.4</version>
|
2013-09-29 20:16:47 +00:00
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>bungeecord-repo</id>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
2013-12-05 01:03:40 +00:00
|
|
|
<ciManagement>
|
|
|
|
<system>jenkins</system>
|
|
|
|
<url>http://ci.md-5.net/job/RedisBungee/</url>
|
|
|
|
</ciManagement>
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
2014-06-11 11:28:06 +00:00
|
|
|
<id>md_5-releases</id>
|
|
|
|
<url>http://repo.md-5.net/content/repositories/releases/</url>
|
2013-12-05 01:03:40 +00:00
|
|
|
</repository>
|
|
|
|
<snapshotRepository>
|
2014-06-11 11:28:06 +00:00
|
|
|
<id>md_5-snapshots</id>
|
|
|
|
<url>http://repo.md-5.net/content/repositories/snapshots/</url>
|
2013-12-05 01:03:40 +00:00
|
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
|
|
|
|
2013-09-29 20:16:47 +00:00
|
|
|
<inceptionYear>2013</inceptionYear>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.1</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.7</source>
|
|
|
|
<target>1.7</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>2.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<relocations>
|
|
|
|
<relocation>
|
2013-11-08 23:19:01 +00:00
|
|
|
<pattern>redis.clients.jedis</pattern>
|
2014-09-21 17:56:46 +00:00
|
|
|
<shadedPattern>com.imaginarycode.minecraft.redisbungee.internal.jedis
|
|
|
|
</shadedPattern>
|
2013-09-29 20:16:47 +00:00
|
|
|
</relocation>
|
|
|
|
<relocation>
|
2013-11-08 23:19:01 +00:00
|
|
|
<pattern>redis.clients.util</pattern>
|
2014-09-21 17:56:46 +00:00
|
|
|
<shadedPattern>com.imaginarycode.minecraft.redisbungee.internal.jedisutil
|
|
|
|
</shadedPattern>
|
2013-12-24 04:42:23 +00:00
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>org.apache.commons.pool</pattern>
|
2014-09-21 17:56:46 +00:00
|
|
|
<shadedPattern>com.imaginarycode.minecraft.redisbungee.internal.commonspool
|
|
|
|
</shadedPattern>
|
2013-11-08 23:19:01 +00:00
|
|
|
</relocation>
|
2015-01-25 05:17:52 +00:00
|
|
|
<relocation>
|
|
|
|
<pattern>com.squareup.okhttp</pattern>
|
|
|
|
<shadedPattern>com.imaginarycode.minecraft.redisbungee.internal.okhttp
|
|
|
|
</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>okio</pattern>
|
|
|
|
<shadedPattern>com.imaginarycode.minecraft.redisbungee.internal.okio
|
|
|
|
</shadedPattern>
|
|
|
|
</relocation>
|
2013-09-29 20:16:47 +00:00
|
|
|
</relocations>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2013-11-14 01:11:10 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>2.9.1</version>
|
|
|
|
</plugin>
|
2013-09-29 20:16:47 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2014-03-30 04:31:35 +00:00
|
|
|
<groupId>redis.clients</groupId>
|
2013-09-29 20:16:47 +00:00
|
|
|
<artifactId>jedis</artifactId>
|
2018-06-12 15:13:47 +00:00
|
|
|
<version>2.9.0</version>
|
2015-05-17 01:38:20 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-pool2</artifactId>
|
2018-06-12 15:13:47 +00:00
|
|
|
<version>2.5.0</version>
|
2014-06-11 11:24:09 +00:00
|
|
|
<scope>compile</scope>
|
2013-09-29 20:16:47 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>bungeecord-api</artifactId>
|
2018-06-12 15:13:47 +00:00
|
|
|
<version>1.12-SNAPSHOT</version>
|
2013-09-29 20:16:47 +00:00
|
|
|
<type>jar</type>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2013-11-15 22:55:57 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2018-06-12 15:13:47 +00:00
|
|
|
<version>1.16.16</version>
|
2013-12-24 04:42:23 +00:00
|
|
|
<scope>provided</scope>
|
2013-11-15 22:55:57 +00:00
|
|
|
</dependency>
|
2015-01-25 05:17:52 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.okhttp</groupId>
|
|
|
|
<artifactId>okhttp</artifactId>
|
2018-06-12 15:13:47 +00:00
|
|
|
<version>2.7.5</version>
|
2015-01-25 05:17:52 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2015-02-04 15:02:30 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.11</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2013-09-29 20:16:47 +00:00
|
|
|
</dependencies>
|
2017-03-10 20:32:31 +00:00
|
|
|
</project>
|