Wiki source code of wolips.properties

Version 7.1 by juch80 on 2011/08/18 09:30

Show last authors
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.
2
3 The location of this file differs by operating system:
4
5 **OS X**: ##/Users/<user>/Library/Application Support/WOLips/wolips.properties##
6 **Linux**: ##/home/<user>/Library/Application Support/WOLips/wolips.properties##
7 **Windows**: ##C:ocuments and Settingsuser>ibrarypplication SupportOLipsolips.properties##
8 **Windows 7**: ##C:sersuser>ppDataoamingOLipsolips.properties##
9
10 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):
11
12 {{code}}
13
14 wo.system.root=/System
15 wo.user.frameworks=/Users/chuck/Library/Frameworks
16 wo.system.frameworks=/System/Library/Frameworks
17 wo.bootstrapjar=/System/Library/WebObjects/JavaApplications/wotaskd.woa/WOBootstrap.jar
18 wo.network.frameworks=/Network/Library/Frameworks
19 wo.api.root=/Developer/ADC%20Reference%20Library/documentation/WebObjects/Reference/API/
20 wo.network.root=/Network
21 wo.extensions=/Library/WebObjects/Extensions
22 wo.user.root=/Users/chuck
23 wo.local.frameworks=/Library/Frameworks
24 wo.apps.root=/Library/WebObjects/Applications
25 wo.local.root=/
26
27 {{/code}}
28
29 Example on Windows:
30
31 {{code}}
32
33 wo.system.root=C:/Apple
34 wo.system.frameworks=C:/Apple/Library/Frameworks
35 wo.bootstrapjar=C:/Apple/Library/WebObjects/JavaApplications/wotaskd.woa/WOBootstrap.jar
36 wo.extensions=C:/Apple/Local/Library/WebObjects/Extensions
37 wo.user.root=C:/username
38 wo.local.frameworks=C:/Apple/Local/Library/Frameworks
39 wo.apps.root=C:/Apple/Library/WebObjects/JavaApplications
40 wo.local.root=C:/Apple/Local
41
42 {{/code}}
43
44 See [[Using WOLips With Multiple Versions of WebObjects]] for how to use different wolips.properties files with different WO version.