Skip to content

Commit

Permalink
[FLINK-16173][build] Reduce noise for used undeclared dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
zentol committed Mar 5, 2020
1 parent 8587ce8 commit a762e76
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1762,6 +1762,16 @@ under the License.
</dependency>
</dependencies>
<configuration>
<ignoredUsedUndeclaredDependencies combine.children="append">
<!-- allow using transitive Flink dependencies for brevity -->
<dependency>org.apache.flink:*</dependency>
<!-- False positive since we use hamcrest-all -->
<dependency>org.hamcrest:hamcrest-core</dependency>
<!-- transitive powermock test dependencies; excluded for brevity -->
<dependency>org.powermock:powermock-core</dependency>
<dependency>org.powermock:powermock-reflect</dependency>
<dependency>org.powermock:powermock-api-support</dependency>
</ignoredUsedUndeclaredDependencies>
<ignoredUnusedDeclaredDependencies combine.children="append">
<!-- build dependency, required for shading; does not contain any classes -->
<dependency>org.apache.flink:force-shading</dependency>
Expand Down

0 comments on commit a762e76

Please sign in to comment.