Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

   <izpack.staging>${project.build.directory}/staging</izpack.staging>
</properties>

(Note that Notes:

  • ${project.build.directory} typically references the compilation ./target/ directory of your module

...

  • Properties from your Maven project compiling the IzPack project can be directly references in the install.xml using the property name enclosed in '@{' and '}' , for example:
    <jar src="@{app.stage.dir}/lib/appcore.jar"/>
    This applies just on properties defined in the calling project, not for properties seen in the calling project.
Add Your Dependencies

We'll want to add at least two dependencies–one will be the dependency that contains your custom panel, the other(s) will be the dependency that contains your actual Java application. My dependencies look like this:

...