-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Run with Java 25 #2538
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
base: main
Are you sure you want to change the base?
Run with Java 25 #2538
Changes from all commits
5233ae7
d11914c
edbbd36
728021b
cd0ab9e
aeb2769
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -75,6 +75,8 @@ | |
| <hamcrest.jpa-matchers>1.8</hamcrest.jpa-matchers> | ||
| <lambdaj.version>2.3.3</lambdaj.version> | ||
| <mockito.version>3.3.0</mockito.version> | ||
|
|
||
| <immutables.version>2.10.1</immutables.version> | ||
|
|
||
|
|
||
| <maven-jar-plugin.version>3.0.2</maven-jar-plugin.version> | ||
|
|
@@ -147,6 +149,18 @@ | |
| <debug>${jdk.debug}</debug> | ||
| <optimize>${jdk.optimize}</optimize> | ||
| <parameters>true</parameters> | ||
| <annotationProcessorPaths> | ||
| <path> | ||
| <groupId>org.immutables</groupId> | ||
| <artifactId>value</artifactId> | ||
| <version>${immutables.version}</version> | ||
| </path> | ||
eddumelendez marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| <path> | ||
| <groupId>org.projectlombok</groupId> | ||
| <artifactId>lombok</artifactId> | ||
| <version>${lombok.version}</version> | ||
| </path> | ||
|
Comment on lines
+158
to
+162
|
||
| </annotationProcessorPaths> | ||
| </configuration> | ||
| </plugin> | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There’s trailing whitespace on this otherwise blank line; please remove it to keep the POM clean and avoid noisy diffs.