maven-shade-plugin 使用记录
2018-10-23 本文已影响0人
三云_16d2
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createSourcesJar>true</createSourcesJar>
<artifactSet>
<includes>
<include>com.apache:kafka-http-client</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>com.apache.common.kafka</pattern>
<shadedPattern>com.apache.middleware.transsonic.kafka</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>