source: release-kits/lirk3/installer/antinstall-config.xml@ 15142

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

changes to the wrapper and installer logic, and a few changes to init and compile stuff

File size: 2.3 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
51 </page>
52
53
54 <page
55 type="input"
56 name="selector"
57 displayText="Components to install">
58
59 <comment name="choosecomponents" displayText="Choose the components you want to install" bold="true"/>
60 <target displayText="Core components" target="default" defaultValue="true" force="true"/>
61 <target displayText="Source code" target="tgsrc" defaultValue="false"/>
62
63 </page>
64
65 <page
66 type="progress"
67 name="progress"
68 displayText="Installation progress"
69 showTargets="false"
70 target="cleanuptarget">
71 </page>
72
73</installer>
Note: See TracBrowser for help on using the repository browser.