Merge pull request #255 from ascrutae/zhangxin/feature/high-performance-agent

Exclude google class when shading skywalking-agent.jar
This commit is contained in:
吴晟 Wu Sheng 2017-06-30 08:37:35 +08:00 committed by GitHub
commit e2c85d99b6
2 changed files with 10 additions and 1 deletions

View File

@ -140,6 +140,15 @@
<shadedPattern>${shade.io.netty.target}</shadedPattern>
</relocation>
</relocations>
<filters>
<filter>
<artifact>com.google.protobuf:protobuf-java</artifact>
<excludes>
<exclude>google/protobuf/*.proto</exclude>
<exclude>google/protobuf/compiler/*.proto</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>

View File

@ -151,7 +151,7 @@
<exclude>*:gson</exclude>
<exclude>io.grpc:*</exclude>
<exclude>io.netty:*</exclude>
<exclude>com.google.protobuf:*</exclude>
<exclude>com.google.*:*</exclude>
<exclude>com.google.guava:guava</exclude>
</excludes>
</artifactSet>