Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: We already download the deps a couple of steps back

...

Code Block
$ cd deps
$ ./install-non-oss.sh

If you want all dependencies downloaded into the deps folder (handy for ant builds)

Code Block

$ mvn -P deps -pl deps

Building CloudStack

Running the maven command in the top directory of the CloudStack sources will compile all sources for CloudStack and run the unittests. The resulting jar files will be in the directory target in the subdirectory for a particular module. The default build will have all components that depends on non OpenSource libraries disabled. If you want to enable this, just add -D nonoss to the mvn command line.

...