branch develop updated (5c110d1 -> 8c4bb08)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository pom. See http://git.nuiton.org/pom.git from 5c110d1 Revert "Update m-site-p to 3.5 (Fixes #3886)" new 8c4bb08 Introduce a new mandatory property ciViewId to set the exact ci url (Fixes #3883) 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 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) Summary of changes: pom.xml | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) -- 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 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>.
participants (1)
-
nuiton.org scm