Josiah Noel
Josiah Noel
So I've made a separate module for the test classes, but it seems the other ones cannot detect it ``` Could not resolve dependencies for project org.jdbi:jdbi3-caffeine-cache:jar:3.40.1-SNAPSHOT: The following artifacts...
from a JPMS perspective, I figured out how to get it all working, the main issue I have now is getting the reusable test maven module to be detected by...
> Having separate module-info for the test and the main jar is cool, but it requires separate identifiers. wait you can do that now?
in any case, I find myself a little stumped by the separate test module bit not being found, shall I just duplicate the classes to make it work
it seems then that the prereq for this change is replacing all instances of ```xml org.jdbi jdbi3-core tests test ``` with a dedicated module. If you can show me the...
> The easiest way to add a new module is to clone an existing one. For example, you might `mkdir core-testing && cp core/pom.xml core-testing/`. Then, edit the pom to...
``` Failed to execute goal on project jdbi3-caffeine-cache: Could not resolve dependencies for project org.jdbi:jdbi3-caffeine-cache:jar:3.40.1-SNAPSHOT: The following artifacts could not be resolved: org.jdbi:jdbi3-core-test:jar:3.40.1-SNAPSHOT (absent): Could not find artifact org.jdbi:jdbi3-core-test:jar:3.40.1-SNAPSHOT in...

knew it was something small that I missed
Ah yeah, turns out having a dedicated test module complicates things a bit with the dependencies