From c819238eac40c6c90cf5be5c85510f1bc002c56d Mon Sep 17 00:00:00 2001 From: Zachary Bischoff <116595361+bischoffz@users.noreply.github.com> Date: Sat, 3 Feb 2024 20:44:38 -0500 Subject: [PATCH] Create dependabot.yml --- .github/dependabot.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..8cfc936 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,26 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + - package-ecosystem: "maven" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "weekly" + target-branch: "dev" + open-pull-requests-limit: 10 + groups: + standard-plugins: + patterns: + - "org.codehaus.mojo:flatten-maven-plugin" + - "org.apache.maven.plugins*" + dependencies: + patterns: + - "org.apache.commons:commons-math3" + - "net.jcip:jcip-annotations" + test-dependencies: + patterns: + - "org.jacoco*" + - "org.junit.jupiter*"