This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository pom. See http://git.nuiton.org/pom.git commit 8c4bb08f0a6e3cc9cc0ac01b40d096c0a6686891 Author: Tony CHEMIT <chemit@codelutin.com> Date: Mon Feb 22 18:28:43 2016 +0100 Introduce a new mandatory property ciViewId to set the exact ci url (Fixes #3883) --- pom.xml | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 01ca3ac..85c05f8 100644 --- a/pom.xml +++ b/pom.xml @@ -152,7 +152,7 @@ </issueManagement> <ciManagement> <system>jenkins</system> - <url>https://ci.${platform}/jenkins/${projectId}</url> + <url>https://ci.${platform}/jenkins/view/${ciViewId}</url> </ciManagement> <distributionManagement> <repository> @@ -176,6 +176,9 @@ --> <projectId /> + <!-- a proprerty to define the id of the ci view. --> + <ciViewId/> + <redmineDomain>forge.${platform}</redmineDomain> <!-- default encoding --> @@ -914,6 +917,27 @@ </execution> <execution> + <id>enforce-ciViewId</id> + <goals> + <goal>enforce</goal> + </goals> + <phase>validate</phase> + <configuration> + <rules> + <requireProperty> + <property>ciViewId</property> + <message>"ciViewId property must be specified."</message> + <regex>.+$</regex> + <regexMessage>"ciViewId property can not be empty."</regexMessage> + </requireProperty> + </rules> + <ignoreCache>true</ignoreCache> + <failFast>true</failFast> + <fail>true</fail> + </configuration> + </execution> + + <execution> <id>enforce-java-versions</id> <goals> <goal>enforce</goal> @@ -1911,6 +1935,7 @@ <properties> <platform>nuiton.org</platform> <projectId>pom</projectId> + <ciViewId>dummy</ciViewId> <!-- Deploy on central release repository --> <release.repository>${central.release.repository}</release.repository> <repository.home.url>${central.release.home.url}</repository.home.url> -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.