Running the CXF CPIs
==============================================

This CPI script allows you to run CXF samples from
the command line with one simple command. 
 
Here are some example usages:

- Run all samples against the latest CXF (it will download the latest)
mvn install

- Skip all tests. This will only package/install the CPI scripts
to the maven repo. (useful for deploying!)  
mvn install -Dmaven.test.skip=true

- Run all samples against an existing CXF
mvn install -Dcxf.home=/path/to/cxf

- Run all samples against the latest CXF and run servlet samples 
mvn install -Dtomcat.home=/path/to/tomcat

- Run JMS samples against an existing ActiveMQ 
mvn install -Dactivemq.home=/path/to/amq -Dactivemq.version=123

- Override the samples location. 
mvn install -Dcxf.samples.home=${cxf.home}/samples/service_creation

- Run a subset of tests. A regex can be specified here.
mvn install -Dtest.pattern=name.of.test

