Author: bago
Date: Wed Sep 26 02:48:41 2007
New Revision: 579541
URL: http://svn.apache.org/viewvc?rev=579541&view=rev
Log:
Added some more explanation about the parent-pom issue to the BUILDING.txt.
Thanx to Bernd for pointing out that the comment in the pom.xml was not so
visible.
Modified:
james/jspf/trunk/BUILDING.txt
Modified: james/jspf/trunk/BUILDING.txt
URL:
http://svn.apache.org/viewvc/james/jspf/trunk/BUILDING.txt?rev=579541&r1=579540&r2=579541&view=diff
==============================================================================
--- james/jspf/trunk/BUILDING.txt (original)
+++ james/jspf/trunk/BUILDING.txt Wed Sep 26 02:48:41 2007
@@ -17,8 +17,42 @@
3) Change directory to jspf source dir
$ cd jspf-x/
-4) Run the build (the "-P local" restrict maven to use bundled dependencies)
- $ mvn -P local package
+4) Run the build (the "-Plocal" restrict maven to use bundled dependencies)
+ $ mvn -Plocal package
+
+Please note that due to http://jira.codehaus.org/browse/MNG-2896
+if you don't have james-project checked out in ../james-project
+you will have to alter the local stage repository url in the pom.xml
+file to use your absolute path to the project instead of ${basedir},
+or, otherwise, manually install the parent poms
+
+#windows:
+mvn -fignorepom.xml install:install-file \
+ -Dfile=stage\org.apache.james\poms\james-parent-1.1.pom \
+ -Dpackaging=pom \
+ -DgroupId=org.apache.james \
+ -DartifactId=james-parent \
+ -Dversion=1.1
+mvn -fignorepom.xml install:install-file \
+ -Dfile=stage\org.apache.james\poms\james-project-1.2.pom \
+ -Dpackaging=pom \
+ -DgroupId=org.apache.james \
+ -DartifactId=james-project \
+ -Dversion=1.2
+
+#linux:
+mvn -fignorepom.xml install:install-file \
+ -Dfile=stage/org.apache.james/poms/james-parent-1.1.pom \
+ -Dpackaging=pom \
+ -DgroupId=org.apache.james \
+ -DartifactId=james-parent \
+ -Dversion=1.1
+mvn -fignorepom.xml install:install-file \
+ -Dfile=stage/org.apache.james/poms/james-project-1.2.pom \
+ -Dpackaging=pom \
+ -DgroupId=org.apache.james \
+ -DartifactId=james-project \
+ -Dversion=1.2
That's it. Please contact [email protected] if you have any
problems.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]