2021-06-28 02:07:45 -04:00
# To contribute improvements to CI/CD templates, please follow the Development guide at:
# https://docs.gitlab.com/ee/development/cicd/templates.html
# This specific template is located at:
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Maven.gitlab-ci.yml
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/
2019-05-29 20:13:06 -04:00
#
2016-07-06 04:17:31 -04:00
# For general lifecycle information see https://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html
2019-05-29 20:13:06 -04:00
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.
2019-11-13 16:06:45 -05:00
# * 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"
2019-06-03 14:00:55 -04:00
# This template uses jdk8 for verifying and deploying images
image : maven:3.3.9-jdk-8
2016-07-06 04:17:31 -04:00
# 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 :
2021-03-12 07:09:33 -05:00
variables :
- $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
2016-07-06 04:17:31 -04:00
# Verify merge requests using JDK8
verify:jdk8 :
<< : *verify
2019-05-30 19:16:46 -04:00
# To deploy packages from CI, create a ci_settings.xml file
2021-02-10 10:11:19 -05:00
# For deploying packages to GitLab's Maven Repository: See https://docs.gitlab.com/ee/user/packages/maven_repository/index.html#create-maven-packages-with-gitlab-cicd for more details.
2019-05-30 19:16:46 -04:00
# Please note: The GitLab Maven Repository is currently only available in GitLab Premium / Ultimate.
2019-11-13 16:06:45 -05:00
# For `master` branch run `mvn deploy` automatically.
2019-05-30 17:13:12 -04:00
deploy:jdk8 :
stage : deploy
script :
- if [ ! -f ci_settings.xml ];
2021-02-10 10:11:19 -05:00
then echo "CI settings missing\! If deploying to GitLab Maven Repository, please see https://docs.gitlab.com/ee/user/packages/maven_repository/index.html#create-maven-packages-with-gitlab-cicd for instructions.";
2019-05-30 17:13:12 -04:00
fi
- 'mvn $MAVEN_CLI_OPTS deploy -s ci_settings.xml'
only :
2021-03-12 07:09:33 -05:00
variables :
- $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH