Github user rmetzger commented on a diff in the pull request: https://github.com/apache/flink/pull/408#discussion_r26066814 --- Diff: flink-staging/flink-gelly/pom.xml --- @@ -52,4 +52,35 @@ under the License. <scope>test</scope> </dependency> </dependencies> + + <!-- See main pom.xml for explanation of profiles --> + <profiles> + <profile> + <id>hadoop-1</id> + <activation> + <property> + <!-- Please do not remove the 'hadoop1' comment. See ./tools/generate_specific_pom.sh --> + <!--hadoop1--><name>hadoop.profile</name><value>1</value> + </property> + </activation> + <dependencies> + <!-- Add this here, for hadoop-2 we don't need it since we get guava transitively --> + <dependency> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + <version>${guava.version}</version> + <scope>provided</scope> + </dependency> + </dependencies> + </profile> + <profile> --- End diff -- Thank you. I've rebased https://github.com/apache/flink/pull/454 onto your changes in master and adopted it to our new approach of handling dependencies in Flink. There, I've added guava again as a regular dependency.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---