summaryrefslogtreecommitdiffstats
path: root/sandbox/sebastien/java/distribution/base/src/main/release/src/BUILDING
diff options
context:
space:
mode:
authorjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2010-07-19 02:45:18 +0000
committerjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2010-07-19 02:45:18 +0000
commit1a8707aa6ad5e22117a9f17e88322a6ee824aa44 (patch)
tree260c9e61d2880452b627ac2bdcb4c4ba6d822380 /sandbox/sebastien/java/distribution/base/src/main/release/src/BUILDING
parenta19a7d3f51c1f079c99003b1f67768a386584e90 (diff)
Reorganize sandbox a little bit.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@965345 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/sebastien/java/distribution/base/src/main/release/src/BUILDING')
-rw-r--r--sandbox/sebastien/java/distribution/base/src/main/release/src/BUILDING55
1 files changed, 55 insertions, 0 deletions
diff --git a/sandbox/sebastien/java/distribution/base/src/main/release/src/BUILDING b/sandbox/sebastien/java/distribution/base/src/main/release/src/BUILDING
new file mode 100644
index 0000000000..65d09c5eae
--- /dev/null
+++ b/sandbox/sebastien/java/distribution/base/src/main/release/src/BUILDING
@@ -0,0 +1,55 @@
+Building the Apache Tuscany SCA 1.2 (incubating) April 2008 Release source distribution
+=======================================================================================
+
+Initial Setup
+-------------
+
+1) Install J2SE 5.0 SDK, which can be downloaded from
+ http://java.sun.com/j2se/1.5.0/download.jsp. Use version of 1.5.0_06 JDK or higher.
+
+2) Make sure that your JAVA_HOME environment variable is set to the newly installed
+ JDK location, and that your PATH includes %JAVA_HOME%\bin (windows) or
+ $JAVA_HOME$/bin (unix).
+
+3) Install Maven 2.0.7 or higher, which can be downloaded from
+ http://maven.apache.org/download.html. Make sure that your PATH includes
+ the MVN_HOME/bin directory.
+
+4) Make sure that your MAVEN_OPTS environment variable has -Xmx128M (or more),
+ you can manually do this by executing the following in your prompt :
+ Windows users:
+ set MAVEN_OPTS=-Xmx128M
+ Unix users:
+ export MAVEN_OPTS=-Xmx128M
+
+
+Building
+--------
+
+1) Change to the top level directory of Apache Tuscany source distribution.
+2) Run
+
+ $> mvn
+
+ This will compile Apache Tuscany and run all of the tests in the source
+ distribution.
+
+ Depending on the load of remote Maven 2.0 repositories, you may have
+ to run "mvn" several times utill the required dependencies are
+ all located in your local maven repository. It usually takes some time for
+ maven to download required dependencies in the first build. Once all the
+ dependencies have been downloaded you may use the -o option to run maven
+ in offline mode, for example, 'mvn clean install -o'.
+
+
+Building the distributions
+--------------------------
+
+1) Change to the distribution folder
+2) Run
+
+ $> mvn
+
+ This will build the binary and source distribution with .zip and .gz
+ formats in the distribution/target directory.
+