Clone URL (Committers only): https://cms.apache.org/redirect?new=anonymous;action=diff;uri=http://cloudstack.apache.org/cloudstack%2Fdevelop%2Fenvironment.mdtext
dlafferty Index: trunk/content/cloudstack/develop/environment.mdtext =================================================================== --- trunk/content/cloudstack/develop/environment.mdtext (revision 1389171) +++ trunk/content/cloudstack/develop/environment.mdtext (working copy) @@ -57,12 +57,13 @@ ###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` -**Note**: You should also add this to your `~/.bashrc`. +`apt-get install ant` + ###Install MySQL Next, we'll install MySQL if it's not already present on the system. Again, use Yum or APT depending on the type of system you're doing development on. @@ -73,6 +74,10 @@ ##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`
