-
Notifications
You must be signed in to change notification settings - Fork 9
Upgrade to Java 21 #305
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
Upgrade to Java 21 #305
Changes from 5 commits
366e61e
afd79bb
ced31ba
644427f
154d598
d13b7ad
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 |
|---|---|---|
| @@ -1,4 +1,3 @@ | ||
| version: '3.8' | ||
| services: | ||
| integration-adaptor-111: | ||
| build: | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,6 +13,11 @@ apply plugin: 'org.springframework.boot' | |
| apply plugin: 'checkstyle' | ||
| apply plugin: "com.github.spotbugs" | ||
|
|
||
| java { | ||
| sourceCompatibility = JavaVersion.VERSION_21 | ||
| targetCompatibility = JavaVersion.VERSION_21 | ||
| } | ||
|
Comment on lines
+16
to
+19
Contributor
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. You'll have to explain what these do. They weren't there before, so I can only assume they're important?
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 just to make sure that we are using Java 21 in case when there are any other Java versions installed on any env where this project is run. It is just to avoid ambiguity |
||
|
|
||
| repositories { | ||
| mavenCentral() | ||
| flatDir { | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.