source: release-kits/wirk3/installer/antinstall-config.xml@ 15338

Last change on this file since 15338 was 15146, checked in by oranfry, 16 years ago

a few changes to wirk3 to keep it up-to-date with lirk3

File size: 2.4 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE installer PUBLIC "-//tp23 //DTD Ant Installer Config//EN" "http://antinstaller.sf.net/dtd/antinstall-config-0.8.dtd">
3<installer
4 ui="swing,text"
5 verbose="true"
6 debug="false"
7 lookAndFeel="org.tp23.jgoodies.plaf.plastic.PlasticXPLookAndFeel"
8 name="Greenstone3Installer"
9 windowIcon="/resources/gkmain_inv.png"
10 defaultImageResource="/resources/makewavesdawn.png"
11 minJavaVersion="1.4">
12
13 <!-- each page element represents a page of the installer -->
14 <page
15 type="input"
16 name="intro"
17 displayText="Welcome to the Greenstone3 installer">
18 </page>
19
20 <!-- type="license" shows a license page to click through -->
21 <page
22 type="license"
23 name="license"
24 displayText="License conditions"
25 resource="/LICENSE.txt">
26 </page>
27
28 <!-- type="input" shows a list of editable options for the installer -->
29 <page
30 type="input"
31 name="destination"
32 displayText="Install Destination">
33
34 <directory
35 property="installDir"
36 defaultValue="/usr/local/Greenstone-@version@"
37 defaultValueWin="${env.ProgramFiles}\Greenstone-@version@"
38 displayText="Select an installation directory"
39 create="true"/>
40
41 </page>
42
43 <page type="input" name="tomcatports" displayText="Tomcat Ports">
44
45 <comment name="tomcatportsdescription" displayText="Please select the ports which the web server (Apache Tomcat) will use will use. It is usually safe to accept the defaults by just clicking Next. The exception is when you are running other services on these ports - if this is the case, select some free ports and click Next."/>
46
47 <text property="tomcat.server" defaultValue="localhost" displayText="Tomcat Server"/>
48 <text property="tomcat.port" defaultValue="8080" displayText="Tomcat Port"/>
49 <text property="tomcat.shutdown.port" defaultValue="8005" displayText="Tomcat Shutdown Port"/>
50 </page>
51
52
53 <page
54 type="input"
55 name="selector"
56 displayText="Components to install">
57 <comment
58 name="choosecomponents"
59 displayText="Choose the components you want to install"
60 bold="true"/>
61 <target
62 displayText="Core components"
63 target="default"
64 defaultValue="true"
65 force="true"/>
66
67 <target
68 displayText="Source code"
69 target="tgsrc"
70 defaultValue="false"/>
71
72 </page>
73
74 <page
75 type="progress"
76 name="progress"
77 displayText="Installation progress"
78 showTargets="false"
79 target="cleanuptarget">
80 </page>
81
82</installer>
Note: See TracBrowser for help on using the repository browser.