Skip to content

Commit e8ffaac

Browse files
committed
ci: unbreak show-spring-boot-version-diff.sh script by pinning Spring Boot version
Relate to #1632
1 parent 42c0a2e commit e8ffaac

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/scripts/show-spring-boot-version-diff.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ set -o pipefail
1313

1414
CURRENT_DIR="$(dirname "$0")"
1515
PROJECT_POM="$CURRENT_DIR/../../../pom.xml"
16-
SPRING_VERSION="$(grep -FA1 '<artifactId>spring-boot-starter-parent' "$PROJECT_POM" | awk -F'[<>]' '/<version>/{print $3}')"
16+
17+
SPRING_VERSION='2.2.13.RELEASE'
18+
#SPRING_VERSION="$(grep -FA1 '<artifactId>spring-boot-starter-parent' "$PROJECT_POM" | awk -F'[<>]' '/<version>/{print $3}')"
1719

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

0 commit comments

Comments
 (0)