2022-04-13 13:14:08 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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">
|
|
|
|
<parent>
|
|
|
|
<artifactId>RedisBungee</artifactId>
|
|
|
|
<groupId>com.imaginarycode.minecraft</groupId>
|
2022-07-06 19:04:09 +00:00
|
|
|
<version>0.8.0-SNAPSHOT</version>
|
2022-04-13 13:14:08 +00:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>RedisBungee-Bungee</artifactId>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
|
</properties>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>bungeecord-repo</id>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-05-25 20:53:25 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>3.3.2</version>
|
2022-07-27 15:04:19 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<source>8</source>
|
|
|
|
<includeDependencySources>true</includeDependencySources>
|
|
|
|
<dependencySourceExcludes>
|
|
|
|
<dependencySourceExclude>net.md-5:*</dependencySourceExclude>
|
|
|
|
</dependencySourceExcludes>
|
|
|
|
<destDir>../javadoc/${project.name}</destDir>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2022-05-25 20:53:25 +00:00
|
|
|
</plugin>
|
2022-04-13 13:14:08 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>3.2.4</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
2022-07-27 15:04:19 +00:00
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
2022-04-13 13:14:08 +00:00
|
|
|
<configuration>
|
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>redis.clients.jedis</pattern>
|
2022-07-27 15:04:19 +00:00
|
|
|
<shadedPattern>com.imaginarycode.minecraft.redisbungee.internal.jedis
|
|
|
|
</shadedPattern>
|
2022-04-13 13:14:08 +00:00
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>redis.clients.util</pattern>
|
2022-07-27 15:04:19 +00:00
|
|
|
<shadedPattern>com.imaginarycode.minecraft.redisbungee.internal.jedisutil
|
|
|
|
</shadedPattern>
|
2022-04-13 13:14:08 +00:00
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>org.apache.commons.pool</pattern>
|
2022-07-27 15:04:19 +00:00
|
|
|
<shadedPattern>com.imaginarycode.minecraft.redisbungee.internal.commonspool
|
|
|
|
</shadedPattern>
|
2022-04-13 13:14:08 +00:00
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>com.squareup.okhttp</pattern>
|
2022-07-27 15:04:19 +00:00
|
|
|
<shadedPattern>com.imaginarycode.minecraft.redisbungee.internal.okhttp
|
|
|
|
</shadedPattern>
|
2022-04-13 13:14:08 +00:00
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>okio</pattern>
|
2022-07-22 11:12:32 +00:00
|
|
|
<shadedPattern>com.imaginarycode.minecraft.redisbungee.internal.okio</shadedPattern>
|
2022-04-13 13:14:08 +00:00
|
|
|
</relocation>
|
2022-05-25 08:50:26 +00:00
|
|
|
<relocation>
|
|
|
|
<pattern>com.google</pattern>
|
2022-07-27 15:04:19 +00:00
|
|
|
<shadedPattern>com.imaginarycode.minecraft.redisbungee.internal.google
|
|
|
|
</shadedPattern>
|
2022-05-25 08:50:26 +00:00
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>org.json</pattern>
|
2022-07-22 11:12:32 +00:00
|
|
|
<shadedPattern>com.imaginarycode.minecraft.redisbungee.internal.json</shadedPattern>
|
2022-05-25 08:50:26 +00:00
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>org.checkerframework</pattern>
|
2022-07-27 15:04:19 +00:00
|
|
|
<shadedPattern>com.imaginarycode.minecraft.redisbungee.internal.checkframework
|
|
|
|
</shadedPattern>
|
2022-07-22 11:12:32 +00:00
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>ninja.leaping.configurate</pattern>
|
2022-07-27 15:04:19 +00:00
|
|
|
<shadedPattern>com.imaginarycode.minecraft.redisbungee.internal.configurate
|
|
|
|
</shadedPattern>
|
2022-05-25 08:50:26 +00:00
|
|
|
</relocation>
|
2022-04-13 13:14:08 +00:00
|
|
|
</relocations>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.imaginarycode.minecraft</groupId>
|
|
|
|
<artifactId>RedisBungee-API</artifactId>
|
2022-07-15 22:21:20 +00:00
|
|
|
<version>${project.parent.version}</version>
|
2022-04-13 13:14:08 +00:00
|
|
|
</dependency>
|
2022-07-27 15:04:19 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.imaginarycode.minecraft</groupId>
|
|
|
|
<artifactId>RedisBungee-API</artifactId>
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
<classifier>javadoc</classifier>
|
|
|
|
</dependency>
|
2022-04-13 13:14:08 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>bungeecord-api</artifactId>
|
|
|
|
<version>1.17-R0.1-SNAPSHOT</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|