Skip to content

Commit

Permalink
Try to resolve issues...
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Jan 10, 2025
1 parent 63d9db6 commit ac9706f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,10 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<!-- Needed by some of the tests -->
<argLine>--add-opens=java.base/java.lang=tools.jackson.databind --add-opens=java.base/java.util=tools.jackson.databind</argLine>
<argLine>--add-opens=java.base/java.lang=tools.jackson.databind
--add-opens=java.base/java.util=tools.jackson.databind
--add-opens=java.sql/java.sql=tools.jackson.databind
</argLine>
<classpathDependencyExcludes>
<exclude>javax.measure:jsr-275</exclude>
</classpathDependencyExcludes>
Expand Down
6 changes: 3 additions & 3 deletions src/test/java/module-info.java
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Jackson 3.x module-info for Tests
module tools.jackson.databind {
requires static java.desktop;
requires static java.sql;
requires static java.sql.rowset;
requires java.desktop;
requires java.sql;
requires java.sql.rowset;
requires java.xml;

// but we probably do want to expose streaming, annotations
Expand Down

0 comments on commit ac9706f

Please sign in to comment.