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 2021/01/30 23:09:49 UTC

[maven-help-plugin] branch dependabot created (now 42d3af7)

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

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


      at 42d3af7  Bump maven-shared-utils from 3.2.1 to 3.3.3

This branch includes the following new commits:

     new fd9b178  Add Dependabot config
     new 953bbad  Activate Github Actions
     new ef756c1  Bump maven-reporting-exec from 1.4 to 1.5.1
     new 1777d61  Bump plexus-utils from 3.2.0 to 3.3.0
     new 42d3af7  Bump maven-shared-utils from 3.2.1 to 3.3.3

The 5 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-help-plugin] 04/05: Bump plexus-utils from 3.2.0 to 3.3.0

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

slachiewicz pushed a commit to branch dependabot
in repository https://gitbox.apache.org/repos/asf/maven-help-plugin.git

commit 1777d6186027b546354bef10bc25f87a7860f638
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Sun Jan 31 00:09:25 2021 +0100

    Bump plexus-utils from 3.2.0 to 3.3.0
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index f597148..851a9c0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -161,7 +161,7 @@
     <dependency>
       <groupId>org.codehaus.plexus</groupId>
       <artifactId>plexus-utils</artifactId>
-      <version>3.2.0</version>
+      <version>3.3.0</version>
     </dependency>
 
     <!-- misc -->


[maven-help-plugin] 02/05: Activate Github Actions

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

slachiewicz pushed a commit to branch dependabot
in repository https://gitbox.apache.org/repos/asf/maven-help-plugin.git

commit 953bbadea31ae9c539cb2773f71c47238157b2e5
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Tue Jan 12 23:49:34 2021 +0100

    Activate Github Actions
---
 .github/workflows/maven.yml | 51 +++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 51 insertions(+)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
new file mode 100644
index 0000000..842d3ae
--- /dev/null
+++ b/.github/workflows/maven.yml
@@ -0,0 +1,51 @@
+# 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: GitHub CI
+
+on: [push, pull_request]
+
+jobs:
+  build:
+
+    strategy:
+      matrix:
+        os: [ubuntu-20.04, windows-latest, macOS-latest]
+        java: [7, 8, 11, 16-ea, 17-ea]
+      fail-fast: false
+
+    runs-on: ${{ matrix.os }}
+
+    steps:
+      - name: Checkout
+        uses: actions/checkout@v2
+
+      - name: Cache local Maven repository
+        uses: actions/cache@v2
+        with:
+            path: ~/.m2/repository
+            key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
+            restore-keys: |
+                ${{ runner.os }}-maven-
+
+      - name: Set up JDK
+        uses: actions/setup-java@v1
+        with:
+          java-version: ${{ matrix.java }}
+
+      - name: Build with Maven
+        run: mvn verify -e -B -V -P run-its


[maven-help-plugin] 01/05: Add Dependabot config

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

slachiewicz pushed a commit to branch dependabot
in repository https://gitbox.apache.org/repos/asf/maven-help-plugin.git

commit fd9b178aec4552d4934b9385d55cc415ff96ecdc
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Tue Jan 12 23:47:41 2021 +0100

    Add Dependabot config
---
 .github/dependabot.yml | 46 ++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 46 insertions(+)

diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 0000000..29eccbf
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,46 @@
+#
+#  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.
+#
+version: 2
+updates:
+- package-ecosystem: maven
+  directory: "/"
+  schedule:
+    interval: daily
+    time: '04:00'
+  open-pull-requests-limit: 10
+  ignore:
+    # ignore Java 8+ dependencies
+    - dependency-name: org.mockito:mockito-core
+      versions:
+        - ">= 3.0"
+    - dependency-name: org.apache.commons:commons-lang3
+      versions:
+        - ">= 3.9"
+    - dependency-name: commons-io:commons-io
+      versions:
+        - ">= 2.7"
+    # Ignore Maven 3.2.1+
+    - dependency-name: org.apache.maven.plugin-testing:maven-plugin-testing-tools
+      versions:
+        - ">=3.2.0"
+    - dependency-name: org.apache.maven.plugin-testing:maven-plugin-testing-harness
+      versions:
+        - ">=3.2.0"
+- package-ecosystem: "github-actions"
+  directory: "/"
+  schedule:
+    interval: "daily"
\ No newline at end of file


[maven-help-plugin] 03/05: Bump maven-reporting-exec from 1.4 to 1.5.1

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

slachiewicz pushed a commit to branch dependabot
in repository https://gitbox.apache.org/repos/asf/maven-help-plugin.git

commit ef756c13dd61136cf990b79d41d2f28c8e405a31
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Sun Jan 31 00:09:07 2021 +0100

    Bump maven-reporting-exec from 1.4 to 1.5.1
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index dff7f48..f597148 100644
--- a/pom.xml
+++ b/pom.xml
@@ -140,7 +140,7 @@
     <dependency>
       <groupId>org.apache.maven.reporting</groupId>
       <artifactId>maven-reporting-exec</artifactId>
-      <version>1.4</version>
+      <version>1.5.1</version>
     </dependency>
 
     <dependency>


[maven-help-plugin] 05/05: Bump maven-shared-utils from 3.2.1 to 3.3.3

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

slachiewicz pushed a commit to branch dependabot
in repository https://gitbox.apache.org/repos/asf/maven-help-plugin.git

commit 42d3af74195bb2eebaab8302b0cefa4688efc30e
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Sun Jan 31 00:09:41 2021 +0100

    Bump maven-shared-utils from 3.2.1 to 3.3.3
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 851a9c0..2a15529 100644
--- a/pom.xml
+++ b/pom.xml
@@ -130,7 +130,7 @@
     <dependency>
       <groupId>org.apache.maven.shared</groupId>
       <artifactId>maven-shared-utils</artifactId>
-      <version>3.2.1</version>
+      <version>3.3.3</version>
     </dependency>
     <dependency>
       <groupId>org.apache.maven.reporting</groupId>