--
You received this message because you are subscribed to the Google Groups "dropwizard-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dropwizard-de...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
apiTest {jvmArgs += ["--add-modules", "java.sql.Time"]}
We are instantiating DropwizardTestSupport in Java code, I assumed this is where we would need to somehow tell it about the module dependency:
DropwizardTestSupport<Configuration> dropwizardTestSupport = new DropwizardTestSupport<>(ApplicationRunner.class,getConfigurationFile());dropwizardTestSupport.before();
apiTest {
systemProperties = System.properties
}apiTest {
systemProperties = System.properties.findAll {
p -> !p.key.toString().startsWith("java.vm")
}
}