You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sl...@apache.org on 2020/03/08 20:37:22 UTC

[maven-site-plugin] 01/01: [MSITE-846] Maven Failsafe Plugin version range causes tests failures

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

slachiewicz pushed a commit to branch MSITE-846
in repository https://gitbox.apache.org/repos/asf/maven-site-plugin.git

commit 0d08fa56edcdd17e5f7e167f32e279163535ae33
Author: minfrin <mi...@users.noreply.github.com>
AuthorDate: Sun Jul 7 21:55:02 2019 +0100

    [MSITE-846] Maven Failsafe Plugin version range causes tests failures
    
    This closes #11
---
 pom.xml                                |  1 +
 src/it/projects/effective-site/pom.xml | 15 +++++++++++++++
 2 files changed, 16 insertions(+)

diff --git a/pom.xml b/pom.xml
index d9420a0..8bbc84e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -210,6 +210,7 @@ under the License.
     <pmdPluginVersion>3.11.0</pmdPluginVersion>
     <projectInfoReportsPluginVersion>2.7</projectInfoReportsPluginVersion>
     <surefirePluginVersion>2.22.1</surefirePluginVersion>
+    <failsafePluginVersion>2.22.1</failsafePluginVersion>
     <project.build.outputTimestamp>2020-03-06T20:49:49Z</project.build.outputTimestamp>
   </properties>
 
diff --git a/src/it/projects/effective-site/pom.xml b/src/it/projects/effective-site/pom.xml
index f9a9168..cb21363 100644
--- a/src/it/projects/effective-site/pom.xml
+++ b/src/it/projects/effective-site/pom.xml
@@ -43,6 +43,21 @@ under the License.
         <artifactId>maven-site-plugin</artifactId>
         <version>@project.version@</version>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-failsafe-plugin</artifactId>
+        <version>@failsafePluginVersion@</version>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <version>@surefirePluginVersion@</version>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <version>@javadocPluginVersion@</version>
+      </plugin>
     </plugins>
   </build>