Upgrade genie-agent and genie-web to Spring Boot 3#1225
Draft
Upgrade genie-agent and genie-web to Spring Boot 3#1225
Conversation
…ependencies: 3.2.1
genie-agent-app/build.gradle
Outdated
|
|
||
| dependencyManagement { | ||
| imports { | ||
| mavenBom "com.amazonaws:aws-java-sdk-bom:1.12.99" |
Contributor
There was a problem hiding this comment.
com.amazonaws is AWS SDK V1 and with Amazon's announcement of end-of-support for AWS SDK for Java v1.x you'll have to move to V2 eventually
(jFYI, both V1 and V2 will continue being supported with upgrade to Spring Boot for now)
| *******************************/ | ||
|
|
||
| implementation("io.grpc:grpc-netty") | ||
| implementation("io.awspring.cloud:spring-cloud-starter-aws") |
Contributor
There was a problem hiding this comment.
you sure this is safe to drop? for reference, Spring Cloud 3 starter name is io.awspring.cloud:spring-cloud-aws-starter
genie-agent-app/build.gradle
Outdated
| dependencyManagement { | ||
| imports { | ||
| mavenBom "com.amazonaws:aws-java-sdk-bom:1.12.99" | ||
| mavenBom "io.awspring.cloud:spring-cloud-aws-dependencies:3.2.1" |
Contributor
There was a problem hiding this comment.
you should also
- update Spring Boot version in https://github.com/Netflix/genie/blob/master/gradle.properties#L23-L24
- either reuse that
spring_cloud_versionvar or remove it - Spring Boot 3 integrates with flyway 10: https://github.com/Netflix/genie/blob/master/gradle.properties#L30, check if you can use Spring Boot BOM recommendation instead of hardcoded version
c9d6848 to
b6560c9
Compare
4fe4941 to
a12dc33
Compare
a12dc33 to
df46c7c
Compare
79a96c9 to
f1393c1
Compare
f1393c1 to
1a6f304
Compare
added 6 commits
February 21, 2025 12:11
…g packages of TaskExecutorCustomizer and TaskSchedulerCustomizer
aadda32 to
baec8ab
Compare
added 3 commits
March 4, 2025 21:51
…onStageSpec caused by the change of Path type and File type
…TestCommands of GenieAgentApplication
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.