mirror of
https://github.com/s4u/setup-maven-action.git
synced 2026-02-16 00:00:14 +08:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1c4f3ff3dc | |||
| e435effde6 | |||
| e97b30e967 | |||
| ae19451abc |
37
.github/workflows/test.yml
vendored
37
.github/workflows/test.yml
vendored
@ -19,13 +19,13 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
os: [ 'ubuntu-latest', 'windows-latest', 'macOS-latest' ]
|
os: [ 'ubuntu-latest', 'windows-latest', 'macOS-latest' ]
|
||||||
java: [ '8', '11', '17', '21' ]
|
java: [ '8', '11', '17', '21' ]
|
||||||
maven: [ '3.8.8', '3.9.8' ]
|
maven: [ '3.8.8', '3.9.6' ]
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- uses: ./
|
- uses: ./
|
||||||
with:
|
with:
|
||||||
@ -41,22 +41,45 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- uses: ./
|
- uses: ./
|
||||||
|
|
||||||
- run: mvn -V validate -Drequire.java=17 -Drequire.maven=3.9.8
|
- run: mvn -V validate -Drequire.java=17 -Drequire.maven=3.9.6
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
|
# regressions tests
|
||||||
|
test-issue-68:
|
||||||
|
name: Test for issue 68
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- uses: ./
|
||||||
|
with:
|
||||||
|
settings-servers: |
|
||||||
|
[{
|
||||||
|
"id": "ossrh",
|
||||||
|
"username": "${{ vars.TEST_68_1 }}",
|
||||||
|
"password": "${{ vars.TEST_68_2 }}"
|
||||||
|
}]
|
||||||
|
|
||||||
|
- run: cat ~/.m2/settings.xml
|
||||||
|
- run: |
|
||||||
|
grep "<id>ossrh</id>" ~/.m2/settings.xml
|
||||||
|
grep "<username>username-68</username>" ~/.m2/settings.xml
|
||||||
|
grep "<password>password-68</password>" ~/.m2/settings.xml
|
||||||
|
|
||||||
test-ok:
|
test-ok:
|
||||||
name: Test OK
|
name: Test OK
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: [ test, test-default ]
|
needs: [ test, test-default, test-issue-68 ]
|
||||||
if: always()
|
if: always()
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- run: 'true'
|
- run: 'true'
|
||||||
if: join(needs.*.result, ',') == 'success,success'
|
if: join(needs.*.result, ',') == 'success,success,success'
|
||||||
|
|
||||||
- run: 'false'
|
- run: 'false'
|
||||||
if: join(needs.*.result, ',') != 'success,success'
|
if: join(needs.*.result, ',') != 'success,success,success'
|
||||||
|
|||||||
@ -40,7 +40,7 @@ For default values you only need:
|
|||||||
| params | destination | default |
|
| params | destination | default |
|
||||||
|-------------------|--------------|---------|
|
|-------------------|--------------|---------|
|
||||||
| java-version | java-version | 17 |
|
| java-version | java-version | 17 |
|
||||||
| java-distribution | distribution | zulu |
|
| java-distribution | distribution | temurin |
|
||||||
|
|
||||||
## cache
|
## cache
|
||||||
|
|
||||||
@ -70,7 +70,7 @@ So we can use for action:
|
|||||||
|
|
||||||
| params | destination | default |
|
| params | destination | default |
|
||||||
|---------------|---------------|---------|
|
|---------------|---------------|---------|
|
||||||
| maven-version | maven-version | 3.9.8 |
|
| maven-version | maven-version | 3.9.6 |
|
||||||
|
|
||||||
## maven-settings-action
|
## maven-settings-action
|
||||||
|
|
||||||
@ -80,8 +80,6 @@ So we can use for action:
|
|||||||
| settings-mirrors | mirrors |
|
| settings-mirrors | mirrors |
|
||||||
| settings-properties | properties |
|
| settings-properties | properties |
|
||||||
| settings-sonatypeSnapshots | sonatypeSnapshots |
|
| settings-sonatypeSnapshots | sonatypeSnapshots |
|
||||||
| settings-proxies | proxies |
|
|
||||||
| settings-repositories | repositories |
|
|
||||||
|
|
||||||
# Testing against different Maven versions
|
# Testing against different Maven versions
|
||||||
|
|
||||||
@ -93,7 +91,7 @@ jobs:
|
|||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
maven: [ '3.8.8', '3.9.8' ]
|
maven: [ '3.8.8', '3.9.6' ]
|
||||||
|
|
||||||
name: Maven ${{ matrix.maven }} sample
|
name: Maven ${{ matrix.maven }} sample
|
||||||
|
|
||||||
|
|||||||
36
action.yml
36
action.yml
@ -44,7 +44,7 @@ inputs:
|
|||||||
|
|
||||||
java-distribution:
|
java-distribution:
|
||||||
description: 'Java distribution'
|
description: 'Java distribution'
|
||||||
default: 'zulu'
|
default: 'temurin'
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
# cache
|
# cache
|
||||||
@ -69,40 +69,32 @@ inputs:
|
|||||||
# maven version
|
# maven version
|
||||||
maven-version:
|
maven-version:
|
||||||
description: 'The Maven version to set up'
|
description: 'The Maven version to set up'
|
||||||
default: '3.9.8'
|
default: '3.9.6'
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
# maven settings.xml
|
# maven settings.xml
|
||||||
settings-servers:
|
settings-servers:
|
||||||
description: 'servers definition in json array, e.g.: [{"id": "serverId", "username": "username", "password": "password"}]'
|
description: 'servers definition in json array, eg: [{"id": "serverId", "username": "username", "password": "password"}]'
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
settings-mirrors:
|
settings-mirrors:
|
||||||
description: 'mirrors definition in json array, e.g.: [{"id": "id", "name": "name", "mirrorOf": "mirrorOf", "url": "url"}]'
|
description: 'mirrors definition in json array, eg: [{"id": "id", "name": "name", "mirrorOf": "mirrorOf", "url": "url"}]'
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
settings-properties:
|
settings-properties:
|
||||||
description: 'json array with properties, e.g.: [{"propertyName1": "propertyValue1"}, {"propertyName2": "propertyValue2"}]'
|
description: 'json array with properties, eg [{"propertyName1": "propertyValue1"}, {"propertyName2": "propertyValue2"}]'
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
settings-sonatypeSnapshots:
|
settings-sonatypeSnapshots:
|
||||||
description: 'add https://oss.sonatype.org/content/repositories/snapshots to repository list - true or false'
|
description: 'add https://oss.sonatype.org/content/repositories/snapshots to repository list - true or false'
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
settings-proxies:
|
|
||||||
description: 'proxies definition in json array, e.g.: [{"id": "http-proxy", "active": "true", "protocol": "http", "host": "host", "port": "port", "nonProxyHosts": "host1|host2"}]'
|
|
||||||
required: false
|
|
||||||
|
|
||||||
settings-repositories:
|
|
||||||
description: 'repository settings definition in json array, e.g.: [ { "id": "repoId","name": "repoName","url": "url","snapshots": { "enabled": true } } ]'
|
|
||||||
required: false
|
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: 'composite'
|
using: 'composite'
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: '${{ inputs.checkout-fetch-depth }}'
|
fetch-depth: '${{ inputs.checkout-fetch-depth }}'
|
||||||
path: '${{ inputs.checkout-path }}'
|
path: '${{ inputs.checkout-path }}'
|
||||||
@ -117,7 +109,7 @@ runs:
|
|||||||
java-version: '${{ inputs.java-version }}'
|
java-version: '${{ inputs.java-version }}'
|
||||||
distribution: '${{ inputs.java-distribution }}'
|
distribution: '${{ inputs.java-distribution }}'
|
||||||
|
|
||||||
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
|
- uses: actions/cache@v4
|
||||||
if: inputs.cache-enabled == 'true'
|
if: inputs.cache-enabled == 'true'
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
@ -131,16 +123,14 @@ runs:
|
|||||||
shell: bash
|
shell: bash
|
||||||
id: current-maven
|
id: current-maven
|
||||||
|
|
||||||
- uses: stCarolas/setup-maven@d6af6abeda15e98926a57b5aa970a96bb37f97d1 # v5
|
- uses: stCarolas/setup-maven@v5
|
||||||
if: inputs.maven-version != steps.current-maven.outputs.version
|
if: inputs.maven-version != steps.current-maven.outputs.version
|
||||||
with:
|
with:
|
||||||
maven-version: '${{ inputs.maven-version }}'
|
maven-version: '${{ inputs.maven-version }}'
|
||||||
|
|
||||||
- uses: s4u/maven-settings-action@7802f6aec16c9098b4798ad1f1d8ac75198194bd # v3.0.0
|
- uses: s4u/maven-settings-action@v3.0.0
|
||||||
with:
|
with:
|
||||||
servers: '${{ inputs.settings-servers }}'
|
servers: '${{ inputs.settings-servers}}'
|
||||||
mirrors: '${{ inputs.settings-mirrors }}'
|
mirrors: '${{ inputs.settings-mirrors}}'
|
||||||
properties: '${{ inputs.settings-properties }}'
|
properties: '${{ inputs.settings-properties}}'
|
||||||
sonatypeSnapshots: '${{ inputs.settings-sonatypeSnapshots }}'
|
sonatypeSnapshots: '${{ inputs.settings-sonatypeSnapshots}}'
|
||||||
proxies: '${{ inputs.settings-proxies }}'
|
|
||||||
repositories: '${{ inputs.settings-repositories }}'
|
|
||||||
|
|||||||
Reference in New Issue
Block a user