This is an automated email from the ASF dual-hosted git repository. chesnay pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/flink-shaded.git
commit 9916b0dbf622b15f310d2d76c18e85f933fd99f0 Author: Chesnay Schepler <[email protected]> AuthorDate: Thu Jan 30 19:45:04 2020 +0100 [FLINK-15815][build] Exclude META-INF/maven --- pom.xml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pom.xml b/pom.xml index d5d8ce3..6d26711 100644 --- a/pom.xml +++ b/pom.xml @@ -176,6 +176,14 @@ under the License. <artifactId>maven-shade-plugin</artifactId> <version>3.1.1</version> <configuration> + <filters combine.children="append"> + <filter> + <artifact>*</artifact> + <excludes> + <exclude>META-INF/maven/**</exclude> + </excludes> + </filter> + </filters> <transformers> <!-- The service transformer is needed to merge META-INF/services files --> <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
