Uh, what.

This commit is contained in:
Tux 2013-11-13 20:11:10 -05:00
parent 7aa9d8a7c4
commit 1f3d821e00
1 changed files with 13 additions and 2 deletions

15
pom.xml
View File

@ -52,6 +52,7 @@
<includes>
<include>redis.clients:jedis</include>
<include>commons-pool:commons-pool</include>
<include>org.apache.commons:commons-lang3</include>
</includes>
</artifactSet>
<relocations>
@ -64,8 +65,8 @@
<shadedPattern>com.imaginarycode.minecraft.redisbungee.internal.jedisutil</shadedPattern>
</relocation>
<relocation>
<pattern>org.apache.commons.pool</pattern>
<shadedPattern>com.imaginarycode.minecraft.redisbungee.internal.commonspool</shadedPattern>
<pattern>org.apache.commons</pattern>
<shadedPattern>com.imaginarycode.minecraft.redisbungee.internal.commons</shadedPattern>
</relocation>
</relocations>
</configuration>
@ -99,6 +100,11 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
</plugin>
</plugins>
</build>
@ -115,5 +121,10 @@
<type>jar</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.1</version>
</dependency>
</dependencies>
</project>