Changes for page Building the wonder source code with maven
Last modified by Lachlan Deck on 2009/03/24 19:05
From 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
To 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
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -1,25 +1,20 @@ 1 -Building instructions are in the file BUILD.txt at the top level of the svncheckout.1 +Building instructions are in the file BUILD.txt at the top level of the CVS checkout. 2 2 3 -http s:~/~/wonder.svn.sourceforge.net/svnroot/wonder/trunk/Wonder/BUILD.txt3 +http:~/~/wonder.cvs.sourceforge.net/*checkout*/wonder/Wonder/BUILD.txt?revision=HEAD 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 - 10 10 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.: 11 11 12 12 {{code}} 13 13 14 - mvn clean install -P wo5 49 + mvn clean install -P wo53 15 15 16 16 {{/code}} 17 17 18 -This installs frameworks for WebObjects 5. 4.x, some of which appear in your local repository with the wo54qualifier:13 +This installs frameworks for WebObjects 5.3.x, some of which appear in your local repository with the wo53 qualifier: 19 19 20 20 {{code}} 21 21 22 -./repository/wonder/core/ERExtensions/5.0.0-SNAPSHOT/ERExtensions-5.0.0-SNAPSHOT-wo5 4.jar17 +./repository/wonder/core/ERExtensions/5.0.0-SNAPSHOT/ERExtensions-5.0.0-SNAPSHOT-wo53.jar 23 23 24 24 {{/code}} 25 25 ... ... @@ -29,7 +29,7 @@ 29 29 30 30 <major version>.<minor version>.<incremental version>-<qualifier> 31 31 32 -For ERExtensions, this is: 5 . 0 . 0-SNAPSHOT - wo5 4; which selects the correct dependency for WebObjects 5.4.x. In the pom dependencies section this would be27 +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 33 33 34 34 {{code value="xml"}} 35 35 ... ... @@ -37,7 +37,7 @@ 37 37 <groupId>wonder.core</groupId> 38 38 <artifactId>ERExtensions</artifactId> 39 39 <version>5.0.0-SNAPSHOT</version> 40 - <classifier>wo5 4</classifier>35 + <classifier>wo53</classifier> 41 41 </dependency> 42 42 43 43 {{/code}}