branch master updated (a782801 -> 34c1e03)
This is an automated email from the git hooks/post-receive script. New change to branch master in repository topia-sample-project. See https://gitlab.nuiton.org/nuiton/topia-sample-project.git from a782801 Configure gitlab-ci with a simple build new 34c1e03 Check that sample project can be built with latest stables and snapshots via gitlab CI The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: 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 Summary of changes: .gitlab-ci.yml | 16 +++++++++++++++- pom.xml | 2 +- 2 files changed, 16 insertions(+), 2 deletions(-) -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
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>.
participants (1)
-
nuiton.org scm