-
Notifications
You must be signed in to change notification settings - Fork 173
Bump basepom to 65.1 #1266
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
Bump basepom to 65.1 #1266
Changes from all commits
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 |
|---|---|---|
|
|
@@ -5,7 +5,7 @@ | |
| <parent> | ||
| <groupId>com.hubspot</groupId> | ||
| <artifactId>basepom</artifactId> | ||
| <version>63.4</version> | ||
| <version>65.1</version> | ||
| </parent> | ||
|
|
||
| <groupId>com.hubspot.jinjava</groupId> | ||
|
|
@@ -17,12 +17,12 @@ | |
|
|
||
| <properties> | ||
| <project.build.targetJdk>17</project.build.targetJdk> | ||
| <project.build.releaseJdk>17</project.build.releaseJdk> | ||
|
|
||
| <dep.plugin.jacoco.version>0.8.3</dep.plugin.jacoco.version> | ||
| <dep.plugin.javadoc.version>3.0.1</dep.plugin.javadoc.version> | ||
| <dep.hubspot-immutables.version>1.9</dep.hubspot-immutables.version> | ||
| <dep.algebra.version>1.5</dep.algebra.version> | ||
| <dep.mockito.version>5.20.0</dep.mockito.version> | ||
|
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 bump is required to upgrade to a version of Byte Buddy that understands Java 25 class files. |
||
|
|
||
|
|
||
| <basepom.test.add.opens> | ||
|
|
@@ -181,6 +181,10 @@ | |
| <groupId>ch.obermuhlner</groupId> | ||
| <artifactId>big-math</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.google.errorprone</groupId> | ||
| <artifactId>error_prone_annotations</artifactId> | ||
| </dependency> | ||
|
Comment on lines
+184
to
+187
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. Some of these annotations (like |
||
|
|
||
| <dependency> | ||
| <groupId>ch.qos.logback</groupId> | ||
|
|
@@ -336,6 +340,18 @@ | |
| <argLine>@{argLine} ${basepom.test.add.opens}</argLine> | ||
| </configuration> | ||
| </plugin> | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-compiler-plugin</artifactId> | ||
| <configuration> | ||
| <annotationProcessorPaths> | ||
| <path> | ||
| <groupId>org.immutables</groupId> | ||
| <artifactId>value</artifactId> | ||
| </path> | ||
| </annotationProcessorPaths> | ||
|
Comment on lines
+347
to
+352
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. Java 25 requires that we explicitly enable annotation processing. I chose to do that here by manually specifying the Immutables processor. |
||
| </configuration> | ||
| </plugin> | ||
| </plugins> | ||
| </build> | ||
|
|
||
|
|
||
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.
This property sets the JDK toolchain-aware plugins, like
maven-compiler-pluginandmaven-surefire-plugin, use for their forked JVMs.