We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42c0a2e commit e8ffaacCopy full SHA for e8ffaac
src/main/scripts/show-spring-boot-version-diff.sh
@@ -13,7 +13,9 @@ set -o pipefail
13
14
CURRENT_DIR="$(dirname "$0")"
15
PROJECT_POM="$CURRENT_DIR/../../../pom.xml"
16
-SPRING_VERSION="$(grep -FA1 '<artifactId>spring-boot-starter-parent' "$PROJECT_POM" | awk -F'[<>]' '/<version>/{print $3}')"
+
17
+SPRING_VERSION='2.2.13.RELEASE'
18
+#SPRING_VERSION="$(grep -FA1 '<artifactId>spring-boot-starter-parent' "$PROJECT_POM" | awk -F'[<>]' '/<version>/{print $3}')"
19
20
# @todo #869 show-spring-boot-version-diff.sh: properly handle recursive properties
21
SPRING_POM="https://raw.githubusercontent.com/spring-projects/spring-boot/v$SPRING_VERSION/spring-boot-project/spring-boot-dependencies/pom.xml"
0 commit comments