You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ke...@apache.org on 2012/09/25 07:43:06 UTC

svn commit: r1389713 - /incubator/cloudstack/site/trunk/content/cloudstack/develop/environment.mdtext

Author: ke4qqq
Date: Tue Sep 25 05:43:05 2012
New Revision: 1389713

URL: http://svn.apache.org/viewvc?rev=1389713&view=rev
Log:
Patch for environment.mdtext providing updated directions on setting up a cloudstack dev environment from Donal Lafferty

Modified:
    incubator/cloudstack/site/trunk/content/cloudstack/develop/environment.mdtext

Modified: incubator/cloudstack/site/trunk/content/cloudstack/develop/environment.mdtext
URL: http://svn.apache.org/viewvc/incubator/cloudstack/site/trunk/content/cloudstack/develop/environment.mdtext?rev=1389713&r1=1389712&r2=1389713&view=diff
==============================================================================
--- incubator/cloudstack/site/trunk/content/cloudstack/develop/environment.mdtext (original)
+++ incubator/cloudstack/site/trunk/content/cloudstack/develop/environment.mdtext Tue Sep 25 05:43:05 2012
@@ -57,11 +57,12 @@ Now we set the environment variables:
 
 ###Install Ant
 
-You don't need to install Ant yourself, but you do need to set up the copy of Ant that's included in Apache CloudStack source:
+If `ant` is not already installed, you can install it using Yum or APT. Depending on which Linux distribution you use one of these commands:
 
-`export PATH=/cloudstack_source_dir/tools/ant/apache-ant-1.7.1/bin/:$PATH`
+`yum install ant`
+
+`apt-get install ant`
 
-**Note**: You should also add this to your `~/.bashrc`.
 
 ###Install MySQL
 
@@ -73,6 +74,10 @@ Next, we'll install MySQL if it's not al
 
 ##Compile and Deploy
 
+To pull in dependencies, go to the cloudstack source folder and run:
+
+`mvn -P deps`
+
 To compile Apache CloudStack, go to the cloudstack source folder and run:
 
 `ant clean-all build-all`