forked from unclebob/fitnesse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
installer.xml
71 lines (66 loc) · 2.59 KB
/
installer.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
Installer for FitNesse. Requires IzPack (http://www.izforge.com/izpack)
To build:
IZPACK_HOME/bin/compile installer.xml -o fitnesse_install.jar
-->
<installation version="1.0">
<info>
<appname>FitNesse</appname>
<appversion>20040914</appversion>
<authors>
<author name="Bob Martin" email="[email protected]"/>
<author name="Micah Martin" email="[email protected]"/>
</authors>
<url>http://www.fitnesse.org</url>
</info>
<guiprefs resizable="no" width="680" height="480"/>
<locale>
<langpack iso3="eng"/>
</locale>
<resources>
<res id="InfoPanel.info" src="extra/release/README.txt"/>
<res id="LicencePanel.licence" src="extra/release/license.txt"/>
<res id="userInputSpec.xml" src="extra/installer/UserInputSpec.xml"/>
<res id="Installer.image" src="extra/images/FitNesseInstallerLogo.png"/>
<res id="useNativeLAF" src="extra/installer/emptyFile"/>
</resources>
<panels>
<panel classname="HelloPanel"/>
<panel classname="LicencePanel"/>
<panel classname="TargetPanel"/>
<panel classname="PacksPanel"/>
<panel classname="UserInputPanel"/>
<panel classname="InstallPanel"/>
<panel classname="UserInputPanel"/>
<panel classname="FinishPanel"/>
</panels>
<packs>
<pack name="Base" required="yes">
<description>Base Installation</description>
<fileset dir="dist/fitnesse" targetdir="$INSTALL_PATH">
<include name="**"/>
</fileset>
<fileset dir="distribution" targetdir="$INSTALL_PATH">
<include name="**"/>
</fileset>
<fileset dir="extra/release" targetdir="$INSTALL_PATH">
<include name="*"/>
</fileset>
<executable targetfile="$INSTALL_PATH/run.sh" stage="never"/>
</pack>
<pack name="Windows Service" required="no">
<os family="windows"/>
<description>Install FitNesse as a Windows Service</description>
<fileset dir="extra/installer/wrapper/windows" targetdir="$INSTALL_PATH/wrapper">
<include name="**"/>
</fileset>
<parsable targetfile="$INSTALL_PATH/wrapper/fitnesse.conf"/>
<parsable targetfile="$INSTALL_PATH/wrapper/InstallFitNesseSvc.bat"/>
<parsable targetfile="$INSTALL_PATH/wrapper/UninstallFitNesseSvc.bat"/>
<parsable targetfile="$INSTALL_PATH/wrapper/FitNesseConsole.bat"/>
<executable targetfile="$INSTALL_PATH/wrapper/InstallFitNesseSvc.bat" stage="postinstall"/>
<executable targetfile="$INSTALL_PATH/wrapper/UninstallFitNesseSvc.bat" stage="uninstall"/>
</pack>
</packs>
</installation>