Skip to content

Commit

Permalink
Merge pull request #534 from SentryMan/jdk23
Browse files Browse the repository at this point in the history
Support JDK 23-EA
  • Loading branch information
SentryMan authored Apr 9, 2024
2 parents a0b2a63 + e739c62 commit 7670e95
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,23 @@ updates:
- package-ecosystem: maven
directory: "/"
schedule:
interval: "daily"
interval: "weekly"
open-pull-requests-limit: 10
ignore:
- dependency-name: "jakarta.inject:jakarta.inject-api"
groups:
dev-deps:
dependency-type: "development"
prod-deps:
dependency-type: "production"

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 5
commit-message:
prefix: "[workflow]"
labels:
- "dependencies"
target-branch: "master"
7 changes: 7 additions & 0 deletions blackbox-test-inject/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,13 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>-XX:+EnableDynamicAgentLoading -Dnet.bytebuddy.experimental=true</argLine>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
Expand Down
1 change: 1 addition & 0 deletions inject-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<useModulePath>false</useModulePath>
<argLine>-XX:+EnableDynamicAgentLoading -Dnet.bytebuddy.experimental=true</argLine>
</configuration>
</plugin>
</plugins>
Expand Down

0 comments on commit 7670e95

Please sign in to comment.