-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update various dependencies patch versions
This commit updates various dependencies to the latest patch versions as follows: - spring-boot to 3.1.12 - spring-framework to 6.0.21 - spring-integration-aws to 3.0.2 - spring-cloud to 2022.0.5 - spring-cloud-aws to 3.0.2 - spring-kafka to 6.0.21 - spring-amqp to 3.0.14 - org.apache.sshd:sshd-sftp to 2.9.3 The AwsS3ConsumerTests are also adjusted as they broke with the dependency updates. * Add script to delete all apps This adds a convenience script that deletes all of the generated /apps directories. Useful for local development. * Update to apps plugin 1.0.14 The previous apps plugin 1.0.10 seeds the apps with Maven 3.5.6 which has issues w/ the current install plugin. The 1.0.14 plugin seeds the apps with Maven 3.8.8 which works well. * Update SCS and java-cfenv versions (2022.0.x) This updates the SCS starter to v4.0.5 and java-cfenv-boot version to v3.2.0 to properly support Boot 3.1.x. See #550
- Loading branch information
Showing
11 changed files
with
72 additions
and
62 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
echo "About to delete the following 'apps' folders:" | ||
find . -type d -name apps | ||
echo "----------------" | ||
echo "Enter 'Y' or 'N':" | ||
read shouldDelete | ||
if [ "$shouldDelete" = "Y" ] || [ "$shouldDelete" = "y" ]; then | ||
echo "Deleting..." | ||
find . -type d -name apps -prune -exec rm -rf {} \; | ||
echo "Done" | ||
else | ||
echo "Not deleting" | ||
fi |
This file contains 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 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 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 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 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