From 33dcbdcbbc5405103fd049edb7091622ecd0778a Mon Sep 17 00:00:00 2001 From: Robert McNees Date: Thu, 1 Aug 2024 07:55:45 -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 | 4 ++-- complete/build.gradle | 3 ++- initial/build.gradle | 3 ++- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 121adfc4..e440161a 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" @@ -29,4 +29,4 @@ updates: groups: guide-dependencies-gradle: patterns: - - "*" + - "*" \ No newline at end of file diff --git a/complete/build.gradle b/complete/build.gradle index eac89a1b..8dc9bff0 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 eac89a1b..8dc9bff0 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'