-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Support Java 25 for build, test, and Docker publishing #13671
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
Changes from all commits
c4f091a
0393f23
8dee778
3e8477c
dc065cf
8eb19c9
8d72c3c
78fbec2
1e7e24b
c8a1da6
a6d29af
472dafe
f903c40
b341153
7374f25
ab544f7
48eb536
095bea1
a2df108
11a1dc5
fc9ad39
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 |
|---|---|---|
|
|
@@ -159,10 +159,10 @@ | |
| <powermock.version>2.0.9</powermock.version> | ||
| <checkstyle.version>6.18</checkstyle.version> | ||
| <junit.version>5.9.2</junit.version> | ||
| <mockito-core.version>4.11.0</mockito-core.version> | ||
| <mockito-core.version>5.11.0</mockito-core.version> | ||
| <system-stubs.version>2.1.4</system-stubs.version> | ||
| <lombok.version>1.18.30</lombok.version> | ||
| <byte-buddy.version>1.14.9</byte-buddy.version> | ||
| <lombok.version>1.18.40</lombok.version> | ||
| <byte-buddy.version>1.17.0</byte-buddy.version> | ||
|
|
||
| <!-- core lib dependency --> | ||
| <grpc.version>1.70.0</grpc.version> | ||
|
|
@@ -221,11 +221,6 @@ | |
| <artifactId>mockito-core</artifactId> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.mockito</groupId> | ||
| <artifactId>mockito-inline</artifactId> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.mockito</groupId> | ||
| <artifactId>mockito-junit-jupiter</artifactId> | ||
|
|
@@ -279,12 +274,6 @@ | |
| <version>${mockito-core.version}</version> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.mockito</groupId> | ||
| <artifactId>mockito-inline</artifactId> | ||
| <version>${mockito-core.version}</version> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.mockito</groupId> | ||
| <artifactId>mockito-junit-jupiter</artifactId> | ||
|
|
@@ -374,6 +363,20 @@ | |
| <build> | ||
| <pluginManagement> | ||
| <plugins> | ||
| <plugin> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why is this added?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is added to enable Lombok annotation processing explicitly. Without it, the E2E Java test service fails to compile under JDK 25 (missing Lombok-generated methods like builder()), while older JDKs work implicitly. This keeps the behavior consistent across JDK versions. |
||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-compiler-plugin</artifactId> | ||
| <version>3.13.0</version> | ||
| <configuration> | ||
| <annotationProcessorPaths> | ||
| <path> | ||
| <groupId>org.projectlombok</groupId> | ||
| <artifactId>lombok</artifactId> | ||
| <version>${lombok.version}</version> | ||
| </path> | ||
| </annotationProcessorPaths> | ||
| </configuration> | ||
| </plugin> | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-failsafe-plugin</artifactId> | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.