Skip to content

feat: introduce java.time #1410

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Nov 26, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix ignore
  • Loading branch information
diegomarquezp committed Nov 20, 2024
commit 58a261d0852b7b6a311e49bbd36521ae2d55b9a5
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
Loading