Versions Compared

Key

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

...

The following are some useful commands in working with the Fedora Maven2 builds

  1. Until dependencies are found in a public repository, the following script needs to be run
    • ./resources/scripts/installLibs.sh
  2. mvn clean install#*
    • builds all source code
    • runs all unit & integration tests
  3. mvn install -Dintegration.test.skip=true#*
    • runs all unit tests
    • skips all integration tests
  4. mvn install -Dmaven.test.skip=true#*
    • skips all unit tests
  5. Wiki Markup
    {{mvn integration-test \-P config\[A\|B\|Q\]}}#* 
    • runs
    • system
    • tests
    • per
    • given
    • configuration
  6. mvn install -P fedora-installer#*
    • generates fedora-installer.jar
    • found in /installer/target

...