-
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 all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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 --> | ||||||||
|
|
@@ -39,18 +39,31 @@ | |||||||
| <plugin> | ||||||||
| <groupId>org.apache.maven.plugins</groupId> | ||||||||
| <artifactId>maven-compiler-plugin</artifactId> | ||||||||
| <version>3.13.0</version> | ||||||||
| <version>3.15.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> |
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.