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

svn commit: r1084221 - /chemistry/site/trunk/content/java/how-to/how-to-create-server.mdtext

Author: jens
Date: Tue Mar 22 15:41:13 2011
New Revision: 1084221

URL: http://svn.apache.org/viewvc?rev=1084221&view=rev
Log:
add use of server framework package to the guide

Modified:
    chemistry/site/trunk/content/java/how-to/how-to-create-server.mdtext

Modified: chemistry/site/trunk/content/java/how-to/how-to-create-server.mdtext
URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/how-to/how-to-create-server.mdtext?rev=1084221&r1=1084220&r2=1084221&view=diff
==============================================================================
--- chemistry/site/trunk/content/java/how-to/how-to-create-server.mdtext (original)
+++ chemistry/site/trunk/content/java/how-to/how-to-create-server.mdtext Tue Mar 22 15:41:13 2011
@@ -161,38 +161,18 @@ Eclipse workspace.
 
 ### Without maven
     
-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
-    
-    mvn package
-
-
-to produce a binary version of all packaged files. To reuse the relevant
-files from the server implementation in opencmis type:
-    
-    cd chemistry-opencmis-server
-    cd chemistry-opencmis-server-bindings
-
-    
-Unzip the file
-`chemistry-opencmis-server-bindings-0.1-incubating-SNAPSHOT.jar` and copy
+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:
-    
-    mvn jar:jar
+other supporting files. It follow the structure of a web application (.war).
+The web application can be deployed but does not have any functionality.
 
+Edit the file `repository.properties` as a first step (see below) and take
+care that it is in your classpath.
 
-Then copy the file named `opencmis-server-impl-0.1-SNAPSHOT.jar` from the
-target directory to your project directory. Add all jar files from the
-`.war` and the one created in the previous step to your project setup.
-Add the `repository.properties` file to your classpath.
-    
-Now you have an initial `web.xml` and the required support files for the
+You also have an initial `web.xml` and the required support files for the
 web services binding. Unless you have specific requirements you do not need
 to modify them.
-
     
 ## Implementing the services