2019-05-27 14:26:03 -04:00
# This file is a template, and might need editing before it works on your project.
2016-07-06 04:17:31 -04:00
# Build JAVA applications using Apache Maven (http://maven.apache.org)
# For docker image tags see https://hub.docker.com/_/maven/
# For general lifecycle information see https://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html
2019-05-27 14:26:03 -04:00
# This template will build and test your projects
2016-07-06 04:17:31 -04:00
# * Caches downloaded dependencies and plugins between invocation.
2017-10-12 09:12:25 -04:00
# * Verify but don't deploy merge requests.
# * Deploy built artifacts from master branch only.
2016-07-06 04:17:31 -04:00
variables :
2018-10-30 06:53:01 -04:00
# This will suppress any download for dependencies and plugins or upload messages which would clutter the console log.
2016-07-06 04:17:31 -04:00
# `showDateTime` will show the passed time in milliseconds. You need to specify `--batch-mode` to make this work.
2018-09-08 01:26:32 -04:00
MAVEN_OPTS : "-Dhttps.protocols=TLSv1.2 -Dmaven.repo.local=$CI_PROJECT_DIR/.m2/repository -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=WARN -Dorg.slf4j.simpleLogger.showDateTime=true -Djava.awt.headless=true"
2016-07-06 04:17:31 -04:00
# As of Maven 3.3.0 instead of this you may define these options in `.mvn/maven.config` so the same config is used
# when running from the command line.
2017-10-12 09:12:25 -04:00
# `installAtEnd` and `deployAtEnd` are only effective with recent version of the corresponding plugins.
2016-07-06 04:17:31 -04:00
MAVEN_CLI_OPTS : "--batch-mode --errors --fail-at-end --show-version -DinstallAtEnd=true -DdeployAtEnd=true"
# Cache downloaded dependencies and plugins between builds.
2018-05-09 07:06:41 -04:00
# To keep cache across branches add 'key: "$CI_JOB_NAME"'
2016-07-06 04:17:31 -04:00
cache :
paths :
2017-03-08 18:16:47 -05:00
- .m2/repository
2016-07-06 04:17:31 -04:00
# For merge requests do not `deploy` but only run `verify`.
# See https://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html
.verify : &verify
stage : test
script :
2019-05-27 14:26:03 -04:00
- 'mvn $MAVEN_CLI_OPTS verify'
2016-07-06 04:17:31 -04:00
except :
- master
# Verify merge requests using JDK8
verify:jdk8 :
<< : *verify
image : maven:3.3.9-jdk-8
# For `master` branch run `mvn deploy` automatically.
deploy:jdk8 :
stage : deploy
script :
2019-05-27 14:26:03 -04:00
- if [ ! -f ci_settings.xml ];
then echo CI settings missing, please see https://gitlab.com/help/user/project/packages/maven_repository.md#creating-maven-packages-with-gitlab-cicd for instructions.;
fi
- 'cp ci_settings.xml /root/.m2/settings.xml'
- 'mvn $MAVEN_CLI_OPTS deploy'
2016-07-06 04:17:31 -04:00
only :
- master
2019-05-27 14:26:03 -04:00
image : maven:3.3.9-jdk-8