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:21 UTC

[maven-site-plugin] branch MSITE-846 updated (4d29f84 -> 0d08fa5)

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

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


 discard 4d29f84  [MSITE-846] Maven Failsafe Plugin version range causes tests failures
     add e802657  [maven-release-plugin] prepare release maven-site-plugin-3.9.0
     add 048b89b  [maven-release-plugin] prepare for next development iteration
     new 0d08fa5  [MSITE-846] Maven Failsafe Plugin version range causes tests failures

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (4d29f84)
            \
             N -- N -- N   refs/heads/MSITE-846 (0d08fa5)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

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.


Summary of changes:
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


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

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