Skip to content

Commit

Permalink
🔧 Add check for duplicate dependencies for #267
Browse files Browse the repository at this point in the history
Signed-off-by: Marcus Fihlon <[email protected]>
  • Loading branch information
McPringle committed Dec 31, 2024
1 parent 69db498 commit 1eb14cb
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,23 @@
</executions>
</plugin>

<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.8.1</version>
<executions>
<execution>
<id>analyze</id>
<goals>
<goal>analyze-only</goal>
</goals>
<configuration>
<!-- TODO set to true later when all warnings are fixed -->
<failOnWarning>false</failOnWarning>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.simplify4u.plugins</groupId>
<artifactId>pgpverify-maven-plugin</artifactId>
Expand Down

0 comments on commit 1eb14cb

Please sign in to comment.