You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by ju...@apache.org on 2005/07/19 21:31:39 UTC

svn commit: r219757 - in /incubator/jackrabbit/trunk: README.txt contrib/jcr-server/README.txt

Author: jukka
Date: Tue Jul 19 12:31:39 2005
New Revision: 219757

URL: http://svn.apache.org/viewcvs?rev=219757&view=rev
Log:
JCR-172: README improvements contributed by Michael Wechner. (+ a small note about the top level multiproject setup)

Modified:
    incubator/jackrabbit/trunk/README.txt
    incubator/jackrabbit/trunk/contrib/jcr-server/README.txt

Modified: incubator/jackrabbit/trunk/README.txt
URL: http://svn.apache.org/viewcvs/incubator/jackrabbit/trunk/README.txt?rev=219757&r1=219756&r2=219757&view=diff
==============================================================================
--- incubator/jackrabbit/trunk/README.txt (original)
+++ incubator/jackrabbit/trunk/README.txt Tue Jul 19 12:31:39 2005
@@ -83,6 +83,24 @@
 
 to build the Jackrabbit project and/or documentation.
 
+The Jackrabbit project currently consist out of
+the three parts "api", "commons" and "core". Because of
+dependencies one needs to build the Jackrabbit project
+in the following order
+
+   cd api
+   maven jar:install
+   cd ../commons
+   maven jar:install
+   cd ../core
+   maven jar:install
+
+The top-level Maven build environment uses the Maven Multi-Project
+plugin to automatically build these three main components. The
+above can thus also be performed by running
+
+  maven
+
 NOTE: JDK 1.5 users need to download xalan.jar and place it in
 $MAVEN_HOME/lib/endorsed to build the Jackrabbit sources. The
 reason for this workaround is explained in

Modified: incubator/jackrabbit/trunk/contrib/jcr-server/README.txt
URL: http://svn.apache.org/viewcvs/incubator/jackrabbit/trunk/contrib/jcr-server/README.txt?rev=219757&r1=219756&r2=219757&view=diff
==============================================================================
--- incubator/jackrabbit/trunk/contrib/jcr-server/README.txt (original)
+++ incubator/jackrabbit/trunk/contrib/jcr-server/README.txt Tue Jul 19 12:31:39 2005
@@ -9,7 +9,9 @@
 into your maven repository. If this is not the case, go back to the root
 project and launch
 
-  maven jar:install
+  api:      maven jar:install
+  commons:  maven jar:install
+  core:     maven jar:install
 
 which will build and copy Jackrabbit into ~/.maven/repository/jackrabbit/jars
 
@@ -18,3 +20,18 @@
   maven jar:install
 
 which will build and copy jcr-rmi to ~/.maven/repository/jcr-rmi/jars
+
+After building all dependencies one can build the actual server webapp
+
+  cd webdav
+  maven jar:install
+
+  cd ../server
+  maven jar:install
+
+  cd ../client
+  maven jar:install
+
+  cd ../webapp
+  maven
+