did you attempt the read the site doc and the trying to understand the
sample/pom.xml?
-D
---------------------------------------------------------------------
To unsubscribe from this list, please visit:
http://xircles.codehaus.org/manage_email
If the pom, i clear state that you can use the maven-jar-plugin to
package multiples custom panel, the example has only one panel, but
you can extend it to package multiple panels thru multiple executions.
and the maven-jar-plugin implicitly create target/staging/bin/panels
directory for you. Obviously you are not trying to understand the
example and jump on it too quickly.
-D
- create maven project for each custom panels. Make sure to include
izpack-standalone-compiler as it optional dependency.
since the final packaging already include that jar as well.
- include all neccessary dependencies for each panel for both
compile and runtime.
- in your izpack packaging project.
- includes all custom panels as your depdencies.
- use maven-dependency-plugin to pull all custom panel to
staging/bin/panel directory
- use maven-dependency-plugin to pull all custom panel's
dendencies to a location under staging area ( ie staging/dependency )
and configure your ipack's install.xml merge all those custom
panel's dependencies to the installer
Please read up on maven and read the plugin site configuration
example, and usage and doc
Good luck
-D