tree: bb019bfdca4f234eacde4399af375556b0aa8a41 [path history] [tgz]
  1. arquillian/
  2. assembly/
  3. boms/
  4. container/
  5. docs/
  6. examples/
  7. gradle/
  8. itests/
  9. maven/
  10. mp-jwt/
  11. server/
  12. src/
  13. tck/
  14. tomee/
  15. utils/
  16. .gitattributes
  17. .gitignore
  18. doap_tomee.rdf
  19. docker-compose.yml
  20. LICENSE
  21. NOTICE
  22. owasp-dc-suppression.xml
  23. pom.xml
  24. rat.xml
  25. README.md
  26. test-output.xml
  27. walkmod.xml
README.md

Title: Buildling Instructions

Basic Usage

Apache TomEE is built with Apache Maven.

Simply use

$> mvn clean install

on your commandline to kick off the compile process of TomEE

If you intend building in environments where multicast is not allowed then build with:

$> mvn clean install -DskipMulticastTests=true

Full build can be executed with (will execute arquillian test on all TomEE distributions)

$> mvn clean install -Pall-adapters

Quick Build

If you only like to compile all classes and package up TomEE without running tests then you can use the following build options

mvn -Pquick -Dsurefire.useFile=false -DdisableXmlReport=true -DuniqueVersion=false -ff -Dassemble -DskipTests -DfailIfNoTests=false clean install

Direct builds

To build TomEE just execute:

$> mvn clean install -pl tomee/apache-tomee -am -Dmaven.test.skip=true

TomEE zip/tar.gz will be in tomee/apache-tomee/target

To build TomEE Embedded to be able to develop with its maven plugin execute:

$> mvn clean install -pl maven/tomee-embedded-maven-plugin -am -Dmaven.test.skip=true