...
Property from the wobuild.properties file | Description | Default |
---|---|---|
wo.wosystemroot | Usually this is a WebObjects installation directory, like "C:\Apple". | NEXT_ROOT environment variable, or root directory "/". |
wo.localroot wolocalroot | Usually this is a "Local" directory under the directory specified by "wo.woroot". | ${wo.woroot}/Local |
wo.homeroot | Usually this is a user home directory. | ${user.home} |
...
The nested classes
element specifies a FileSet. All files included in this fileset will end up in the Contents/Resources/Java/*.jar
file of the application.
...
The nested resources
element specifies a FileSet. All files included in this fileset will end up in the Contents/Resources
directory of the application. For the discussion of resource localization issues follow this link.
...
The nested wsresources
element specifies a FileSet. All files included in this fileset will end up in the Contents/WebServerResources
directory of the application. For the discussion of resource localization issues follow this link.
...
To embed frameworks set embed to true.
Note | ||||
---|---|---|---|---|
| ||||
Q: Kieran Kelleher A: Mike Schrag |
The nested lib element specifies a FileSet. This should be a fileset of jar libraries required by your application. All files in this fileset will end up in the Resources/Java
folder of the application, and will be included on the classpath for this application.
To embed jars set embed to true.
??? What does this do ???This nested element is used to add an arbitrary directory or file path to the runtime classpath. For example on Mac OS X, the directory at APPROOT/Resources/SSLKeyStore/ can be added to the runtime classpath by doing something like this:
Code Block |
---|
<woapplication>
[...]
<otherclasspath dir="." embed="true">
<include name="Resources/SSLKeyStore" />
</otherclasspath>
</woapplication>
|
Create an application "MyApp" with a set of standard frameworks:
...