From 7673862b5185ba60b89f6d17a26be9126f433101 Mon Sep 17 00:00:00 2001 From: Robert McNees Date: Fri, 2 Aug 2024 08:00:22 -0400 Subject: [PATCH] Update dependabot and Gradle files This commit changes the dependency-management plugin in Gradle build files so that the version number is not set excplicitly but rather managed by Boot. --- .github/dependabot.yml | 2 +- complete/build.gradle | 3 ++- initial/build.gradle | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 121adfc..3a7b504 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -21,7 +21,7 @@ updates: - "/initial" - "/complete" ignore: - - dependency-name: "org.springframework.*" + - dependency-name: "*" update-types: ["version-update:semver-patch"] schedule: interval: "monthly" diff --git a/complete/build.gradle b/complete/build.gradle index 4247156..422ab16 100644 --- a/complete/build.gradle +++ b/complete/build.gradle @@ -1,9 +1,10 @@ plugins { id 'org.springframework.boot' version '3.3.0' - id 'io.spring.dependency-management' version '1.1.5' id 'java' } +apply plugin: 'io.spring.dependency-management' + group = 'com.example' version = '0.0.1-SNAPSHOT' sourceCompatibility = '17' diff --git a/initial/build.gradle b/initial/build.gradle index d71c1e5..3a20113 100644 --- a/initial/build.gradle +++ b/initial/build.gradle @@ -1,9 +1,10 @@ plugins { id 'org.springframework.boot' version '3.3.0' - id 'io.spring.dependency-management' version '1.1.5' id 'java' } +apply plugin: 'io.spring.dependency-management' + group = 'com.example' version = '0.0.1-SNAPSHOT' sourceCompatibility = '17'