You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2020/04/10 17:17:38 UTC

[maven-surefire] branch SUREFIRE-1770 updated (c32ee4b -> e7a7b6f)

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

hboutemy pushed a change to branch SUREFIRE-1770
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git.


 discard c32ee4b  [SUREFIRE-1770] make build Reproducible
 discard f899fa6  [SUREFIRE-1770] make build Reproducible
     new e7a7b6f  [SUREFIRE-1770] make build Reproducible

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   (c32ee4b)
            \
             N -- N -- N   refs/heads/SUREFIRE-1770 (e7a7b6f)

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:


[maven-surefire] 01/01: [SUREFIRE-1770] make build Reproducible

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

hboutemy pushed a commit to branch SUREFIRE-1770
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git

commit e7a7b6f12c7ce6f593203def47386d58a58ba8f8
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Wed Apr 8 22:52:23 2020 +0200

    [SUREFIRE-1770] make build Reproducible
---
 pom.xml | 19 ++++++++++++++++++-
 1 file changed, 18 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index f4f992e..5d4198d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@
   <parent>
     <artifactId>maven-parent</artifactId>
     <groupId>org.apache.maven</groupId>
-    <version>33</version>
+    <version>34</version>
   </parent>
 
   <groupId>org.apache.maven.surefire</groupId>
@@ -106,6 +106,7 @@
     <maven.compiler.testSource>1.${javaVersion}</maven.compiler.testSource>
     <maven.compiler.testTarget>1.${javaVersion}</maven.compiler.testTarget>
     <jvm.args.tests>-Xms128m -Xmx144m -XX:SoftRefLRUPolicyMSPerMB=50 -Djava.awt.headless=true -Djdk.net.URLClassPath.disableClassPathURLCheck=true</jvm.args.tests>
+    <project.build.outputTimestamp>2020-04-07T21:04:00Z</project.build.outputTimestamp>
   </properties>
 
   <dependencyManagement>
@@ -454,10 +455,26 @@
     </dependency>
   </dependencies>
 
+  <repositories>
+    <repository><!-- useful to resolve maven-shade-plugin 3.2.3-SNAPSHOT -->
+      <id>apache.snapshots</id>
+      <name>Apache Snapshot Repository</name>
+      <url>https://repository.apache.org/snapshots</url>
+      <releases>
+        <enabled>false</enabled>
+      </releases>
+    </repository>
+  </repositories>
+
   <build>
     <pluginManagement>
       <plugins>
         <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-shade-plugin</artifactId>
+          <version>3.2.3-SNAPSHOT</version>
+        </plugin>
+        <plugin>
           <groupId>org.codehaus.mojo</groupId>
           <artifactId>build-helper-maven-plugin</artifactId>
           <version>1.12</version>