You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@wookie.apache.org by sc...@apache.org on 2011/06/16 10:05:29 UTC

svn commit: r1136314 - /incubator/wookie/site/trunk/content/wookie/docs/developer/running.mdtext

Author: scottbw
Date: Thu Jun 16 08:05:29 2011
New Revision: 1136314

URL: http://svn.apache.org/viewvc?rev=1136314&view=rev
Log:
Added instructions for building and including JCR module

Modified:
    incubator/wookie/site/trunk/content/wookie/docs/developer/running.mdtext

Modified: incubator/wookie/site/trunk/content/wookie/docs/developer/running.mdtext
URL: http://svn.apache.org/viewvc/incubator/wookie/site/trunk/content/wookie/docs/developer/running.mdtext?rev=1136314&r1=1136313&r2=1136314&view=diff
==============================================================================
--- incubator/wookie/site/trunk/content/wookie/docs/developer/running.mdtext (original)
+++ incubator/wookie/site/trunk/content/wookie/docs/developer/running.mdtext Thu Jun 16 08:05:29 2011
@@ -209,7 +209,21 @@ For more information how to do this in T
 
 ## Running Wookie using embedded Jackrabbit JCR
 
-The folloing property is used to switch the standalone or Tomcat deployed servers to utilize JCR for persistence via an embedded JCR instance:
+Wookie by default uses OpenJPA for persistence, however you can also use JCR. This is not part of the standard build and distribution of Wookie, so first you need to build the module, then include it in Wookie's dependencies.
+
+The first step is to build and publish the core Wookie server code, as the JCR module build process depends on being able to find it using Ivy. 
+
+    cd PROJECT-HOME-DIRECTORY
+    ant publish-local
+
+Next you need to build and publish the JCR module:
+
+    cd modules/jcr
+    ant publish-local
+
+Uncomment the lines in the main ivy.xml file to require the JCR jar when building Wookie, and the next time you build Wookie the wookie-jcr jar will be included, enabling you to switch to JCR persistence.
+
+The following property is used to switch the standalone or Tomcat deployed servers to utilize JCR for persistence via an embedded JCR instance:
 
     wookie.persistence.manager.type=jcr