You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2019/07/08 10:50:12 UTC

[maven-site-plugin] branch MSITE-846 created (now a797506)

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

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


      at a797506  [MSITE-846] Maven Failsafe Plugin version range causes tests failures

This branch includes the following new commits:

     new a797506  [MSITE-846] Maven Failsafe Plugin version range causes tests failures

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-site-plugin] 01/01: [MSITE-846] Maven Failsafe Plugin version range causes tests failures

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit a797506902938d8c42b62e3c174b3ebae88c5a9a
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 13db5f1..78d2c23 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>
   </properties>
 
   <dependencies>
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>