This is an automated email from the git hooks/post-receive script. New commit to branch master in repository topia-sample-project. See https://gitlab.nuiton.org/nuiton/topia-sample-project.git commit 34c1e039bb8486ca5c1ad26bfd2d0d221c91c0c9 Author: Brendan Le Ny <bleny@codelutin.com> Date: Mon Oct 23 11:00:54 2017 +0200 Check that sample project can be built with latest stables and snapshots via gitlab CI --- .gitlab-ci.yml | 16 +++++++++++++++- pom.xml | 2 +- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fed5e44..31c0c53 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,21 @@ stages: - build -maven: +maven-build: image: registry.nuiton.org/codelutin/dockerfiles:maven-release stage: build script: mvn --batch-mode clean package + +maven-build-with-latest-stables: + image: registry.nuiton.org/codelutin/dockerfiles:maven-release + stage: build + script: + - mvn versions:update-properties + - mvn --batch-mode clean package + +maven-build-with-latest-snapshots: + image: registry.nuiton.org/codelutin/dockerfiles:maven-release + stage: build + script: + - mvn versions:update-properties -DallowSnapshots + - mvn --batch-mode clean package diff --git a/pom.xml b/pom.xml index 2d5cab0..be1b880 100644 --- a/pom.xml +++ b/pom.xml @@ -11,7 +11,7 @@ <properties> <eugeneVersion>3.0-alpha-10</eugeneVersion> - <topiaVersion>3.3.1-SNAPSHOT</topiaVersion> + <topiaVersion>3.3</topiaVersion> </properties> <dependencies> -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.