You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by jo...@apache.org on 2015/02/02 04:40:34 UTC

svn commit: r1656385 - /incubator/nifi/site/trunk/content/development/quickstart.md

Author: joewitt
Date: Mon Feb  2 03:40:33 2015
New Revision: 1656385

URL: http://svn.apache.org/r1656385
Log:
cleaned up a bit

Modified:
    incubator/nifi/site/trunk/content/development/quickstart.md

Modified: incubator/nifi/site/trunk/content/development/quickstart.md
URL: http://svn.apache.org/viewvc/incubator/nifi/site/trunk/content/development/quickstart.md?rev=1656385&r1=1656384&r2=1656385&view=diff
==============================================================================
--- incubator/nifi/site/trunk/content/development/quickstart.md (original)
+++ incubator/nifi/site/trunk/content/development/quickstart.md Mon Feb  2 03:40:33 2015
@@ -10,12 +10,6 @@ Apache NiFi source code is version contr
 
 The code is also mirrored to [Github][githubrepo]
 
-The code as it was initially contributed and entered the incubator is on the 'master' branch.
-
-To view the lastest codebase as we work toward an initial release checkout the 'develop' branch.
-
-All guidance that follows assumes you are working on the 'develop' branch.
-
 ## Issue Tracking
 
 Track issues on the "NIFI" Project on the Apache Jira ([browse][jira]).
@@ -35,11 +29,15 @@ Then checkout the 'develop' branch
 ### Build steps
 
 1. You need a recent Java 7 (or newer) JDK.
-2. You need Apache [Maven 3.X][maven]. We've successfully used 3.2.3 and as far back as 3.0.5
-3. Build the maven plugins.  In the root dir of the source tree cd to `nifi-nar-maven-plugin`.
-   Run `mvn clean install`
-4. Build the entire code base.  In the root dir of the source tree cd to `nifi` and run `mvn -T C2.0 clean install`
-   You can tweak the maven build settings as you like but the previous command will execute with 2 threads per core.
+2. You need Apache [Maven 3.X][maven]. 
+    - We've successfully used 3.2.3 and as far back as 3.0.5
+3. [OPTIONAL] Build the nifi nar maven plugin.  
+    - In the root dir of the source tree cd to `nifi-nar-maven-plugin`.
+    - Run `mvn clean install`
+4. Build the main nifi code base.  
+    - In the root dir of the source tree cd to `nifi` 
+    - run `mvn -T C2.0 clean install`
+    - You can tweak the maven build settings as you like but the previous command will execute with 2 threads per core.
 
 Now you should have a fully functioning build off the latest code in the develop branch.