From 45c07b03e291355f1b66ee81ec107ad43548b4f0 Mon Sep 17 00:00:00 2001 From: Jochen Schalanda Date: Sun, 21 Nov 2021 22:17:40 +0100 Subject: [PATCH] Ignore Maven dependencies in Dependabot (#290) Refs #282 Refs #284 Refs #288 Refs #289 --- .github/dependabot.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7957476d..00d65a52 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,7 +4,11 @@ updates: directory: "/" schedule: interval: "daily" + ignore: + - dependency-name: "org.apache.maven:maven-core" + - dependency-name: "org.apache.maven:maven-plugin-api" + - dependency-name: "org.apache.maven.plugin-tools:maven-plugin-annotations" - package-ecosystem: "github-actions" directory: "/" schedule: - interval: "daily" \ No newline at end of file + interval: "daily"