Skip to content

Commit

Permalink
Downgrade maven-dependency-plugin to 3.1.2
Browse files Browse the repository at this point in the history
There appear to be false positives around Jackson usage in arrow-tools
with versions greater than 3.1.2 up to at least 3.6.0.
  • Loading branch information
jduo committed Nov 24, 2023
1 parent 97f0da1 commit 2e726e8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 6 additions & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.6.1</version>
<!--
This appears to report a false positive with versions
greater than 3.1.2 (tested up to 3.6.0) when compiling
arrow-tools about Jackson being only used for tests.
-->
<version>3.1.2</version>
</plugin>
<plugin>
<groupId>org.apache.rat</groupId>
Expand Down
2 changes: 0 additions & 2 deletions java/tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,10 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down

0 comments on commit 2e726e8

Please sign in to comment.