You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by bd...@apache.org on 2013/10/01 12:05:50 UTC

svn commit: r1528028 - /sling/site/trunk/content/documentation/development/getting-and-building-sling.mdtext

Author: bdelacretaz
Date: Tue Oct  1 10:05:50 2013
New Revision: 1528028

URL: http://svn.apache.org/r1528028
Log:
tl:dr build instructions tweaks

Modified:
    sling/site/trunk/content/documentation/development/getting-and-building-sling.mdtext

Modified: sling/site/trunk/content/documentation/development/getting-and-building-sling.mdtext
URL: http://svn.apache.org/viewvc/sling/site/trunk/content/documentation/development/getting-and-building-sling.mdtext?rev=1528028&r1=1528027&r2=1528028&view=diff
==============================================================================
--- sling/site/trunk/content/documentation/development/getting-and-building-sling.mdtext (original)
+++ sling/site/trunk/content/documentation/development/getting-and-building-sling.mdtext Tue Oct  1 10:05:50 2013
@@ -18,12 +18,12 @@ If you already have the required svn (or
 
     $ svn co http://svn.apache.org/repos/asf/sling/trunk sling
     $ cd sling
-    $ export MAVEN_OPTS= (see below)
-    $ mvn clean install (maybe with -DskipTests if you know what you're doing)
+    $ export MAVEN_OPTS= # (see below)
+    $ mvn clean install # (maybe with -DskipTests if you know what you're doing)
     $ cd launchpad/builder
-    $ rm -rf ../builder/sling (if needed, to cleanup previous state)
-    $ export DBG="-Xmx384M -agentlib:jdwp..." (see below) 
-    $ java $DBG -jar target/org.apache.sling.launchpad... (see below)
+    $ rm -rf ../builder/sling # (if needed, to cleanup previous state)
+    $ export DBG="-Xmx384M -agentlib:jdwp..." # (see below) 
+    $ java $DBG -jar target/org.apache.sling.launchpad... # (see below)
     
 And Sling should be running at http://localhost:8080 with remote debugging active as per the $DBG variable.