I'm developing my application as a set of OSGi bundles using Maven 2. Some common functionality, such as logging, web server etc. is used from other OSGi bundles, for example, I'm ...
I have a maven2 project with several jar modules, build the project will get .jar archives for each module in the directory modules/XYZ/target/XYZ-x.x.x.jar
Now, if my project P is of version P-p.q.r, ...
Using maven-shade-plugin you can actually merge all dependency jars into single jar file. However I just want to merge several jar files (not all), similary like include-only x, and ...
I have problem with building the single executable jar from multiple maven modules.
So here is the situation: I have three maven modules: app -> persistence -> domain. I have parent pom.xml ...
I'm writing a nb platform application using maven The application has two modules that have some jar libs in common. If I define the compile in both pom.xml, during runtime nb ...