Hi everyone, I am developing a multi-module maven application with iPOJO (http://felix.apache.org/site/apache-felix-ipojo.html).
Each module produces a jar file that is an OSGi bundle that I then execute within an OSGi container (http://felix.apache.org). What I want to do is to automatically copy those files into my Felix directory to test them. My first reflex was to use the assembly plugin. I encountered the problem that the parent pom was executed before the children poms and finally created a dedicated module that would do the job (as explained here http://maven.apache.org/plugins/maven-assembly-plugin/faq.html#module-binaries). But now, I have all my jar files in the $PROJECT_HOME/Modules/assembly-module/target/assembly-module-1.0-SNAPSHOT-assembly/ directory... which is not what I expect. How can I move them to my Felix directory (which is not in the $PROJECT_HOME directory) ? Am I using the right plugin or is it better to use the deploy plugin in this case ? Kind regards, Ben --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
