Skip to content

Commit

Permalink
fix ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
diegomarquezp committed Nov 20, 2024
1 parent a9a5959 commit 58a261d
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -229,13 +229,24 @@
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<configuration>
<ignoredDependencies>
<!--We ignore threeten because its usage has been migrated to java.time and there are no public methods-->
<!--exposing this class-->
<ignoredDependency>org.threeten:threetenbp</ignoredDependency>
</ignoredDependencies>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profiles>
<profile>
<id>native</id>
<properties>
<!-- Skip native image tests that use mocking libs to avoid loading classes at runtime. -->
<!-- Skip native image tests that use mocking libs to avoid loading classes at runtime. -->
<test>!LoggingAppenderTest</test>
</properties>
</profile>
Expand Down

0 comments on commit 58a261d

Please sign in to comment.