Changes for page Building the wonder source code with maven
Last modified by Lachlan Deck on 2009/03/24 19:05
From version 32.1
edited by Greg.Brown
on 2009/02/16 09:49
on 2009/02/16 09:49
Change comment:
There is no comment for this version
To version 28.1
edited by Greg.Brown
on 2009/03/23 11:20
on 2009/03/23 11:20
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -1,20 +1,25 @@ 1 -Building instructions are in the file BUILD.txt at the top level of the CVScheckout.1 +Building instructions are in the file BUILD.txt at the top level of the svn checkout. 2 2 3 -http:~/~/wonder. cvs.sourceforge.net/*checkout*/wonder/Wonder/BUILD.txt?revision=HEAD3 +https:~/~/wonder.svn.sourceforge.net/svnroot/wonder/trunk/Wonder/BUILD.txt 4 4 5 +{{note}} 6 + These Maven built frameworks are slightly different than the ant built frameworks. For example, the Ajax framework has dependencies on json, and the ant built Ajax.framework includes a jabsorb-1.2.2.jar, whereas the Maven built Ajax.framework does not include this jabsorb-1.2.2.jar. This is, of course, because Maven dependencies are detailed in the pom.xml, and will be pulled in via standard Maven mechanisms. The frameworks are not interchangeable--at least without manipulating dependencies. 7 + 8 +{{/note}} 9 + 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 wo5 314 + mvn clean install -P wo54 10 10 11 11 {{/code}} 12 12 13 -This installs frameworks for WebObjects 5. 3.x, some of which appear in your local repository with the wo53qualifier:18 +This installs frameworks for WebObjects 5.4.x, some of which appear in your local repository with the wo54 qualifier: 14 14 15 15 {{code}} 16 16 17 -./repository/wonder/core/ERExtensions/5.0.0-SNAPSHOT/ERExtensions-5.0.0-SNAPSHOT-wo5 3.jar22 +./repository/wonder/core/ERExtensions/5.0.0-SNAPSHOT/ERExtensions-5.0.0-SNAPSHOT-wo54.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 - wo5 3; which selects the correct dependency for WebObjects 5.3.x. In the pom dependencies section this would be32 +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 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>wo5 3</classifier>40 + <classifier>wo54</classifier> 36 36 </dependency> 37 37 38 38 {{/code}}