From: Geoffrey De S. <ge0...@us...> - 2005-05-07 18:02:30
|
ge0ffrey 05/05/07 11:02:23 Modified: izpack/xdocs goals.xml navigation.xml Added: izpack/xdocs/templates application.xml izpack/xdocs index.xml Log: improved docs Revision Changes Path 1.1 maven-plugins/izpack/xdocs/templates/application.xml Index: application.xml =================================================================== <?xml version="1.0" encoding="UTF-8"?> <!-- /* * Copyright 2001-2004 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ --> <document> <properties> <title>The template application</title> </properties> <body> <section name="The template application"> <p> This template creates a installer for an executable jar. The following shorcuts are created: </p> <ul> <li>A desktop and programs shortcut to <code>javaw -jar <MY_ARTIFACT>.jar</code></li> <li>A programs shortcut to the uninstaller</li> </ul> </section> </body> </document> 1.2 +14 -2 maven-plugins/izpack/xdocs/goals.xml Index: goals.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/izpack/xdocs/goals.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- goals.xml 6 May 2005 23:34:42 -0000 1.1 +++ goals.xml 7 May 2005 18:02:23 -0000 1.2 @@ -30,11 +30,23 @@ </goal> <goal> <name>izpack:configure</name> - <description>Create the IzPack configuration file</description> + <description> + Create the IzPack configuration file + </description> </goal> <goal> <name>izpack:jar-installer</name> - <description>Generate a IzPack platform independ installer jar</description> + <description> + Generate a IzPack platform independ installer jar. + By default it will package the files generated by the maven distribution plugin. + </description> + </goal> + <goal> + <name>izpack:win-installer</name> + <description> + Generate a IzPack windows installer exe. It can optionally bundle a JRE. + Requires an installation of the IzPack native launcher and the 7-Zip tool. + </description> </goal> </goals> </body> 1.2 +8 -4 maven-plugins/izpack/xdocs/navigation.xml Index: navigation.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/izpack/xdocs/navigation.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- navigation.xml 6 May 2005 23:34:42 -0000 1.1 +++ navigation.xml 7 May 2005 18:02:23 -0000 1.2 @@ -18,16 +18,20 @@ --> -<project name="Maven NSIS Plug-in"> - <title>Maven NSIS Plug-in</title> +<project name="Maven IzPack Plug-in"> + <title>Maven IzPack Plug-in</title> <body> <links> <item href="http://maven.apache.org/" name="Maven"/> <item href="http://www.izforge.com/izpack/" name="IzPack"/> </links> <menu name="Overview"> - <item href="/goals.html" name="Goals"/> - <item href="/properties.html" name="Properties"/> + <item name="Home" href="/index.html"/> + <item name="Goals" href="/goals.html"/> + <item name="Properties" href="/properties.html"/> + </menu> + <menu name="Templates"> + <item name="application" href="/templates/application.html" /> </menu> </body> </project> \ No newline at end of file 1.1 maven-plugins/izpack/xdocs/index.xml Index: index.xml =================================================================== <?xml version="1.0" encoding="UTF-8"?> <!-- /* * Copyright 2001-2004 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ --> <document> <properties> <title>Maven IzPack Plug-in</title> </properties> <body> <section name="Maven IzPack Plug-in"> <p> A plugin to generate installers using IzPack. The basic installer is a platform independend installer jar which requires a JVM on the destination machine. That platform independend installer can be bundled with a JVM into a Win32 installer exe. </p> </section> <section name="Special installation instructions"> <p> Download and install IzPack 3.7.2 from <a href="http://www.izforge.com/izpack">http://www.izforge.com/izpack</a>. Copy <code>IZPACK_HOME/lib/standalone-compiler.jar</code> to <code>LOCAL_REPO/izpack/jars/izpack-standalone-compiler-3.7.2.jar</code>. </p> <p> For the goals <code>izpack:launcher</code> and <code>izpack:win-installer</code> you also need to isntall the IzPack native launcher 1.2 from <a href="http://www.izforge.com/izpack">http://www.izforge.com/izpack</a> and the 7-Zip tool from <a href="http://www.7-zip.org/">http://www.7-zip.org/</a>. </p> </section> </body> </document> |