Author: marrs
Date: Tue Apr 23 15:40:22 2013
New Revision: 1471018

URL: http://svn.apache.org/r1471018
Log:
The getting started guide now correctly explains how to make a binary 
distribution and use it.

Modified:
    ace/site/trunk/content/dev-doc/getting-started.mdtext

Modified: ace/site/trunk/content/dev-doc/getting-started.mdtext
URL: 
http://svn.apache.org/viewvc/ace/site/trunk/content/dev-doc/getting-started.mdtext?rev=1471018&r1=1471017&r2=1471018&view=diff
==============================================================================
--- ace/site/trunk/content/dev-doc/getting-started.mdtext (original)
+++ ace/site/trunk/content/dev-doc/getting-started.mdtext Tue Apr 23 15:40:22 
2013
@@ -144,13 +144,16 @@ There actually are a few more, but these
 The next step is to create an archive for the server, so we end up with 
something we can actually run:
 
     :::sh
-    $ ant -f bin-build.xml package
+    $ ant package-bin
 
-Now, in the generated folder, two archives will have been created, and there 
are also subfolders with the same names as the archives that you can go into 
and run. You can start the server like this:
+Now, in the generated folder, an archive will have been created. You can unzip 
this archive, which should expose a couple of subfolders with the same names as 
the runnable projects that you can go into and run. You can start the "all in 
one" server like this:
 
     :::sh
-    $ cd generated/ace-devserver
-    $ sh run.sh
+    $ unzip apache-ace-1.0.0-bin.zip
+    $ cd server-allinone/
+    $ java -jar server-allinone.jar
+
+For other projects, the steps are similar to this: just go into the correct 
folder and launch the jar file.
 
 ### ...add an OSGi bundle
 


Reply via email to