Wiki source code of Building the wonder source code with maven
Version 44.1 by Ulrich Köster on 2007/02/09 09:47
Show last authors
author | version | line-number | content |
---|---|---|---|
1 | Steps 1-4 are required only once. | ||
2 | |||
3 | ~1. Install maven http:~/~/maven.apache.org | ||
4 | |||
5 | 2. Open a terminal and cd into the wonder root directory. | ||
6 | |||
7 | 3. Import the webobjects frameworks as jars into the local repository: | ||
8 | mvn ---non--recursive org.objectstyle.woproject.maven2:maven-wobootstrap-plugin::bootstrap | ||
9 | |||
10 | 4. Import some jars into the local maven repository: | ||
11 | |||
12 | mvn install:install-file --DgroupId=icu4j --DartifactId=icu4j --\ | ||
13 | Dversion=2.8 --Dpackaging=jar --Dfile=Common/Frameworks/ERJars/\ | ||
14 | Libraries/icu4j//2//8.jar-- | ||
15 | |||
16 | mvn install:install-file --DgroupId=javax --DartifactId=mailapi --\ | ||
17 | Dversion=1.1 --Dpackaging=jar --Dfile=Common/Frameworks/ERJavaMail/\ | ||
18 | Libraries/mailapi.jar-- | ||
19 | |||
20 | mvn install:install-file --DgroupId=javax --DartifactId=activation --\ | ||
21 | Dversion=1.0.2 --Dpackaging=jar --Dfile=Common/Frameworks/ERJavaMail/\ | ||
22 | Libraries/activation--1.0.2.jar | ||
23 | |||
24 | mvn install:install-file --DgroupId=jndi --DartifactId=jndi --\ | ||
25 | Dversion=1.2.1 --Dpackaging=jar --Dfile=Common/Frameworks/\ | ||
26 | ERChangeNotificationJMS/Libraries/jndi//1.2.1.jar//-- | ||
27 | |||
28 | mvn install:install-file --DgroupId=jms --DartifactId=jms --\ | ||
29 | Dversion=1.0.2 --Dpackaging=jar --Dfile=Common/Frameworks/\ | ||
30 | ERChangeNotificationJMS/Libraries/jms//1.0.2a.jar//-- | ||
31 | |||
32 | mvn install:install-file --DgroupId=metaparadigm --DartifactId=jsonrpc \ | ||
33 | --Dversion=1.0 --Dpackaging=jar --Dfile=Ajax/Ajax/Libraries/jsonrpc.jar-- | ||
34 | |||
35 | 5. Build wonder | ||
36 | mvn install |