Skip to content

Instantly share code, notes, and snippets.

View Ranjith-Suranga's full-sized avatar

Ranjith Suranga Ranjith-Suranga

  • Institute of Software Engineering
  • Sri Lanka
View GitHub Profile
@Ranjith-Suranga
Ranjith-Suranga / download-latest-spring-framework.sh
Last active September 10, 2023 17:36
Download the Latest Spring Framework
# D M R Suranga <suranga@ijse.lk> (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}')