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/09/26 15:02:50 UTC

[maven-help-plugin] branch MPH-181 created (now 853edd7)

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

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


      at 853edd7  [MPH-181] Require Java 8

This branch includes the following new commits:

     new 9ffca75  Bump actions/setup-java from 2.2.0 to 2.3.0
     new 853edd7  [MPH-181] Require Java 8

The 2 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] 01/02: Bump actions/setup-java from 2.2.0 to 2.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 MPH-181
in repository https://gitbox.apache.org/repos/asf/maven-help-plugin.git

commit 9ffca75caebdfefa1e44d438de29e9edc4daff84
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Sun Sep 26 16:55:55 2021 +0200

    Bump actions/setup-java from 2.2.0 to 2.3.0
---
 .github/workflows/maven.yml | 21 ++++-----------------
 1 file changed, 4 insertions(+), 17 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 7e73cc5..1dd7c61 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -21,32 +21,19 @@ on: [push, pull_request]
 
 jobs:
   build:
-
     strategy:
       matrix:
         os: [ubuntu-latest, windows-latest, macOS-latest]
-        java: [8, 11, 17-ea]
+        java: [8, 11, 17]
       fail-fast: false
-
     runs-on: ${{ matrix.os }}
 
     steps:
-      - name: Checkout
-        uses: actions/checkout@v2.3.4
-
-      - name: Cache local Maven repository
-        uses: actions/cache@v2.1.6
-        with:
-            path: ~/.m2/repository
-            key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
-            restore-keys: |
-                ${{ runner.os }}-maven-
-
-      - name: Set up JDK
-        uses: actions/setup-java@v2.2.0
+      - uses: actions/checkout@v2
+      - uses: actions/setup-java@v2
         with:
           java-version: ${{ matrix.java }}
           distribution: 'temurin'
-
+          cache: 'maven'
       - name: Build with Maven
         run: mvn verify -e -B -V -P run-its

[maven-help-plugin] 02/02: [MPH-181] Require Java 8

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

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

commit 853edd7e25bedb22956c0d6020c4ea204f722ba5
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Sun Sep 26 17:02:42 2021 +0200

    [MPH-181] Require Java 8
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 4d71e6f..cf62637 100644
--- a/pom.xml
+++ b/pom.xml
@@ -68,7 +68,7 @@
   </distributionManagement>
 
   <properties>
-    <javaVersion>7</javaVersion>
+    <javaVersion>8</javaVersion>
     <mavenVersion>3.1.1</mavenVersion>
     <mavenPluginToolsVersion>3.6.1</mavenPluginToolsVersion>
     <surefire.version>2.22.2</surefire.version>