You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@chemistry.apache.org by bu...@apache.org on 2011/03/22 16:41:18 UTC

svn commit: r787371 - /websites/staging/chemistry/trunk/content/java/how-to/how-to-create-server.html

Author: buildbot
Date: Tue Mar 22 15:41:18 2011
New Revision: 787371

Log:
Staging update by buildbot

Modified:
    websites/staging/chemistry/trunk/content/java/how-to/how-to-create-server.html

Modified: websites/staging/chemistry/trunk/content/java/how-to/how-to-create-server.html
==============================================================================
--- websites/staging/chemistry/trunk/content/java/how-to/how-to-create-server.html (original)
+++ websites/staging/chemistry/trunk/content/java/how-to/how-to-create-server.html Tue Mar 22 15:41:18 2011
@@ -357,34 +357,14 @@ may run <code>mvn eclipse:eclipse</code>
 <code>.classpath</code> files for Eclipse that you just need to import in your
 Eclipse workspace.</p>
 <h3 id="without_maven">Without maven</h3>
-<p>If you do not want to use maven to build your project you currently have to
-use maven to produce the binaries from the source code. Download the source
-code and run</p>
-<div class="codehilite"><pre><span class="n">mvn</span> <span class="nb">package</span>
-</pre></div>
-
-
-<p>to produce a binary version of all packaged files. To reuse the relevant
-files from the server implementation in opencmis type:</p>
-<div class="codehilite"><pre><span class="n">cd</span> <span class="n">chemistry</span><span class="o">-</span><span class="n">opencmis</span><span class="o">-</span><span class="n">server</span>
-<span class="n">cd</span> <span class="n">chemistry</span><span class="o">-</span><span class="n">opencmis</span><span class="o">-</span><span class="n">server</span><span class="o">-</span><span class="n">bindings</span>
-</pre></div>
-
-
-<p>Unzip the file
-<code>chemistry-opencmis-server-bindings-0.1-incubating-SNAPSHOT.jar</code> and copy
+<p>If you do not want to use maven to build your project downlod from the downloads
+page the package "OpenCMIS Server Framework". Unzip the file and copy
 the contents to your project. It includes all required jars, web.xml and
-other supporting files. In case you prefer an empty classes directory and
-use a jar instead you can use:</p>
-<div class="codehilite"><pre><span class="n">mvn</span> <span class="n">jar:jar</span>
-</pre></div>
-
-
-<p>Then copy the file named <code>opencmis-server-impl-0.1-SNAPSHOT.jar</code> from the
-target directory to your project directory. Add all jar files from the
-<code>.war</code> and the one created in the previous step to your project setup.
-Add the <code>repository.properties</code> file to your classpath.</p>
-<p>Now you have an initial <code>web.xml</code> and the required support files for the
+other supporting files. It follow the structure of a web application (.war).
+The web application can be deployed but does not have any functionality.</p>
+<p>Edit the file <code>repository.properties</code> as a first step (see below) and take
+care that it is in your classpath.</p>
+<p>You also have an initial <code>web.xml</code> and the required support files for the
 web services binding. Unless you have specific requirements you do not need
 to modify them.</p>
 <h2 id="implementing_the_services">Implementing the services</h2>