Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use shared gh action asf #273

Merged
merged 2 commits into from
May 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 2 additions & 22 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,25 +21,5 @@ on: [push, pull_request]

jobs:
build:

strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
java: [8, 11, 17]
fail-fast: false

runs-on: ${{ matrix.os }}

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set up JDK
uses: actions/[email protected]
with:
java-version: ${{ matrix.java }}
distribution: temurin
cache: maven

- name: Build with Maven
run: ./mvnw verify -e -B -V -P run-its
name: Verify
uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v2
3 changes: 2 additions & 1 deletion src/main/java/org/codehaus/mojo/flatten/FlattenMojo.java
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@
* of the original POM with the focus to contain only the important information for consuming it. Therefore information
* that is only required for maintenance by developers and to build the project artifact(s) are stripped. Starting from
* here we specify how the flattened POM is created from the original POM and its project:<br>
* <table border="1" summary="">
* <table>
* <caption></caption>
* <tr>
* <th>Element</th>
* <th>Transformation</th>
Expand Down