views:

100

answers:

2

Hi All,

Is there a maven plugin capable of generating ISO images?

I need to take the output of some modules (mostly zip files containing jars) and combine them into a single ISO image.

Thanks

A: 

From this mail archive exchange, it seems like the maven assembly plugin could do the trick. But it's only a third-hand info.

Riduidel
+1  A: 

I'm not aware of any native integration (certainly in the Assembly plugin), but it looks like the following library is available: http://jiic.berlios.de/

This could be wrapped in a Maven plugin, or for simpler integration used with the Maven AntRun plugin and the pre-bundled ant task.

Brett Porter