commit | 98e124b480d37916caefe2fc56a658bb2ca2e38f | [log] [tgz] |
---|---|---|
author | Jonathan Gallimore <jon@jrg.me.uk> | Tue Jul 14 20:13:46 2020 +0100 |
committer | Jonathan Gallimore <jon@jrg.me.uk> | Tue Jul 14 20:13:46 2020 +0100 |
tree | 9cf9ed5bba35e2f6441f9de0759533979416d891 | |
parent | 7f1b19e36b5427b1e31a1953dcb8230ea90892be [diff] |
update activemq
Title: Buildling Instructions
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
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
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