views:

281

answers:

1

How can I execute Pax-Runner tasks using a Maven Plugin, which I can specify in the pom.xml file?

i.e. I can do the following in command line using Pax-Runner (to convert a war file into an OSGi bundle)

pax-run war:file:C:/somefile.war warref:C:/somefile.properties

What should I do to make it happen in a pom.xml file?

Thanks in advance!

+1  A: 

There is a maven plugin for pax. I've not used it, but according to the documentation it does what you need. On the usage page there's a section titled Using the Pax Plugin inside a POM that describes how to set up your project.

Rich Seller