commit | 92fa36608e01d34f1937f00efca240aa1a5a81aa | [log] [tgz] |
---|---|---|
author | Andy Gumbrecht <agumbrecht@tomitribe.com> | Tue Sep 26 11:18:24 2017 -0700 |
committer | Andy Gumbrecht <agumbrecht@tomitribe.com> | Tue Sep 26 11:18:24 2017 -0700 |
tree | 6aa1ab11092e44002fa07e33724d94e028b8548f | |
parent | 062cc9c046f5c732e76d7966f567fd40270f0047 [diff] |
Update CXF 3.1.13 JAXB 2.3.0 - Provided
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