Skip to content

Commit ac16933

Browse files
authored
Merge branch 'master' into fix-fallible-providers
2 parents 59293f9 + 7670e95 commit ac16933

File tree

3 files changed

+25
-1
lines changed

3 files changed

+25
-1
lines changed

.github/dependabot.yml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,23 @@ updates:
33
- package-ecosystem: maven
44
directory: "/"
55
schedule:
6-
interval: "daily"
6+
interval: "weekly"
77
open-pull-requests-limit: 10
88
ignore:
99
- dependency-name: "jakarta.inject:jakarta.inject-api"
10+
groups:
11+
dev-deps:
12+
dependency-type: "development"
13+
prod-deps:
14+
dependency-type: "production"
15+
16+
- package-ecosystem: "github-actions"
17+
directory: "/"
18+
schedule:
19+
interval: "weekly"
20+
open-pull-requests-limit: 5
21+
commit-message:
22+
prefix: "[workflow]"
23+
labels:
24+
- "dependencies"
25+
target-branch: "master"

blackbox-test-inject/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,13 @@
100100
</execution>
101101
</executions>
102102
</plugin>
103+
<plugin>
104+
<groupId>org.apache.maven.plugins</groupId>
105+
<artifactId>maven-surefire-plugin</artifactId>
106+
<configuration>
107+
<argLine>-XX:+EnableDynamicAgentLoading -Dnet.bytebuddy.experimental=true</argLine>
108+
</configuration>
109+
</plugin>
103110
<plugin>
104111
<groupId>org.apache.maven.plugins</groupId>
105112
<artifactId>maven-compiler-plugin</artifactId>

inject-test/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@
146146
<artifactId>maven-surefire-plugin</artifactId>
147147
<configuration>
148148
<useModulePath>false</useModulePath>
149+
<argLine>-XX:+EnableDynamicAgentLoading -Dnet.bytebuddy.experimental=true</argLine>
149150
</configuration>
150151
</plugin>
151152
</plugins>

0 commit comments

Comments
 (0)