Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Running mvn in source root will download and setup dependency jars in ~/.m2/repository.

Code Block
$ mvn
$ mvn -P deps # or, explicitly specify the profile

Some modules require dependencies that are not freely available or have an incompatible license. These dependencies you need to donwload yourself. See to following instructions to add them to your maven repository.

...

Code Block
$ waf --package-version=4.0.0 --prerelease=rc1 --build-number=1 --oss rpm
Code Block

$ mvn install -P deps && ./waf rpm

Building DEB packages

On Master:

Code Block

$ mvn install -P deps && dpkg-buildpackage

Development

Starting the debug server from maven

...