Last modified by Lachlan Deck on 2009/03/24 19:05

From version 30.1
edited by Lachlan Deck
on 2009/02/20 11:57
Change comment: Fixing reference to BUILD.txt for Wonder (svn now rather than old cvs) + using 5.4 these days
To version 32.1
edited by Greg.Brown
on 2009/02/16 09:49
Change comment: There is no comment for this version

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.ldeck
1 +XWiki.gbrown
Content
... ... @@ -1,20 +1,20 @@
1 -Building instructions are in the file BUILD.txt at the top level of the svn checkout.
1 +Building instructions are in the file BUILD.txt at the top level of the CVS checkout.
2 2  
3 -https:~/~/wonder.svn.sourceforge.net/svnroot/wonder/trunk/Wonder/BUILD.txt
3 +http:~/~/wonder.cvs.sourceforge.net/*checkout*/wonder/Wonder/BUILD.txt?revision=HEAD
4 4  
5 5  Currently (February 2009) the wonder frameworks, applications, etc, can be built for WebObjects 5.3.x or 5.4.x; the choice is made by using a "profile" which has the value of wo53 or wo54, e.g.:
6 6  
7 7  {{code}}
8 8  
9 - mvn clean install -P wo54
9 + mvn clean install -P wo53
10 10  
11 11  {{/code}}
12 12  
13 -This installs frameworks for WebObjects 5.4.x, some of which appear in your local repository with the wo54 qualifier:
13 +This installs frameworks for WebObjects 5.3.x, some of which appear in your local repository with the wo53 qualifier:
14 14  
15 15  {{code}}
16 16  
17 -./repository/wonder/core/ERExtensions/5.0.0-SNAPSHOT/ERExtensions-5.0.0-SNAPSHOT-wo54.jar
17 +./repository/wonder/core/ERExtensions/5.0.0-SNAPSHOT/ERExtensions-5.0.0-SNAPSHOT-wo53.jar
18 18  
19 19  {{/code}}
20 20  
... ... @@ -24,7 +24,7 @@
24 24  
25 25  <major version>.<minor version>.<incremental version>-<qualifier>
26 26  
27 -For ERExtensions, this is: 5 . 0 . 0-SNAPSHOT - wo54; which selects the correct dependency for WebObjects 5.4.x. In the pom dependencies section this would be
27 +For ERExtensions, this is: 5 . 0 . 0-SNAPSHOT - wo53; which selects the correct dependency for WebObjects 5.3.x. In the pom dependencies section this would be
28 28  
29 29  {{code value="xml"}}
30 30  
... ... @@ -32,7 +32,7 @@
32 32   <groupId>wonder.core</groupId>
33 33   <artifactId>ERExtensions</artifactId>
34 34   <version>5.0.0-SNAPSHOT</version>
35 - <classifier>wo54</classifier>
35 + <classifier>wo53</classifier>
36 36  </dependency>
37 37  
38 38  {{/code}}