My build is picking up the latest binary jar and sources jar from my maven “repository” and I can now step through and set breakpoints on the libs in eclipse.
Great! Glad to hear
I ended-up changing my build to use the maven-publish plugin to generate the .pom
Even better! Now the pom should contain your artifact’s transitive dependencies. Much better than a minimal pom
it saves me the trouble of manually syncing the maven repo
I’m assuming this is just a hack for you to develop two dependent artifacts by yourself (a team of one) on your machine at home.
The normal “enterprise” solution to this problem is to host a private repository (eg artifactory or nexus) on your network and publish to the repository as part of your release (and possibly CI) process