Wercker Maven Step
A Wercker step to run Apache Maven build tasks.
This step will download and install Maven, and then execute the goals you have
requested. You must provide your pom.xml and you may optionally also provide
a settings.xml and a settings-security.xml.
Downloading and installing Maven as part of the step (rather than having it
preinstalled in the box) will avoid having Maven installed in the
container/image that is built by your pipeline, this includes the M2_HOME
and local repository, which could result in quite a space saving, especially
if you have a lot of transitive dependencies.
Requirements
The box must have a JDK installed in it (as Maven requires a JDK).
If you're running a box that does not have maven pre-installed, you must have curl, tar, gzip, and sha1sum installed to download and install Maven. Additionally, procps must be installed to prevent failures when surefire attempts to fork JVM processes to run tests. This requirement (for procps) will likely be removed when surefire 0.22 is released.
Usage
To use this step, include it in your wercker.yml pipeline. This example
assumes that the box already has Maven installed.
build:
box: maven:3.5.2-jdk-8
steps:
- wercker/maven:
goals: clean install
settings: my-settings.xml
profiles: prod
Alternatively, if you'd like to install a specific version of maven on the box before building, simply use the following example:
build:
steps:
- wercker/maven:
goals: clean install
settings: my-settings.xml
profiles: prod
version: 3.5.2
Parameters
All parameters are optional unless otherwise specified.
-
pomThe name of the Maven POM file to use. If not specified, the value is assumed to bepom.xml. -
settingsIf you wish to provide your ownsettings.xmlfile, use this parameter to specify the filename of the file you wish to have Maven use as thesettings.xml. -
security_settingsIf you wish to provide you ownsettings-security.xmlfile, use this parameter to specify the filename of the file you wish to have Maven use as thesettings-security.xml. -
goals(required) Specify the Maven goals to execute. This should be a space-separated list of goals (and/or phases). -
profilesIf you wish to enable any profiles, provide a comma-separated list of profile names. -
maven_optsThis parameter allows you to provide any settings you wish to have included in theMAVEN_OPTS. For example, you may wish to specify Maven use a larger heap by specifying something likeMAVEN_OPTS="-Xmx1024m". -
debugRun Maven with the debug flags (-X -e) turned on. -
versionIf you would like to install Maven, specify which version you wish to use. (Only Maven versions 3.x.x are supported). If not specified, it is expected that Maven is already be installed. You can find a list of available versions from https://www.apache.org/dist/maven/maven-3/. -
cache_repoIf set totruethen the Maven local repository will be placed in the Wercker cache, meaning that it will still be available in subsequent builds (unless the cache is cleared) and thereby reducing the time required to download all the dependencies, plugins, etc. The default value is currentlyfalsedue to bug https://github.com/wercker/wercker/issues/139, but this may be changed in the future, when that bug is resolved. -
sudo_userIf provided, Maven will be executed using this user. You must ensure the user is created andsudois installed before running the maven step.
Sample Application
A sample application is provided at https://github.com/markxnelson/sample-maven-step that demonstrates how to use this step.
Contributing to this repository
Oracle welcomes contributions to this repository from anyone. Please see CONTRIBUTING for more information.