Changes for page wolips.properties

Last modified by D Tim Cummings on 2012/08/06 15:27

From version 20.1
edited by pgr
on 2009/11/19 09:55
Change comment: There is no comment for this version
To version 23.1
edited by Kieran Kelleher
on 2012/08/06 15:26
Change comment: There is no comment for this version

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.pgr
1 +XWiki.kieran
Content
... ... @@ -1,4 +1,4 @@
1 -The wolips.properties file tells WOLips (and the Ant based build) where to find the various parts of WebObjects and friends. This replaces the wobuild.properties files used by earlier version (pre-New Hotness) of WOLips.
1 +The wolips.properties file tells WOLips (and the Ant based build) where to find the various parts of WebObjects and friends. This replaces the wobuild.properties files used by earlier version (pre-New Hotness) of WOLips, though the wobuild.properties file still gets used by ant builds of the Wonder frameworks and applications.
2 2  
3 3  The location of this file differs by operating system:
4 4  
... ... @@ -5,24 +5,51 @@
5 5  **OS X**: ##/Users/<user>/Library/Application Support/WOLips/wolips.properties##
6 6  **Linux**: ##/home/<user>/Library/Application Support/WOLips/wolips.properties##
7 7  **Windows**: ##C:ocuments and Settingsuser>ibrarypplication SupportOLipsolips.properties##
8 +**Windows 7**: ##C:sersuser>ppDataoamingOLipsolips.properties##
8 8  
9 9  The wolips.properties file should be created automatically, but if this does not happen, it can be created manually (e.g. with a text editor). Example contents of this file (modify to match the locations on your machine):
10 10  
11 11  {{code}}
12 12  
14 +# Directory path that contains Library/Frameworks/[Apple WebObjects frameworks]
13 13  wo.system.root=/System
16 +# Directory that contains [user WebObjects frameworks]
14 14  wo.user.frameworks=/Users/chuck/Library/Frameworks
18 +# Directory that contains [Apple WebObjects frameworks]
15 15  wo.system.frameworks=/System/Library/Frameworks
16 16  wo.bootstrapjar=/System/Library/WebObjects/JavaApplications/wotaskd.woa/WOBootstrap.jar
21 +# Directory that contains network shared [WebObjects frameworks]
17 17  wo.network.frameworks=/Network/Library/Frameworks
23 +# Directory for javadoc lookup by Eclipse
18 18  wo.api.root=/Developer/ADC%20Reference%20Library/documentation/WebObjects/Reference/API/
25 +# Directory path that contains Library/Frameworks/[network shared WebObjects frameworks]
19 19  wo.network.root=/Network
27 +# Directory that contains unmanaged unversioned global jars available to WebObjects runtime (generally a bad idea)
20 20  wo.extensions=/Library/WebObjects/Extensions
29 +# User home directory
21 21  wo.user.root=/Users/chuck
31 +# A directory containing [non-Apple WebObjects frameworks]
22 22  wo.local.frameworks=/Library/Frameworks
33 +# A directory where WebObjects applications are installed
23 23  wo.apps.root=/Library/WebObjects/Applications
35 +# Directory path that contains Library/Frameworks/[non-Apple WebObjects frameworks]
24 24  wo.local.root=/
25 25  
26 26  {{/code}}
27 27  
40 +Example on Windows:
41 +
42 +{{code}}
43 +
44 +wo.system.root=C:/Apple
45 +wo.system.frameworks=C:/Apple/Library/Frameworks
46 +wo.bootstrapjar=C:/Apple/Library/WebObjects/JavaApplications/wotaskd.woa/WOBootstrap.jar
47 +wo.extensions=C:/Apple/Local/Library/WebObjects/Extensions
48 +wo.user.root=C:/username
49 +wo.local.frameworks=C:/Apple/Local/Library/Frameworks
50 +wo.apps.root=C:/Apple/Library/WebObjects/JavaApplications
51 +wo.local.root=C:/Apple/Local
52 +
53 +{{/code}}
54 +
28 28  See [[Using WOLips With Multiple Versions of WebObjects]] for how to use different wolips.properties files with different WO version.