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 75c797449700a6b7e86bf05317be057111b0f966 Author: zentol <[email protected]> AuthorDate: Thu Jun 22 09:33:58 2017 +0200 [FLINK-6981] Add flink-shaded-guava module --- flink-shaded-guava-18/pom.xml | 94 +++++++++++++++++++++++++++++++++++++++++++ pom.xml | 4 ++ 2 files changed, 98 insertions(+) diff --git a/flink-shaded-guava-18/pom.xml b/flink-shaded-guava-18/pom.xml new file mode 100644 index 0000000..7e63fd0 --- /dev/null +++ b/flink-shaded-guava-18/pom.xml @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. +--> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.apache.flink</groupId> + <artifactId>flink-shaded</artifactId> + <version>1.0</version> + <relativePath>..</relativePath> + </parent> + + <artifactId>flink-shaded-guava-18</artifactId> + <name>flink-shaded-guava-18</name> + <version>1.0-${guava.version}</version> + + <packaging>jar</packaging> + + <properties> + <guava.version>18.0</guava.version> + </properties> + + <dependencies> + <dependency> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + <version>${guava.version}</version> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-shade-plugin</artifactId> + <executions> + <execution> + <id>shade-flink</id> + <phase>package</phase> + <goals> + <goal>shade</goal> + </goals> + <configuration> + <createDependencyReducedPom>true</createDependencyReducedPom> + <artifactSet> + <includes> + <include>com.google.guava:*</include> + </includes> + </artifactSet> + <relocations> + <relocation> + <pattern>com.google</pattern> + <shadedPattern>org.apache.flink.shaded.guava18.com.google</shadedPattern> + </relocation> + </relocations> + <transformers> + <!-- The service transformer is needed to merge META-INF/services files --> + <transformer + implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/> + <!-- The ApacheNoticeResourceTransformer collects and aggregates NOTICE files --> + <transformer + implementation="org.apache.maven.plugins.shade.resource.ApacheNoticeResourceTransformer"/> + <!-- The ApacheLicenseResourceTransformer prevents duplicate Apache Licenses --> + <transformer + implementation="org.apache.maven.plugins.shade.resource.ApacheLicenseResourceTransformer"/> + </transformers> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + + +</project> diff --git a/pom.xml b/pom.xml index 4d530fc..5c535ee 100644 --- a/pom.xml +++ b/pom.xml @@ -55,6 +55,10 @@ under the License. <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/flink-shaded.git</developerConnection> </scm> + <modules> + <module>flink-shaded-guava-18</module> + </modules> + <build> <plugins> <plugin>
