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/04/03 18:35:43 UTC

[maven-reporting-exec] branch stabilize updated: Pass https.protocols to maven-invoker-plugin Use more recent maven-site-plugin (makes classloader issues disappear)

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-reporting-exec.git


The following commit(s) were added to refs/heads/stabilize by this push:
     new 1ccaece  Pass https.protocols to maven-invoker-plugin Use more recent maven-site-plugin (makes classloader issues disappear)
1ccaece is described below

commit 1ccaecebaccdd5d07ae1e0e22ca48b14c0e3bf39
Author: rfscholte <rf...@apache.org>
AuthorDate: Wed Apr 3 20:35:36 2019 +0200

    Pass https.protocols to maven-invoker-plugin
    Use more recent maven-site-plugin (makes classloader issues disappear)
---
 pom.xml                                      |  2 ++
 src/it/pluginManagement_dependencies/pom.xml | 13 ++++++++++++-
 2 files changed, 14 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index da08233..594e3de 100644
--- a/pom.xml
+++ b/pom.xml
@@ -337,6 +337,8 @@
           <properties>
             <maven.compiler.source>${maven.compiler.source}</maven.compiler.source>
             <maven.compiler.target>${maven.compiler.target}</maven.compiler.target>
+            <!-- e.g. ensure that Java7 picks up TLSv1.2 when connecting with Central -->
+            <https.protocols>${https.protocols}</https.protocols>
           </properties>
         </configuration>
         <executions>
diff --git a/src/it/pluginManagement_dependencies/pom.xml b/src/it/pluginManagement_dependencies/pom.xml
index 9ad03e6..8d09ab5 100644
--- a/src/it/pluginManagement_dependencies/pom.xml
+++ b/src/it/pluginManagement_dependencies/pom.xml
@@ -49,7 +49,7 @@ under the License.
         </plugin>
         <plugin>
           <artifactId>maven-site-plugin</artifactId>
-          <version>3.3</version>
+          <version>3.7.1</version>
           <dependencies>
             <dependency>
               <groupId>@project.groupId@</groupId>
@@ -73,6 +73,17 @@ under the License.
           </reportSet>
         </reportSets>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>index</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
     </plugins>
   </reporting>
 </project>