You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2019/03/17 20:32:28 UTC

[maven-fluido-skin] branch stabilize created (now bfcbcf8)

This is an automated email from the ASF dual-hosted git repository.

rfscholte pushed a change to branch stabilize
in repository https://gitbox.apache.org/repos/asf/maven-fluido-skin.git.


      at bfcbcf8  pass https.protocols for Java 7

This branch includes the following new commits:

     new bfcbcf8  pass https.protocols for Java 7

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[maven-fluido-skin] 01/01: pass https.protocols for Java 7

Posted by rf...@apache.org.
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 <rf...@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>