2013-09-29 16:16:47 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2014-09-21 13:56:46 -04:00
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
2013-09-29 16:16:47 -04: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 16:06:45 -04:00
|
|
|
<groupId>com.imaginarycode.minecraft</groupId>
|
2013-09-29 16:16:47 -04:00
|
|
|
<artifactId>RedisBungee</artifactId>
|
2021-07-31 18:15:02 +04:00
|
|
|
<version>0.6.5</version>
|
2021-05-20 17:06:34 -04:00
|
|
|
|
2021-02-06 16:50:02 +04:00
|
|
|
|
2013-09-29 16:16:47 -04:00
|
|
|
<repositories>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>bungeecord-repo</id>
|
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
|
</repository>
|
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
|
|
<inceptionYear>2013</inceptionYear>
|
|
|
|
|
|
|
|
|
|
<build>
|
2021-01-07 23:30:39 +04:00
|
|
|
<resources>
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
|
<filtering>true</filtering>
|
|
|
|
|
</resource>
|
|
|
|
|
</resources>
|
2013-09-29 16:16:47 -04:00
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2021-01-07 23:30:39 +04:00
|
|
|
<version>3.8.1</version>
|
2013-09-29 16:16:47 -04:00
|
|
|
<configuration>
|
2021-01-07 23:30:39 +04:00
|
|
|
<source>1.8</source>
|
|
|
|
|
<target>1.8</target>
|
2013-09-29 16:16:47 -04:00
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2021-01-07 23:30:39 +04:00
|
|
|
<version>3.2.4</version>
|
2013-09-29 16:16:47 -04:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>shade</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<relocations>
|
|
|
|
|
<relocation>
|
2013-11-08 18:19:01 -05:00
|
|
|
<pattern>redis.clients.jedis</pattern>
|
2014-09-21 13:56:46 -04:00
|
|
|
<shadedPattern>com.imaginarycode.minecraft.redisbungee.internal.jedis
|
|
|
|
|
</shadedPattern>
|
2013-09-29 16:16:47 -04:00
|
|
|
</relocation>
|
|
|
|
|
<relocation>
|
2013-11-08 18:19:01 -05:00
|
|
|
<pattern>redis.clients.util</pattern>
|
2014-09-21 13:56:46 -04:00
|
|
|
<shadedPattern>com.imaginarycode.minecraft.redisbungee.internal.jedisutil
|
|
|
|
|
</shadedPattern>
|
2013-12-23 23:42:23 -05:00
|
|
|
</relocation>
|
|
|
|
|
<relocation>
|
|
|
|
|
<pattern>org.apache.commons.pool</pattern>
|
2014-09-21 13:56:46 -04:00
|
|
|
<shadedPattern>com.imaginarycode.minecraft.redisbungee.internal.commonspool
|
|
|
|
|
</shadedPattern>
|
2013-11-08 18:19:01 -05:00
|
|
|
</relocation>
|
2015-01-25 00:17:52 -05: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 16:16:47 -04:00
|
|
|
</relocations>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2013-11-13 20:11:10 -05:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2021-07-30 02:00:32 +04:00
|
|
|
<version>3.3.0</version>
|
2021-01-08 00:09:43 +04:00
|
|
|
<configuration>
|
|
|
|
|
<source>8</source>
|
|
|
|
|
</configuration>
|
2013-11-13 20:11:10 -05:00
|
|
|
</plugin>
|
2013-09-29 16:16:47 -04:00
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
2014-03-30 00:31:35 -04:00
|
|
|
<groupId>redis.clients</groupId>
|
2013-09-29 16:16:47 -04:00
|
|
|
<artifactId>jedis</artifactId>
|
2021-07-21 20:50:42 +04:00
|
|
|
<version>3.6.3</version>
|
2015-05-16 21:38:20 -04:00
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-pool2</artifactId>
|
2021-07-30 02:00:32 +04:00
|
|
|
<version>2.10.0</version>
|
2014-06-11 07:24:09 -04:00
|
|
|
<scope>compile</scope>
|
2013-09-29 16:16:47 -04:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
|
<artifactId>bungeecord-api</artifactId>
|
2021-06-24 03:35:05 +04:00
|
|
|
<version>1.17-R0.1-SNAPSHOT</version>
|
2013-09-29 16:16:47 -04:00
|
|
|
<type>jar</type>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2013-11-15 17:55:57 -05:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
2021-06-24 03:35:05 +04:00
|
|
|
<version>1.18.20</version>
|
2013-12-23 23:42:23 -05:00
|
|
|
<scope>provided</scope>
|
2013-11-15 17:55:57 -05:00
|
|
|
</dependency>
|
2015-01-25 00:17:52 -05:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.squareup.okhttp</groupId>
|
|
|
|
|
<artifactId>okhttp</artifactId>
|
2018-06-12 23:13:47 +08:00
|
|
|
<version>2.7.5</version>
|
2015-01-25 00:17:52 -05:00
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
2015-02-04 08:02:30 -07:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
2021-07-30 02:00:32 +04:00
|
|
|
<version>4.13.2</version>
|
2015-02-04 08:02:30 -07:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2013-09-29 16:16:47 -04:00
|
|
|
</dependencies>
|
2017-03-10 21:32:31 +01:00
|
|
|
</project>
|