Я создал проект с помощью плагина izpack maven org.codehaus.izpack версии 1.0-alpha-5.
Проблема в том, что я не могу создать ярлыки для своего приложения (windows), панель ярлыков отображается пустой ... и ошибок нет.
Все файлы существуют, и я попытался основываться на стандартном примере из Интернета ... нет успехов ..
Файл 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>
Помогите мне, пожалуйста .....