izpack maven プラグイン org.codehaus.izpack バージョン 1.0-alpha-5 を使用してプロジェクトを作成しました。
問題は、自分のアプリケーション (Windows) のショートカットを作成できず、ショートカット パネルが空で表示され、エラーが発生しないことです。
すべてのファイルが存在し、Web の標準的な例に基づいて作成しようとしました..成功しません..
install.xml ファイル:
<resources>
<res id="shortcutSpec.xml" src="./shortcutSpec.xml" />
</resources>
<native type="izpack" name="ShellLink.dll"/>
<variables>
<variable name="DesktopShortcutCheckboxEnabled" value="true" />
</variables>
<panels>
<panel classname="HelloPanel"/>
<panel classname="InfoPanel"/>
<panel classname="LicencePanel"/>
<panel classname="TargetPanel"/>
<panel classname="PacksPanel"/>
<panel classname="InstallPanel"/>
<panel classname="ShortcutPanel"/>
</panels>
ShortcutSpec.xml ファイルで:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<shortcuts>
<!--skipIfNotSupported/-->
<programGroup defaultName="company\product" location="startMenu"/>
<shortcut name="product" target="C:\Program Files\product\product.exe" description="Creating Gui Icon on the Desktop"
workingDirectory="$INSTALL_PATH" iconFile="C:\Program Files\product\icon.ico" initialState="normal" programGroup="yes" desktop="yes" applications="yes"
startMenu="yes" startup="no">
<createForPack name="product.exe"/>
</shortcut>
<shortcut
name="Documentation" target="C:\Program Files\product\doc\asdfsadfasf.docx"
workingDirectory="$INSTALL_PATH" iconFile="C:\Program Files\product\icon.ico"
description="Launch documentation" initialState="normal" programGroup="yes" desktop="yes"
applications="yes" startMenu="yes" startup="no">
<createForPack name="product.exe"/>
</shortcut>
</shortcuts>
お願い助けて.....