This is an automated email from the ASF dual-hosted git repository. rfscholte pushed a commit to branch stabilize in repository https://gitbox.apache.org/repos/asf/maven-fluido-skin.git
commit bfcbcf83bc554b47d9c48ea5f79203a5f1ab9108 Author: rfscholte <rfscho...@apache.org> AuthorDate: Sun Mar 17 21:32:19 2019 +0100 pass https.protocols for Java 7 --- pom.xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pom.xml b/pom.xml index 291ee5e..ca5a9d1 100644 --- a/pom.xml +++ b/pom.xml @@ -236,6 +236,9 @@ under the License. <profiles> <profile> <id>run-its</id> + <properties> + <maven.it.failure.ignore>false</maven.it.failure.ignore> + </properties> <build> <plugins> <plugin> @@ -249,6 +252,10 @@ under the License. <postBuildHookScript>verify</postBuildHookScript> <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath> <settingsFile>src/it/settings.xml</settingsFile> + <ignoreFailures>${maven.it.failure.ignore}</ignoreFailures> + <properties combine.children="merge"> + <https.protocols>${https.protocols}</https.protocols> + </properties> <pomIncludes> <pomInclude>*/pom.xml</pomInclude> </pomIncludes>