-
Notifications
You must be signed in to change notification settings - Fork 0
S219 : prep next version #93
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 2 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 |
|---|---|---|
|
|
@@ -17,7 +17,7 @@ jobs: | |
| - uses: actions/setup-java@v4 | ||
| with: | ||
| distribution: 'adopt' | ||
| java-version: '17' # maven won't accept --release argument with java < 8; and 11 is next LTS | ||
| java-version: '21' # maven won't accept --release argument with java < 8; and 11 is next LTS | ||
| - id: 'read-cache-maven-packages' | ||
| name: Read Cached Maven packages | ||
| uses: actions/cache@v4 | ||
|
|
@@ -56,7 +56,7 @@ jobs: | |
| - uses: actions/setup-java@v4 | ||
| with: | ||
| distribution: 'adopt' | ||
| java-version: '17' # maven won't accept --release argument with java < 8; and 11 is next LTS | ||
| java-version: '21' # maven won't accept --release argument with java < 8; and 11 is next LTS | ||
|
Comment on lines
58
to
+59
|
||
| - id: 'read-cache-maven-packages' | ||
| name: Read Cached Maven packages | ||
| uses: actions/cache@v4 | ||
|
|
||
This file was deleted.
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -17,7 +17,7 @@ | |||||||
| </license> | ||||||||
| </licenses> | ||||||||
| <properties> | ||||||||
| <revision>0.3+worklytics.12</revision> | ||||||||
| <revision>0.3+worklytics.13</revision> | ||||||||
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||||||||
| <jackson.version>[2.18.2, 2.18.3)</jackson.version> <!-- 2.18.2+ (stable) --> | ||||||||
| <dagger.version>2.55</dagger.version> <!-- 2.55+ adds support for injecting jakarta.inject.Provider --> | ||||||||
|
|
@@ -41,9 +41,8 @@ | |||||||
| <artifactId>maven-compiler-plugin</artifactId> | ||||||||
| <version>3.13.0</version> | ||||||||
| <configuration> | ||||||||
| <source>17</source> | ||||||||
| <target>17</target> | ||||||||
|
|
||||||||
| <source>21</source> | ||||||||
| <target>21</target> | ||||||||
|
Comment on lines
+44
to
+45
|
||||||||
| <source>21</source> | |
| <target>21</target> | |
| <release>21</release> |
Copilot
AI
Feb 25, 2026
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.
PR description mentions "new mvn plugins", but the only Maven-related change in this diff is updating compiler source/target to 21. If additional plugin updates were intended, they may be missing from the PR description or from the actual changes—please align the description with what’s being shipped.
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.
The inline comment about the Java version is outdated/misleading now that this is set to 21 (e.g., it mentions Java 11 being the next LTS and discusses
--release, which this workflow doesn't use). Please update or remove the comment to reflect the current setup.