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 2020/02/16 19:49:41 UTC

[maven-dependency-plugin] branch GITHUB_ACTIONS updated (c65c91c -> 80ae4e8)

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 c65c91c  Trigger test.
 discard 66435b2  Change name of pipeline.
 discard 5fa2b81  Fixed container names.
 discard 7c56272  Improved.
 discard c206373  Just using Maven Container.
 discard a77e18c  Renamed maiin to maven.yml
 discard 253bbd7  Fixing issue.
 discard b800c26  Added Copyright header to workflow file.
 discard ac89049  Added trigger for branches.
 discard 1ba66e2  Changed the trigger name.
 discard 5f14270  Another issue.
 discard f2ea7e3  Fixed tab/space issue.
 discard 1f4c69b  Testing GitHub Actions.
     add 28e4e02  Add integration test that verifies the bug is fixed
     add b0ee420  Ensure integration test uses latest plugin version
     add 3e39ea4  Rewrite go-offline so it resembles resolve-plugins
     add b489c8a  Add unit test for the ExcludeReactorProjectsArtifactFilter
     add 0b34f0a  Move license block the correct place
     add 01decd0  Perform transformation to artifact keys just once
     add 7b6dbfd  Don't replace original author
     add 9eb1987  Replace CapturingLog class with Mockito usage
     add 23b7ca8  MDEP-204 Transitively resolve both dependencies and plugins
     add a80f5cc  [MDEP-626] Upgrade struts and xerces due to CVEs  o This newer version doesn't depend on struts2-core or xercesImpl.  o Upgrade Doxia and add doxia-core
     add bac42d9  [MDEP-656] - Upgrade plexus-utils to 3.3.0
     add e897911  [MDEP-579] Regression: get goal does not pass server credentials to BasicRepositoryConnector
     add b53adb4  [MDEP-664] Restore disabled unit tests for Get goal
     add c419cd4  [MDEP-664] Restore disabled unit tests for Get goal
     add 9db8fdd  update asm as Mangaged dependency incl it
     add b32fcc3  [MDEP-663] - Update ASM so it works with Java 13
     add 05e4193  Apply Java 7 features
     add 7756c31  [MDEP-666] Re-enable integration test for tree goal
     add dd89289  [MDEP-666] Re-enable integration test for tree goal
     add 4f00b37  http to central not supported anymore, switch to https
     add 680c9cf  [MDEP-672] make build Reproducible
     add 765db38  (doc) Fix broken link to developpers mailing list
     new 586109d  Testing GitHub Actions.
     new e959b5e  Fixed tab/space issue.
     new 41df7da  Another issue.
     new 0a9c27d  Changed the trigger name.
     new 27d0af4  Added trigger for branches.
     new e80c54f  Added Copyright header to workflow file.
     new 2c4262e  Fixing issue.
     new 0daeaca  Renamed maiin to maven.yml
     new edaf77e  Just using Maven Container.
     new c7c4fae  Improved.
     new b623f25  Fixed container names.
     new 916ece6  Change name of pipeline.
     new 80ae4e8  Trigger test.

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   (c65c91c)
            \
             N -- N -- N   refs/heads/GITHUB_ACTIONS (80ae4e8)

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 13 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:
 CONTRIBUTING.md                                    |   4 +-
 README.md                                          |   2 +-
 pom.xml                                            |  63 +++++-
 .../invoker.properties                             |   4 +-
 .../module-1/pom.xml}                              |  22 +-
 .../module-2}/pom.xml                              |  47 ++---
 .../pom.xml                                        |  29 ++-
 .../invoker.properties                             |  38 ++--
 .../mdep-663_analyze_unsupported_version/pom.xml}  |  29 ++-
 .../src/main/java/Main.java                        |   7 +-
 src/it/projects/tree/invoker.properties            |   1 -
 .../plugins/dependency/DisplayAncestorsMojo.java   |   2 +-
 .../apache/maven/plugins/dependency/GetMojo.java   |  30 ++-
 .../dependency/PurgeLocalRepositoryMojo.java       |  33 +--
 .../dependency/analyze/AbstractAnalyzeMojo.java    |  12 +-
 .../plugins/dependency/analyze/AnalyzeDepMgt.java  |  12 +-
 .../dependency/analyze/AnalyzeDuplicateMojo.java   |   4 +-
 .../AbstractFromConfigurationMojo.java             |   9 +-
 .../dependency/fromConfiguration/ArtifactItem.java |   6 +-
 .../AbstractDependencyFilterMojo.java              |  10 +-
 .../fromDependencies/BuildClasspathMojo.java       |   4 +-
 .../dependency/resolvers/AbstractResolveMojo.java  |  43 +---
 .../ExcludeReactorProjectsArtifactFilter.java      |  94 +++++++++
 .../ExcludeReactorProjectsDependencyFilter.java    |  89 ++++++++
 .../dependency/resolvers/GoOfflineMojo.java        | 156 +++++++++++++-
 .../resolvers/ResolveDependenciesMojo.java         |  20 +-
 .../dependency/resolvers/ResolvePluginsMojo.java   |  34 ++-
 .../dependency/tree/TGFDependencyNodeVisitor.java  |   2 +-
 .../maven/plugins/dependency/tree/TreeMojo.java    |   2 +-
 .../dependency/utils/DependencyStatusSets.java     |  12 +-
 .../plugins/dependency/utils/DependencyUtil.java   |   3 +-
 .../dependency/utils/filters/DestFileFilter.java   |   2 +-
 .../dependency/utils/filters/MarkerFileFilter.java |   2 +-
 .../translators/ClassifierTypeTranslator.java      |   2 +-
 src/site/apt/index.apt.vm                          |   4 +-
 src/site/apt/usage.apt.vm                          |   6 +-
 .../maven/plugins/dependency/TestGetMojo.java      | 117 ++++++++--
 .../apache/maven/plugins/dependency/TestSkip.java  | 166 +--------------
 .../dependency/analyze/TestAnalyzeDepMgt.java      |  20 +-
 .../dependency/fromConfiguration/TestCopyMojo.java |  36 ++--
 .../TestIncludeExcludeUnpackMojo.java              |  10 +-
 .../fromConfiguration/TestUnpackMojo.java          |  26 +--
 .../fromDependencies/TestCopyDependenciesMojo.java |  10 +-
 .../TestUnpackDependenciesMojo2.java               |  10 +-
 .../ExcludeReactorProjectsArtifactFilterTest.java  | 101 +++++++++
 ...ExcludeReactorProjectsDependencyFilterTest.java | 170 +++++++++++++++
 .../testUtils/DependencyArtifactStubFactory.java   |   2 +-
 .../dependency/testUtils/DependencyTestUtils.java  |   6 +-
 .../testUtils/stubs/DependencyProjectStub.java     | 235 +++++++++++----------
 .../plugins/dependency/tree/TestTreeMojo.java      |   9 +-
 .../dependency/utils/TestDependencyUtil.java       |   2 +-
 .../utils/filters/TestDestFileFilter.java          |   4 +-
 .../utils/filters/TestMarkerFileFilter.java        |  18 +-
 .../utils/filters/TestResolveMarkerFileFilter.java |   2 +-
 .../markers/TestDefaultMarkerFileHandler.java      |   6 +-
 .../markers/TestSourcesMarkerFileHandler.java      |   2 +-
 .../utils/markers/TestUnpackMarkerFileHandler.java |   8 +-
 .../translators/TestClassifierTypeTranslator.java  |   4 +-
 .../resources/unit/get-test/realm.properties}      |   7 +-
 .../get-test/repository/test/test/1.0/test-1.0.jar | Bin 0 -> 2178 bytes
 .../repository/test/test/1.0/test-1.0.jar.sha1     |   1 +
 .../repository/test/test/1.0/test-1.0.pom}         |  31 ++-
 .../repository/test/test/1.0/test-1.0.pom.sha1     |   1 +
 63 files changed, 1209 insertions(+), 634 deletions(-)
 copy src/it/projects/{analyze-ignore-dependency => mdep-204-go-offline-resolve-intermodule}/invoker.properties (79%)
 copy src/it/{mrm/repository/ResourceArtifact-1.0.pom => projects/mdep-204-go-offline-resolve-intermodule/module-1/pom.xml} (69%)
 copy src/it/projects/{analyze-dep-mgt => mdep-204-go-offline-resolve-intermodule/module-2}/pom.xml (60%)
 copy src/it/projects/{copy-from-reactor/child-a => mdep-204-go-offline-resolve-intermodule}/pom.xml (71%)
 copy src/it/projects/{mdep-578_display-reason-invalid-module => mdep-663_analyze_unsupported_version}/invoker.properties (95%)
 copy src/it/{mrm/repository/ResourceArtifact-1.0.pom => projects/mdep-663_analyze_unsupported_version/pom.xml} (59%)
 copy src/it/projects/{analyze-ignore-unused-declared-dependency => mdep-663_analyze_unsupported_version}/src/main/java/Main.java (98%)
 create mode 100644 src/main/java/org/apache/maven/plugins/dependency/resolvers/ExcludeReactorProjectsArtifactFilter.java
 create mode 100644 src/main/java/org/apache/maven/plugins/dependency/resolvers/ExcludeReactorProjectsDependencyFilter.java
 create mode 100644 src/test/java/org/apache/maven/plugins/dependency/resolvers/ExcludeReactorProjectsArtifactFilterTest.java
 create mode 100644 src/test/java/org/apache/maven/plugins/dependency/resolvers/ExcludeReactorProjectsDependencyFilterTest.java
 copy src/{it/projects/build-classpath-output-file-and-property/invoker.properties => test/resources/unit/get-test/realm.properties} (93%)
 create mode 100644 src/test/resources/unit/get-test/repository/test/test/1.0/test-1.0.jar
 create mode 100644 src/test/resources/unit/get-test/repository/test/test/1.0/test-1.0.jar.sha1
 copy src/{it/projects/mdep-572-unpack-tar-long-file/child1/assembly.xml => test/resources/unit/get-test/repository/test/test/1.0/test-1.0.pom} (60%)
 create mode 100644 src/test/resources/unit/get-test/repository/test/test/1.0/test-1.0.pom.sha1


[maven-dependency-plugin] 06/13: Added Copyright header to workflow file.

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 e80c54fcec5790c28fc8d89b4aa3450fcbd68d1a
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Mon Aug 12 22:58:41 2019 +0200

    Added Copyright header to workflow file.
---
 .github/workflows/main.yml | 20 +++++++++++++++++---
 1 file changed, 17 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 435f20e..288ac56 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -1,3 +1,20 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
 name: Aapche Maven Dependency Plugin
 on:
   push:
@@ -21,7 +38,6 @@ jobs:
     
     - name: Build
       run: |
-        set -e
         mvn -V --no-transfer-progress -B clean verify -Prun-its
         
       shell: bash  
@@ -39,7 +55,6 @@ jobs:
     
     - name: Build
       run: |
-        set -e
         mvn -V --no-transfer-progress -B clean verify -Prun-its
         
       shell: bash  
@@ -57,7 +72,6 @@ jobs:
     
     - name: Test
       run: |
-        set -e
         mvn -V --no-transfer-progress -B clean verify -Prun-its
         
       shell: bash


[maven-dependency-plugin] 13/13: Trigger test.

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 80ae4e8d34fdab5aa6abae1baf5d11c09683cf71
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Fri Aug 23 11:20:20 2019 +0200

    Trigger test.
---
 .github/workflows/maven.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 1098734..a946e97 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -15,6 +15,7 @@
 # specific language governing permissions and limitations
 # under the License.
 #
+# added comment to trigger build.
 name: MDEP
 on:
   push:


[maven-dependency-plugin] 03/13: Another issue.

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 41df7dada4e445f2fc8fdd371bf421ae9bb5b9f9
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Mon Aug 12 22:44:44 2019 +0200

    Another issue.
---
 .github/workflows/main.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 943692e..1d96a75 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -5,7 +5,7 @@ on:
     - master
   pull_request: 
     branches:
-		- MDEP-*
+    - MDEP-*
     - *
     
 jobs:


[maven-dependency-plugin] 08/13: Renamed maiin to maven.yml

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 0daeaca44ee46ea28e2815f2c66d7c3779b4d16e
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Mon Aug 12 23:12:00 2019 +0200

    Renamed maiin to maven.yml
---
 .github/workflows/{main.yml => maven.yml} | 1 -
 1 file changed, 1 deletion(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/maven.yml
similarity index 99%
rename from .github/workflows/main.yml
rename to .github/workflows/maven.yml
index 46db5f7..c704031 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/maven.yml
@@ -35,7 +35,6 @@ jobs:
     - uses: actions/checkout@master
       with:
         fetch-depth: 10
-    
     - name: Build
       run: mvn -V --no-transfer-progress -B clean verify -Prun-its
       shell: bash


[maven-dependency-plugin] 09/13: Just using Maven Container.

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 edaf77e4b80ab62ebf92d5fc884cea34de3328f2
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Mon Aug 12 23:18:06 2019 +0200

    Just using Maven Container.
---
 .github/workflows/maven.yml | 36 +-----------------------------------
 1 file changed, 1 insertion(+), 35 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index c704031..2fc684b 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -30,7 +30,7 @@ jobs:
   mdep_linux_11:
     name: Linux (OpenJDK 11)
     runs-on: ubuntu-latest
-    container: openjdk:11
+    container: maven:3.6.1-jdk-11-slim
     steps:
     - uses: actions/checkout@master
       with:
@@ -41,40 +41,6 @@ jobs:
       env:
        LC_ALL: en_US.UTF-8
 
-  mdep_linux_12:
-    name: Linux (OpenJDK 12)
-    runs-on: ubuntu-latest
-    container: openjdk:12
-    steps:
-    - uses: actions/checkout@master
-      with:
-        fetch-depth: 10
-    
-    - name: Build
-      run: |
-        mvn -V --no-transfer-progress -B clean verify -Prun-its
-        
-      shell: bash  
-      env:
-       LC_ALL: en_US.UTF-8
-
-  mdep_linux_13:
-    name: Linux (OpenJDK 13)
-    runs-on: ubuntu-latest
-    container: openjdk:13
-    steps:
-    - uses: actions/checkout@master
-      with:
-        fetch-depth: 10
-    
-    - name: Test
-      run: |
-        mvn -V --no-transfer-progress -B clean verify -Prun-its
-        
-      shell: bash
-      env:
-       LC_ALL: en_US.UTF-8
-  
   mdep_windows:
     name: Windows
     runs-on: windows-latest


[maven-dependency-plugin] 12/13: 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 916ece67ca4c53e4a0ee768ee0fae6ad9cc78c9e
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 eb3ae75..34c9f4b 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


[maven-dependency-plugin] 10/13: Improved.

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 c7c4fae88aa5587642d986c7d4dbaa37743e98b1
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Mon Aug 12 23:32:48 2019 +0200

    Improved.
---
 .github/workflows/maven.yml | 43 ++++++++++++++++++++++++++++++++++++++++---
 1 file changed, 40 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 2fc684b..dbdbfc6 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -27,8 +27,21 @@ on:
     - GITHUB*
     
 jobs:
+  mdep_linux_8:
+    name: Ubuntu (OpenJDK 8)
+    runs-on: ubuntu-latest
+    container: maven:3.6.1-jdk-8-slim
+    steps:
+    - uses: actions/checkout@master
+      with:
+        fetch-depth: 10
+    - name: Build
+      run: mvn -V --no-transfer-progress -B clean verify -Prun-its
+      shell: bash
+      env:
+       LC_ALL: en_US.UTF-8
   mdep_linux_11:
-    name: Linux (OpenJDK 11)
+    name: Ubuntu (OpenJDK 11)
     runs-on: ubuntu-latest
     container: maven:3.6.1-jdk-11-slim
     steps:
@@ -40,7 +53,32 @@ jobs:
       shell: bash
       env:
        LC_ALL: en_US.UTF-8
-
+  mdep_linux_12:
+    name: Ubuntu (OpenJDK 12)
+    runs-on: ubuntu-latest
+    container: maven:3.6.1-jdk-12-slim
+    steps:
+    - uses: actions/checkout@master
+      with:
+        fetch-depth: 10
+    - name: Build
+      run: mvn -V --no-transfer-progress -B clean verify -Prun-its
+      shell: bash
+      env:
+       LC_ALL: en_US.UTF-8
+  mdep_linux_13:
+    name: Ubuntu (OpenJDK 13)
+    runs-on: ubuntu-latest
+    container: maven:3.6.1-jdk-13-slim
+    steps:
+    - uses: actions/checkout@master
+      with:
+        fetch-depth: 10
+    - name: Build
+      run: mvn -V --no-transfer-progress -B clean verify -Prun-its
+      shell: bash
+      env:
+       LC_ALL: en_US.UTF-8
   mdep_windows:
     name: Windows
     runs-on: windows-latest
@@ -51,7 +89,6 @@ jobs:
    
     - run: choco install openjdk --version 12.0.2
       shell: bash
-    
     - name: Test
       run: |
         set -e


[maven-dependency-plugin] 04/13: Changed the trigger name.

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 0a9c27db758e15873e844d8c8023b2b2ce88e66a
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Mon Aug 12 22:46:54 2019 +0200

    Changed the trigger name.
---
 .github/workflows/main.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 1d96a75..2072c98 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -6,7 +6,7 @@ on:
   pull_request: 
     branches:
     - MDEP-*
-    - *
+    - GITHUB*
     
 jobs:
   mdep_linux_11:


[maven-dependency-plugin] 07/13: Fixing issue.

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 2c4262e5cda17b24f4d6492dab8094afea0e226f
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Mon Aug 12 23:01:56 2019 +0200

    Fixing issue.
---
 .github/workflows/main.yml | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 288ac56..46db5f7 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -37,10 +37,8 @@ jobs:
         fetch-depth: 10
     
     - name: Build
-      run: |
-        mvn -V --no-transfer-progress -B clean verify -Prun-its
-        
-      shell: bash  
+      run: mvn -V --no-transfer-progress -B clean verify -Prun-its
+      shell: bash
       env:
        LC_ALL: en_US.UTF-8
 


[maven-dependency-plugin] 01/13: Testing GitHub Actions.

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 586109d980b0e05707a07e67c0814e2a94ab02c0
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Mon Aug 12 22:40:03 2019 +0200

    Testing GitHub Actions.
---
 .github/workflows/main.yml | 85 ++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 85 insertions(+)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
new file mode 100644
index 0000000..c57ddcf
--- /dev/null
+++ b/.github/workflows/main.yml
@@ -0,0 +1,85 @@
+name: Aapche Maven Dependency Plugin
+on:
+  push:
+    branches:
+    - master
+  pull_request: 
+    branches:
+		- MDEP-*
+    - *
+    
+jobs:
+  mdep_linux_11:
+    name: Linux (OpenJDK 11)
+    runs-on: ubuntu-latest
+    container: openjdk:11
+    steps:
+    - uses: actions/checkout@master
+      with:
+        fetch-depth: 10
+    
+    - name: Build
+      run: |
+        set -e
+				mvn -V --no-transfer-progress -B clean verify -Prun-its
+        
+      shell: bash  
+      env:
+       LC_ALL: en_US.UTF-8
+
+  mdep_linux_12:
+    name: Linux (OpenJDK 12)
+    runs-on: ubuntu-latest
+    container: openjdk:12
+    steps:
+    - uses: actions/checkout@master
+      with:
+        fetch-depth: 10
+    
+    - name: Build
+      run: |
+        set -e
+				mvn -V --no-transfer-progress -B clean verify -Prun-its
+        
+      shell: bash  
+      env:
+       LC_ALL: en_US.UTF-8
+
+  mdep_linux_13:
+    name: Linux (OpenJDK 13)
+    runs-on: ubuntu-latest
+    container: openjdk:13
+    steps:
+    - uses: actions/checkout@master
+      with:
+        fetch-depth: 10
+    
+    - name: Test
+      run: |
+        set -e
+				mvn -V --no-transfer-progress -B clean verify -Prun-its
+        
+      shell: bash
+      env:
+       LC_ALL: en_US.UTF-8
+  
+  mdep_windows:
+    name: Windows
+    runs-on: windows-latest
+    steps:
+    - uses: actions/checkout@master
+      with:
+        fetch-depth: 10
+   
+    - run: choco install openjdk --version 12.0.2
+      shell: bash
+    
+    - name: Test
+      run: |
+        set -e
+        export JAVA_HOME="C:\Program Files\OpenJDK\jdk-12.0.2"
+				mvn -V --no-transfer-progress -B clean verify -Prun-its
+      
+      shell: bash
+      env:
+       LC_ALL: en_US.UTF-8


[maven-dependency-plugin] 05/13: Added trigger for branches.

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 27d0af482d2f390b7b4760c4d7606900b6f1ab57
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Mon Aug 12 22:50:22 2019 +0200

    Added trigger for branches.
---
 .github/workflows/main.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 2072c98..435f20e 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -3,6 +3,7 @@ on:
   push:
     branches:
     - master
+    - GITHUB*
   pull_request: 
     branches:
     - MDEP-*


[maven-dependency-plugin] 02/13: Fixed tab/space issue.

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 e959b5efa9618e51527d1eee0c62718bd00acd7c
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Mon Aug 12 22:43:41 2019 +0200

    Fixed tab/space issue.
---
 .github/workflows/main.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index c57ddcf..943692e 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -21,7 +21,7 @@ jobs:
     - name: Build
       run: |
         set -e
-				mvn -V --no-transfer-progress -B clean verify -Prun-its
+        mvn -V --no-transfer-progress -B clean verify -Prun-its
         
       shell: bash  
       env:
@@ -39,7 +39,7 @@ jobs:
     - name: Build
       run: |
         set -e
-				mvn -V --no-transfer-progress -B clean verify -Prun-its
+        mvn -V --no-transfer-progress -B clean verify -Prun-its
         
       shell: bash  
       env:
@@ -57,7 +57,7 @@ jobs:
     - name: Test
       run: |
         set -e
-				mvn -V --no-transfer-progress -B clean verify -Prun-its
+        mvn -V --no-transfer-progress -B clean verify -Prun-its
         
       shell: bash
       env:
@@ -78,7 +78,7 @@ jobs:
       run: |
         set -e
         export JAVA_HOME="C:\Program Files\OpenJDK\jdk-12.0.2"
-				mvn -V --no-transfer-progress -B clean verify -Prun-its
+        mvn -V --no-transfer-progress -B clean verify -Prun-its
       
       shell: bash
       env:


[maven-dependency-plugin] 11/13: Fixed container names.

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 b623f2559d05131ab1d528b64d336c9049ab4228
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Mon Aug 12 23:38:04 2019 +0200

    Fixed container names.
---
 .github/workflows/maven.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index dbdbfc6..ec7adf1 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -56,7 +56,7 @@ jobs:
   mdep_linux_12:
     name: Ubuntu (OpenJDK 12)
     runs-on: ubuntu-latest
-    container: maven:3.6.1-jdk-12-slim
+    container: maven:3.6.1-jdk-12
     steps:
     - uses: actions/checkout@master
       with:
@@ -69,7 +69,7 @@ jobs:
   mdep_linux_13:
     name: Ubuntu (OpenJDK 13)
     runs-on: ubuntu-latest
-    container: maven:3.6.1-jdk-13-slim
+    container: maven:3.6.1-jdk-13
     steps:
     - uses: actions/checkout@master
       with: