Skip to content

Commit

Permalink
Try to make things work. They don't. :-(
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Jan 11, 2025
1 parent 50274e8 commit 8fbbb86
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,10 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>--add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED</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>
</configuration>
</plugin>
</plugins>
Expand Down
5 changes: 5 additions & 0 deletions src/test/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@

// // Actual Test dependencies

// Guava testlib needed by CLMH tests, alas; brings in junit4
requires guava.testlib;
// JUnit4 should NOT be needed but is transitively required
requires junit;
requires org.assertj.core;
requires org.mockito;
requires org.junit.jupiter.api;
requires org.junit.jupiter.params;

Expand Down Expand Up @@ -61,6 +65,7 @@
opens tools.jackson.databind.ext.jdk8;
opens tools.jackson.databind.ext.jdk9;
opens tools.jackson.databind.ext.jdk17;
opens tools.jackson.databind.ext.sql;
opens tools.jackson.databind.format;
opens tools.jackson.databind.interop;
opens tools.jackson.databind.jsonschema;
Expand Down

0 comments on commit 8fbbb86

Please sign in to comment.