Hi,
We have configured our maven assembly plugin to create individual jars files that are uploaded to our local maven repo via the deploy plugin.
However we need to reference those jar files (the ones created by the assembly plugin) within other projects as maven dependencies. Any ideas on how we can accomplish that would be greatly appreciated.
Regards,
--pok
Update For example :
-client (pom.xml - groupId=com.mycompany artifactId=client)
|-src
|-main
|-java
|-authentication
|-billing
|-reporting
This gets split up into 3 different jar files by the maven assembly plugin and publish to our local repo as :
-client-authentication.jar
-client-billing.jar
-client-reporting.jar
How do we reference client-authentication.jar as a dependency for another project without it having it's own pom file?