-
Notifications
You must be signed in to change notification settings - Fork 0
ACC-2461-update-appserver-to-Spring-boot-4 #215
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
Open
matteo-hlvt
wants to merge
19
commits into
main
Choose a base branch
from
ACC-2461-update-appserver-to-Spring-boot-4
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
ff9c074
[ACC-2461] Update to spring boot v4.0.0
matteo-hlvt eabf6a9
[ACC-2461] Update imports
matteo-hlvt 05b6c71
[ACC-2461] Update imports
matteo-hlvt c10727d
[ACC-2461] Update imports
matteo-hlvt a2d8c82
[ACC-2461] Update imports
matteo-hlvt 4524caf
[ACC-2461] Update imports
matteo-hlvt 8063400
[ACC-2461] Removed commented imports
matteo-hlvt b849f2b
[ACC-2461] Updated Autoconfigrebean for TestRestTemplate
matteo-hlvt 26ce6f9
[ACC-2461] Switched from TestRestTemplate to RestTestClient
matteo-hlvt 81de589
[ACC-2461] Remove HypermediaMappingInformation.configureObjectMapper …
matteo-hlvt b33375c
[ACC-2461] HttpHeaders.containsKey got removed, instead use .contains…
matteo-hlvt 110874d
[ACC-2461] Switch to new Testcontainer classes
matteo-hlvt dd49945
[ACC-2461] Remove throw exception to use new HttpSecurity init signature
matteo-hlvt 03fcd93
[ACC-2461] replace deprecated ServletWebServerFactoryAutoConfiguration
matteo-hlvt 34d5e69
[ACC-2461] adapt MediaTypeConfiguration to align with MockMvc API cha…
matteo-hlvt 1d3721c
[ACC-2461] Update postgresql test containers
matteo-hlvt c60cebd
[ACC-2461] Update fly way runtime dependecies
matteo-hlvt a0b695f
[ACC-2461] switch away from deprecated HttpMessageConverters approach
matteo-hlvt 94e8a2e
Revert "[ACC-2461] switch away from deprecated HttpMessageConverters …
matteo-hlvt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,6 +6,10 @@ plugins { | |
|
|
||
| dependencies { | ||
| implementation 'org.springframework.boot:spring-boot-autoconfigure' | ||
| implementation 'org.springframework.boot:spring-boot-http-converter' | ||
| implementation 'org.springframework.boot:spring-boot-flyway' | ||
| implementation 'org.springframework.boot:spring-boot-jooq' | ||
| implementation 'org.springframework.boot:spring-boot-security' | ||
| implementation 'com.contentgrid.thunx:thunx-autoconfigure' | ||
|
|
||
| compileOnly project(':contentgrid-appserver-application-model') | ||
|
|
@@ -62,6 +66,8 @@ dependencies { | |
| testImplementation 'com.contentgrid.thunx:thunx-spring-api' | ||
| testRuntimeOnly 'org.springframework:spring-webflux' | ||
|
|
||
| runtimeOnly 'org.flywaydb:flyway-database-postgresql' | ||
|
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. Make it testRuntimeOnly. Might be even removed if the tests work without. |
||
|
|
||
| testImplementation 'io.minio:minio' | ||
| testImplementation 'org.springframework.hateoas:spring-hateoas' | ||
| } | ||
|
|
||
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
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
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
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
So autoconfigurations are moved to new projects? If it is not for the autoconfigurations, it might be
compileOnly.