Add some dependabot ignores (#7108)

This commit is contained in:
Trask Stalnaker 2022-11-08 13:45:29 -08:00 committed by GitHub
parent d40377bbd7
commit 7071bc2bd0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 0 deletions

View File

@ -34,6 +34,13 @@ updates:
# need to scope gradle dependency updates down in this repo because most of the instrumentations
# intentionally test against old library versions
directory: "/examples/distro"
ignore:
- dependency-name: "javax.servlet:javax.servlet-api"
# examples are intentionally compiled and tested against Servlet 3.0
versions: [ "[3.1,)" ]
- dependency-name: "org.eclipse.jetty:jetty-servlet"
# examples are intentionally compiled and tested against Servlet 3.0
versions: [ "[9.0,)" ]
rebase-strategy: "disabled"
schedule:
interval: "daily"
@ -43,6 +50,13 @@ updates:
# need to scope gradle dependency updates down in this repo because most of the instrumentations
# intentionally test against old library versions
directory: "/examples/extension"
ignore:
- dependency-name: "javax.servlet:javax.servlet-api"
# examples are intentionally compiled and tested against Servlet 3.0
versions: [ "[3.1,)" ]
- dependency-name: "org.eclipse.jetty:jetty-servlet"
# examples are intentionally compiled and tested against Servlet 3.0
versions: [ "[9.0,)" ]
rebase-strategy: "disabled"
schedule:
interval: "daily"