You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by ba...@apache.org on 2007/09/26 11:48:42 UTC

svn commit: r579541 - /james/jspf/trunk/BUILDING.txt

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 server-dev@james.apache.org if you have any
 problems.



---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org