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:08:33 UTC

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

Author: bdelacretaz
Date: Tue Oct  1 10:08:33 2013
New Revision: 1528029

URL: http://svn.apache.org/r1528029
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=1528029&r1=1528028&r2=1528029&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:08:33 2013
@@ -4,14 +4,13 @@ Excerpt: A quick guide for getting the S
 
 A quick guide for getting the Sling source, then building and running the resulting Sling instance; either without or with Eclipse.
 
-Sling can easily be built:
-
-* from the command line (using SVN and the Maven command line tool)
-* or using Eclipse
-
-Note that you don't *have* to build Sling yourself, if you don't need the bleeding-edge stuff you can get prebuilt binaries from the [Downloads](/downloads.cgi) page.
-
-A full build of Sling takes 5-10 minutes on a recent computer once your local Maven repository is up to date. The first build may take much longer than that if you start with an empty local Maven repository, as Maven will then download its plugins and all the required dependencies.
+Note that you don't *have* to build Sling yourself, if you don't need the bleeding-edge stuff you can get prebuilt 
+binaries from the [Downloads](/downloads.cgi) page. But those, especially the launchpad runnable jar, are not released often
+and can be outdated. In case of doubt, built it yourself as shown below or ask on the Sling users mailing list.
+
+A full build of Sling takes 5-10 minutes on a recent computer once your local Maven repository is up to date. The first build 
+may take much longer than that if you start with an empty local Maven repository, as Maven will then download its plugins and 
+all the required dependencies.
 
 ## tl:dr - Short form build + run instructions 
 If you already have the required svn (or Git, see below) client, JDK and Maven installed, here's the short form recipe:
@@ -25,7 +24,7 @@ If you already have the required svn (or
     $ 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.      
+With this, Sling should be running at http://localhost:8080 with remote debugging active as per the $DBG variable.      
 
 ## Prerequisites