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