Skip to content

Commit

Permalink
fix issue with dependency plugin analyzer in changetoken pure module
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusz-klatt committed Nov 27, 2023
1 parent c61d96b commit 0f763c6
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,21 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>dependency-analyze</id>
<configuration>
<!-- The dependency plugin analyzer raises these as false positives -->
<ignoredUnusedDeclaredDependencies>
<dependency>junit:junit</dependency>
</ignoredUnusedDeclaredDependencies>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.finos.legend.pure</groupId>
<artifactId>legend-pure-maven-generation-par</artifactId>
Expand Down

0 comments on commit 0f763c6

Please sign in to comment.