Author: joewitt
Date: Fri Jan 16 02:33:45 2015
New Revision: 1652333
URL: http://svn.apache.org/r1652333
Log:
updated instructions to reflect new directory structure
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=1652333&r1=1652332&r2=1652333&view=diff
==============================================================================
--- incubator/nifi/site/trunk/content/development/quickstart.md (original)
+++ incubator/nifi/site/trunk/content/development/quickstart.md Fri Jan 16
02:33:45 2015
@@ -36,9 +36,9 @@ Then checkout the 'develop' branch
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 nar maven plugin. In the root dir of the source tree cd to
`nar-maven-plugin`.
+3. Build the maven plugins. In the root dir of the source tree cd to
`maven-plugins`.
Run `mvn clean install`
-4. Build the entire code base. In the root dir of the source tree run `mvn -T
C2.0 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.
Now you should have a fully functioning build off the latest code in the
develop branch.
@@ -54,7 +54,7 @@ to 8080 is a good start, but on systems
#### Decompress and launch
-Running the above build will create a tar.gz (and zip) file in
`assembly/target`. This tar.gz should
+Running the above build will create a tar.gz (and zip) file in
`nifi/assembly/target`. This tar.gz should
contain the full application. Decompressing the tar.gz should make a directory
for you containing several other
directories. `conf` contains application configuration, `bin` contains scripts
for launching the application. On linux and OSX, NiFi can be run using
`bin/nifi.sh <command>` where