Advertisement
joestr

Untitled

Apr 18th, 2019
579
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.11 KB | None | 0 0
  1. <executions>
  2.             <execution>
  3.                 <phase>package</phase>
  4.                 <goals>
  5.                     <goal>shade</goal>
  6.                 </goals>
  7.                 <configuration>
  8.                     <artifactSet>
  9.                         <includes>
  10.                             <include>com.github.theholywaffle:teamspeak3-api</include>
  11.                             <include>org.slf4j:slf4j-parent</include>
  12.                         </includes>
  13.                     </artifactSet>
  14.                     <relocations>
  15.                         <relocation>
  16.                             <pattern>com.github.theholywaffle.teamspeak3</pattern>
  17.                             <shadedPattern>de.web.moritz.mikus.com.github.theholywaffle.teamspeak3</shadedPattern>
  18.                         </relocation>
  19.                         <relocation>
  20.                             <pattern>org.slf4j</pattern>
  21.                             <shadedPattern>de.web.moritz.mikus.org.slf4j</shadedPattern>
  22.                         </relocation>
  23.                     </relocations>
  24.                 </configuration>
  25.             </execution>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement