This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository nuiton-version. See https://gitlab.nuiton.org/nuiton/nuiton-version.git commit a3bc1f9b7f5b3300a41e6e607d0e6d9943c4c65f Author: Eric Chatellier <chatellier@codelutin.com> Date: Mon Aug 24 14:52:18 2020 +0200 Add ci --- .gitlab-ci.yml | 41 +++++++++++++++++++++++++++++++++++++++++ pom.xml | 4 ++-- 2 files changed, 43 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..b2c2c5d --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,41 @@ +include: + - project: 'codelutin/ci' + file: '/ci.yml' + +image: registry.nuiton.org/codelutin/dockerfiles:maven-release + +stages: + - build + - deploy + - reporting + +build: + stage: build + script: + - mvn install + except: + - schedules + +snapshot: + stage: deploy + only: + - develop + script: + - mvn deploy -Prelease-profile + except: + - schedules + +pages: + stage: reporting +# only: +# - master + artifacts: + paths: + - public + script: + - mvn install && mvn site -Preporting + - mv target/site public + except: + - schedules + + diff --git a/pom.xml b/pom.xml index ab35c7c..ed8333c 100644 --- a/pom.xml +++ b/pom.xml @@ -26,7 +26,7 @@ <parent> <groupId>org.nuiton</groupId> <artifactId>nuitonpom</artifactId> - <version>11.8-SNAPSHOT</version> + <version>11.8</version> </parent> <artifactId>nuiton-version</artifactId> @@ -101,7 +101,7 @@ <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> - <version>3.10</version> + <version>3.11</version> </dependency> <dependency> -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.