-
Notifications
You must be signed in to change notification settings - Fork 620
/
Copy pathdependabot.yml
28 lines (25 loc) · 1.01 KB
/
dependabot.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2
updates:
# Maintain dependencies for maven
- package-ecosystem: "maven"
directory: "/"
schedule:
interval: "weekly"
ignore:
# The 2.0.0 release is the first release under the jakarta.activation.* namespace
- dependency-name: "jakarta.activation:jakarta.activation-api"
versions: [">=2.0.0"]
# The 3.0.0 release is the first release under the jakarta.xml.bind.* namespace
- dependency-name: "jakarta.xml.bind:jakarta.xml.bind-api"
versions: [">=3.0.0"]
# Provided by the web container, so aligned with Jetty
- dependency-name: "javax.servlet:javax.servlet-api"
# Newer versions require code changes
- dependency-name: "org.jboss.resteasy:resteasy-client"
versions: [">=4.0.0"]
# Maintain dependencies for GitHub actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"