mirror of
https://github.com/proxiodev/RedisBungee.git
synced 2024-10-31 18:48:01 +00:00
147 lines
6.6 KiB
XML
147 lines
6.6 KiB
XML
<?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>
|
|
<version>0.8.0-SNAPSHOT</version>
|
|
</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>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>3.3.2</version>
|
|
<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>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>3.2.4</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<relocations>
|
|
<relocation>
|
|
<pattern>redis.clients.jedis</pattern>
|
|
<shadedPattern>com.imaginarycode.minecraft.redisbungee.internal.jedis
|
|
</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>redis.clients.util</pattern>
|
|
<shadedPattern>com.imaginarycode.minecraft.redisbungee.internal.jedisutil
|
|
</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>org.apache.commons.pool</pattern>
|
|
<shadedPattern>com.imaginarycode.minecraft.redisbungee.internal.commonspool
|
|
</shadedPattern>
|
|
</relocation>
|
|
<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>
|
|
<relocation>
|
|
<pattern>com.google</pattern>
|
|
<shadedPattern>com.imaginarycode.minecraft.redisbungee.internal.google
|
|
</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>org.json</pattern>
|
|
<shadedPattern>com.imaginarycode.minecraft.redisbungee.internal.json</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>org.checkerframework</pattern>
|
|
<shadedPattern>com.imaginarycode.minecraft.redisbungee.internal.checkframework
|
|
</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>ninja.leaping.configurate</pattern>
|
|
<shadedPattern>com.imaginarycode.minecraft.redisbungee.internal.configurate
|
|
</shadedPattern>
|
|
</relocation>
|
|
</relocations>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.imaginarycode.minecraft</groupId>
|
|
<artifactId>RedisBungee-API</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.imaginarycode.minecraft</groupId>
|
|
<artifactId>RedisBungee-API</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
<classifier>javadoc</classifier>
|
|
</dependency>
|
|
<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> |