[maven-release-plugin] copy for tag tomee-7.0.6
[maven-release-plugin] prepare release tomee-7.0.6
260 files changed
tree: e5880b32f0ec044b79c711d9325f6f62d49eea10
  1. arquillian/
  2. assembly/
  3. container/
  4. examples/
  5. gradle/
  6. itests/
  7. maven/
  8. server/
  9. src/
  10. tck/
  11. tomee/
  12. utils/
  13. .gitattributes
  14. .gitignore
  15. doap_tomee.rdf
  16. docker-compose.yml
  17. LICENSE
  18. NOTICE
  19. owasp-dc-suppression.xml
  20. pom.xml
  21. rat.xml
  22. README.md
  23. test-output.xml
  24. 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