-
Notifications
You must be signed in to change notification settings - Fork 571
Add Spring Boot 4.0 support with working samples #1585
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
base: main
Are you sure you want to change the base?
Conversation
bnusunny
left a comment
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.
Looks good overall. Please check the two comments I left.
d7dd038 to
52fedb7
Compare
80b787b to
a5a34b5
Compare
a5a34b5 to
b83323f
Compare
| <dependency> | ||
| <groupId>com.amazonaws.serverless</groupId> | ||
| <artifactId>aws-serverless-java-container-core</artifactId> | ||
| <version>${project.version}</version> |
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.
I don't know how this worked, but if it was this sort of variable ${project.version} we might want to keep it like that, so it's easier in the future to update? (unless there's a reason to not do it, and it should be mentioned in the PR description)
(same in other pom.xml files).
| <dependency> | ||
| <groupId>com.amazonaws.serverless</groupId> | ||
| <artifactId>aws-serverless-java-container-core</artifactId> | ||
| <version>3.0.0-SNAPSHOT</version> |
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.
We should use ${project.version} here
| <dependency> | ||
| <groupId>com.amazonaws.serverless</groupId> | ||
| <artifactId>aws-serverless-java-container-core</artifactId> | ||
| <version>3.0.0-SNAPSHOT</version> |
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.
same here. use ${project.version}
| <dependency> | ||
| <groupId>com.amazonaws.serverless</groupId> | ||
| <artifactId>aws-serverless-java-container-springboot4</artifactId> | ||
| <version>[2.0.0-SNAPSHOT,),[2.0.0-M1,)</version> |
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 version range is not right. Should be [3.0.0-SNAPSHOT,)
| <artifactId>aws-serverless-java-container-springboot4</artifactId> | ||
| <version>[2.0.0-SNAPSHOT,),[2.0.0-M1,)</version> | ||
| </dependency> | ||
| <!-- Add Jackson 2.x for core library compatibility --> |
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.
Do we still need this lib? Core lib requires Jackson 3.x now.
Issue #, if available:
Description of changes:
${project.version}variable in archetype pom files in favor of explicit versioningBy submitting this pull request