Last modified by Pascal Robert on 2023/08/10 22:21

From version 135.1
edited by David Avendasora
on 2010/11/29 19:35
Change comment: There is no comment for this version
To version 125.1
edited by David Avendasora
on 2010/11/29 19:45
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -10,7 +10,7 @@
10 10  
11 11  You can either download them pre-built from [[Wonder's Hudson build server>>http://webobjects.mdimension.com/hudson/job/Wonder54/lastSuccessfulBuild/artifact/dist/]] or build them from the source code.
12 12  
13 -To build them from the source, simply run the following Command from the Wonder directory at the root of the Wonder source code directory:
13 +To build them from the [[Wonder source code>>WONDER:Download Wonder Source, Build, Install and Upgrade]], simply run the following command from the Wonder directory at the root of the Wonder source.
14 14  
15 15  {{code}}
16 16  ant frameworks deployment.tools -Dwonder.patch=54 -Ddeployment.standalone=true
... ... @@ -18,10 +18,11 @@
18 18  
19 19  {{info title="What this command does:"}}
20 20  
21 -* *ant*: calls Ant
22 -* *frameworks*: tells Ant to build the "frameworks" target
23 -* *deployment.tools* tells Ant to build the "deployment.tools" target
24 -* *\-Ddeployment.standalone=true*: argument will embed the required Wonder and WebObjects frameworks in the wotaskd.woa
21 +* *ant*: calls Apache Ant. It is assumed that you have this already installed.
22 +* *frameworks*: tells Ant to build the "frameworks" target. This may not be needed if you already have Wonder built and installed in a location Ant can find automatically.
23 +* *deployment.tools*: tells Ant to build the "deployment.tools" target. This is the target that builds both wotaskd.woa and JavaMonitor.woa. You absolutely need this one.
24 +* *\-Dwonder.patch=54*: tells Wonder to build for WebObjects version 5.4. You need this if you are building against Wonder Trunk. Some branches don't need it, but it doesn't hurt either.
25 +* *\-Ddeployment.standalone=true*: argument will embed the required Wonder and WebObjects frameworks in built applications. You need this to ensure that the required frameworks are embedded in the built applications.
25 25  
26 26  
27 27