The artifact (and jar names) of the testcontainers postgres module and the postgres driver are the same. This prevents using these two together in a Java 9 project using the module system. Java infers the module name automatically from the name of the Jar file.
There is a fix for this described here: http://branchandbound.net/blog/java/2017/12/automatic-module-name/
Java allows setting an automatic module name in the Manifest.mf file of a library without modularizing the library itself.
The artifact (and jar names) of the testcontainers postgres module and the postgres driver are the same. This prevents using these two together in a Java 9 project using the module system. Java infers the module name automatically from the name of the Jar file.
There is a fix for this described here: http://branchandbound.net/blog/java/2017/12/automatic-module-name/
Java allows setting an automatic module name in the Manifest.mf file of a library without modularizing the library itself.