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
# D M R Suranga <[email protected]> (https://ijse.lk) | |
# Download the file | |
# Open the terminal and set the execute permission to the file (chmod 766 download-latest-spring-framework.sh) | |
# Execute the file (./download-latest-spring-framework.sh) | |
#! /usr/bin/bash | |
wget -O maven-metadata.xml https://repo1.maven.org/maven2/org/springframework/spring-framework-bom/maven-metadata.xml | |
VERSION=$(cat maven-metadata.xml | grep "latest" | awk -F'[<>]' '/<latest>/{print $3}') |