Tony CHEMIT pushed to branch develop at ultreiaio / ird-observe Commits: 3f222899 by Tony CHEMIT at 2017-03-30T16:38:02+02:00 fix release build (for site generation and demo deployement) - - - - - 2 changed files: - .gitlab-ci.yml - pom.xml Changes: ===================================== .gitlab-ci.yml ===================================== --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -49,7 +49,7 @@ stages: .deploy_site: &deploy_site script: - - mvn clean verify site -DperformRelease scm-publish:publish-scm + - mvn clean install site -DperformRelease scm-publish:publish-scm .deploy_demo_latest: &deploy_demo_latest stage: Test ===================================== pom.xml ===================================== --- a/pom.xml +++ b/pom.xml @@ -757,6 +757,15 @@ <build> + <!-- Enabling the use of scpexe with maven 3.0 --> + <extensions> + <extension> + <groupId>org.apache.maven.wagon</groupId> + <artifactId>wagon-ssh-external</artifactId> + <version>2.2</version> + </extension> + </extensions> + <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> View it on GitLab: https://gitlab.com/ultreiaio/ird-observe/commit/3f22289994a00454eb32d52df4b5...