You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2019/08/13 19:57:53 UTC

[maven-dependency-plugin] branch GITHUB_ACTIONS updated (5208cb2 -> 66435b2)

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

khmarbaise pushed a change to branch GITHUB_ACTIONS
in repository https://gitbox.apache.org/repos/asf/maven-dependency-plugin.git.


 discard 5208cb2  Change name of pipeline.
     new 66435b2  Change name of pipeline.

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   (5208cb2)
            \
             N -- N -- N   refs/heads/GITHUB_ACTIONS (66435b2)

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/plugins/dependency/fromConfiguration/TestUnpackMojo.java   | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)


[maven-dependency-plugin] 01/01: Change name of pipeline.

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

khmarbaise pushed a commit to branch GITHUB_ACTIONS
in repository https://gitbox.apache.org/repos/asf/maven-dependency-plugin.git

commit 66435b225e7885f44b25207e025469f6d5237107
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Mon Aug 12 23:45:05 2019 +0200

    Change name of pipeline.
---
 .github/workflows/maven.yml                                          | 2 +-
 .../maven/plugins/dependency/fromConfiguration/TestUnpackMojo.java   | 5 ++---
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index ec7adf1..1098734 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -15,7 +15,7 @@
 # specific language governing permissions and limitations
 # under the License.
 #
-name: Aapche Maven Dependency Plugin
+name: MDEP
 on:
   push:
     branches:
diff --git a/src/test/java/org/apache/maven/plugins/dependency/fromConfiguration/TestUnpackMojo.java b/src/test/java/org/apache/maven/plugins/dependency/fromConfiguration/TestUnpackMojo.java
index c9ba0eb..28988ce 100644
--- a/src/test/java/org/apache/maven/plugins/dependency/fromConfiguration/TestUnpackMojo.java
+++ b/src/test/java/org/apache/maven/plugins/dependency/fromConfiguration/TestUnpackMojo.java
@@ -542,7 +542,7 @@ public class TestUnpackMojo
         mojo.setSilent( false );
         stubFactory.setCreateFiles( true );
         Artifact artifact = stubFactory.getSnapshotArtifact();
-        assertTrue( artifact.getFile().setLastModified( now - 20000 ) );
+        assertTrue( artifact.getFile().setLastModified( now - 10000 ) );
 
         ArtifactItem item = new ArtifactItem( createArtifact( artifact ) );
 
@@ -555,8 +555,7 @@ public class TestUnpackMojo
         // round down to the last second
         long time = now;
         time = time - ( time % 1000 );
-        // go back 10 more seconds for linux
-        time -= 10000;
+
         // set to known value
         assertTrue( unpackedFile.setLastModified( time ) );
         // set source to be newer was 4s but test is brittle on MacOS if less than 5s