diff --git a/s/spring-boot/build_info.json b/s/spring-boot/build_info.json index b18ce89569..93344ddcc9 100644 --- a/s/spring-boot/build_info.json +++ b/s/spring-boot/build_info.json @@ -2,7 +2,7 @@ "maintainer": "sid226", "package_name": "spring-boot", "github_url": "https://github.com/spring-projects/spring-boot", - "version": "v3.3.3", + "version": "v4.0.1", "default_branch": "main", "package_dir": "s/spring-boot/", "build_script": "springboot_ubi_9.3.sh", diff --git a/s/spring-boot/springboot_ubi_9.3.sh b/s/spring-boot/springboot_ubi_9.3.sh index 45240932f6..b4529c82c6 100644 --- a/s/spring-boot/springboot_ubi_9.3.sh +++ b/s/spring-boot/springboot_ubi_9.3.sh @@ -2,7 +2,7 @@ # ---------------------------------------------------------------------------- # # Package : spring-boot -# Version : v4.0.0 +# Version : v4.0.1 # Source repo : https://github.com/spring-projects/spring-boot # Tested on : UBI 9.3 # Language : Java @@ -22,7 +22,7 @@ set -e PACKAGE_NAME=spring-boot PACKAGE_URL=https://github.com/spring-projects/spring-boot -PACKAGE_VERSION=${1:-v4.0.0} +PACKAGE_VERSION=${1:-v4.0.1} yum install git wget -y git clone $PACKAGE_URL @@ -34,16 +34,14 @@ export JAVA_HOME=/usr/lib/jvm/java-25-openjdk export PATH=$JAVA_HOME/bin:$PATH -# skipping the architecture check in spring-boot-docs. -if ! ./gradlew build -x :documentation:spring-boot-docs:checkArchitectureMain ; then +if ! ./gradlew build ; then echo "------------------$PACKAGE_NAME:Build_fails---------------------" echo "$PACKAGE_URL $PACKAGE_NAME" echo "$PACKAGE_NAME | $PACKAGE_URL | $PACKAGE_VERSION | $OS_NAME | GitHub | Fail | Build_Fails" exit 1 fi -# skipping the architecture check in spring-boot-docs. -if ! ./gradlew test -x :documentation:spring-boot-docs:checkArchitectureMain ; then +if ! ./gradlew test ; then echo "------------------$PACKAGE_NAME::Build_and_Test_fails-------------------------" echo "$PACKAGE_URL $PACKAGE_NAME" echo "$PACKAGE_NAME | $PACKAGE_URL | $PACKAGE_VERSION | $OS_NAME | GitHub | Fail| Build_and_Test_fails"