Do not include byte-buddy META-INF in shade 76/83676/1
authorRobert Varga <robert.varga@pantheon.tech>
Thu, 15 Aug 2019 12:23:33 +0000 (14:23 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Thu, 15 Aug 2019 12:24:29 +0000 (14:24 +0200)
We do not want to leak module-info.class from byte-buddy, hence
filter all of its META-INF, as it does not provide anything of
value.

Change-Id: Ie74968147f281f58c5692affcfe6e087d7b3650f
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
binding/mdsal-binding-dom-codec/pom.xml

index f95727551a07342db7b25e77ddc3ecf0c966cf97..2566957c2b05f69a42d41425f2057566e8e4d320 100644 (file)
                                     <include>net.bytebuddy:byte-buddy</include>
                                 </includes>
                             </artifactSet>
+                            <filters>
+                                <filter>
+                                    <artifact>net.bytebuddy:byte-buddy</artifact>
+                                    <excludes>
+                                        <exclude>META-INF/**</exclude>
+                                    </excludes>
+                                </filter>
+                            </filters>
                         </configuration>
                     </execution>
                 </executions>