Skip to content

Commit

Permalink
ci: unbreak show-spring-boot-version-diff.sh script by pinning Spring…
Browse files Browse the repository at this point in the history
… Boot version

Relate to #1632
  • Loading branch information
php-coder committed Jan 2, 2024
1 parent 42c0a2e commit e8ffaac
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/scripts/show-spring-boot-version-diff.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ set -o pipefail

CURRENT_DIR="$(dirname "$0")"
PROJECT_POM="$CURRENT_DIR/../../../pom.xml"
SPRING_VERSION="$(grep -FA1 '<artifactId>spring-boot-starter-parent' "$PROJECT_POM" | awk -F'[<>]' '/<version>/{print $3}')"

SPRING_VERSION='2.2.13.RELEASE'
#SPRING_VERSION="$(grep -FA1 '<artifactId>spring-boot-starter-parent' "$PROJECT_POM" | awk -F'[<>]' '/<version>/{print $3}')"

# @todo #869 show-spring-boot-version-diff.sh: properly handle recursive properties
SPRING_POM="https://raw.githubusercontent.com/spring-projects/spring-boot/v$SPRING_VERSION/spring-boot-project/spring-boot-dependencies/pom.xml"
Expand Down

0 comments on commit e8ffaac

Please sign in to comment.