Make space for multimodule-proposal branch code (JSPF-63)
Prefer to copy single subfolders instead of copy the branch over trunk because some tool is unhappy when the main folder is replaced.

git-svn-id: https://svn.apache.org/repos/asf/james/jspf/trunk@686996 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/BUILDING.txt b/BUILDING.txt
new file mode 100644
index 0000000..29be9ae
--- /dev/null
+++ b/BUILDING.txt
@@ -0,0 +1,30 @@
+#############################################################################
+# BUILDING JSPF
+#############################################################################
+
+You will need to install maven2 as well as acquire jSPF source from subversion 
+or a source tarball.
+
+Steps:
+
+1) Install maven2 (v2.0.9 as of the time of this writing)
+
+2) Add maven2 to your path.  For me, I do the following:
+   $ tar zxvf maven-2.0.9.tar.gz
+   $ mv maven-2.0.9 /usr/local
+   $ ln -sf /usr/local/maven-2.0.9/bin/mvn /usr/local/bin/mvn
+
+3) [offline build support] Change directory to jspf/stage dir
+   $ cd jspf-x/stage
+
+4) [offline build support] Locally install preprequisite dependencies
+   $ mvn -Plocal compile
+
+5) Change directory to jspf source dir
+   $ cd jspf-x/
+   
+6) Run the build (the "-Plocal" restrict maven to use bundled dependencies)
+   $ mvn -Plocal package
+
+That's it.  Please contact server-dev@james.apache.org if you have any
+problems.
\ No newline at end of file