Github user greghogan commented on a diff in the pull request:
https://github.com/apache/flink/pull/5076#discussion_r153503257
--- Diff: pom.xml ---
@@ -891,6 +905,41 @@ under the License.
<build>
<plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <version>3.0.2</version>
+ <executions>
+ <execution>
+ <id>analyze</id>
+ <goals>
+
<goal>analyze-only</goal>
+ </goals>
+ <configuration>
+ <!-- Ignore
runtime-only dependencies in analysis -->
+
<ignoreNonCompile>true</ignoreNonCompile>
+
<outputXML>true</outputXML>
+
<failOnWarning>true</failOnWarning>
+
<ignoredUnusedDeclaredDependencies>
--- End diff --
Would it be better to move the dependencies out of the parent pom?---
