mirror of
https://github.com/s4u/setup-maven-action.git
synced 2026-02-13 00:05:10 +08:00
Compare commits
85 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 721df57437 | |||
| 21adf11259 | |||
| 94605e0cdf | |||
| ff947fe3e9 | |||
| 35afc95be0 | |||
| 4f918ce4df | |||
| e3f10494a8 | |||
| 7cf09e2e6e | |||
| deb771502d | |||
| e5734e3ce7 | |||
| fc8e36b653 | |||
| 8c7ad20804 | |||
| 4e0b434104 | |||
| bb348407a1 | |||
| b185da4934 | |||
| 4fdbe2a6a7 | |||
| 6f549063f4 | |||
| 615b14550f | |||
| 835f1da688 | |||
| cab2e3d716 | |||
| a993197694 | |||
| 44901dc0f8 | |||
| 63e4cd9ad1 | |||
| f0414a8351 | |||
| 81f0483288 | |||
| af6b8e170c | |||
| 22a06a2fe3 | |||
| d36f1fc23e | |||
| b53dd2825a | |||
| 56cc41b90d | |||
| e3c826f8cc | |||
| 4c63d7d932 | |||
| 4585690afd | |||
| 22fe1553d7 | |||
| 18ef4b759e | |||
| 58b2cc938d | |||
| 004043f81b | |||
| d9764096ef | |||
| d60941527d | |||
| 8668fb9de8 | |||
| ec82f26b88 | |||
| 1907361ea9 | |||
| d4245fa41a | |||
| 35a231e628 | |||
| bee771f042 | |||
| 5344d1092e | |||
| cd150da647 | |||
| f2a772b79b | |||
| b82597c31c | |||
| 2a61fa7362 | |||
| 47c2778e48 | |||
| 18ed4916ce | |||
| a2f82a8171 | |||
| f0c6d72092 | |||
| fccb401913 | |||
| 440eda18c7 | |||
| 44b3adc17b | |||
| 8d6de218c6 | |||
| 421a3d288e | |||
| 00510bfd43 | |||
| 8693beee3c | |||
| 9589d5648d | |||
| d27f7bad34 | |||
| 07db3fb4b2 | |||
| 3a36aae9ec | |||
| b8af8b0ed8 | |||
| 336767f6a6 | |||
| 078175723e | |||
| 38506fd243 | |||
| 41d4657217 | |||
| e9a7bdc6d6 | |||
| b3d576e79a | |||
| ff43cac4ad | |||
| cac57cc0b0 | |||
| 490f541598 | |||
| 638a374dff | |||
| 6f35cfffb0 | |||
| 4ce3c6745c | |||
| 2261292f40 | |||
| 10041ccdff | |||
| 7d14bd0fab | |||
| 73706c9355 | |||
| f625f4e949 | |||
| d253165ff8 | |||
| 339d84e602 |
23
.github/workflows/auto-approve.yml
vendored
23
.github/workflows/auto-approve.yml
vendored
@ -1,25 +1,10 @@
|
||||
name: Auto approve
|
||||
name: Auto Approve
|
||||
|
||||
on:
|
||||
pull_request_target
|
||||
|
||||
jobs:
|
||||
auto-approve:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
||||
- uses: alexwilson/enable-github-automerge-action@1.0.0
|
||||
if: >
|
||||
github.actor == 'dependabot[bot]'
|
||||
|| github.actor == 'dependabot-preview[bot]'
|
||||
with:
|
||||
merge-method: "REBASE"
|
||||
github-token: "${{ secrets.TECH_TOKEN }}"
|
||||
|
||||
- uses: hmarr/auto-approve-action@v2.1.0
|
||||
if: >
|
||||
github.actor == 'dependabot[bot]'
|
||||
|| github.actor == 'dependabot-preview[bot]'
|
||||
|| github.actor == 'slawekjaranowski'
|
||||
with:
|
||||
github-token: "${{ secrets.TECH_TOKEN }}"
|
||||
uses: s4u/.github/.github/workflows/auto-approve.yml@master
|
||||
secrets:
|
||||
TECH_TOKEN: ${{ secrets.TECH_TOKEN }}
|
||||
|
||||
13
.github/workflows/release-drafter.yml
vendored
13
.github/workflows/release-drafter.yml
vendored
@ -4,18 +4,9 @@ on:
|
||||
push:
|
||||
branches:
|
||||
- 'master'
|
||||
- 'main'
|
||||
|
||||
jobs:
|
||||
update_release_draft:
|
||||
name: Update Release Draft
|
||||
runs-on: ubuntu-latest
|
||||
concurrency: release-drafter
|
||||
|
||||
if: >
|
||||
github.repository_owner == 's4u'
|
||||
&& !startsWith(github.event.head_commit.message , '[maven-release-plugin]')
|
||||
|
||||
steps:
|
||||
- uses: release-drafter/release-drafter@v5.15.0
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
uses: s4u/.github/.github/workflows/release-drafter.yml@master
|
||||
|
||||
42
.github/workflows/test.yml
vendored
42
.github/workflows/test.yml
vendored
@ -2,9 +2,11 @@ name: Test
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- 'main'
|
||||
push:
|
||||
branches-ignore:
|
||||
- 'dependabot/**'
|
||||
branches:
|
||||
- 'main'
|
||||
|
||||
schedule:
|
||||
- cron: '22 23 * * 5'
|
||||
@ -16,21 +18,49 @@ jobs:
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ 'ubuntu-latest', 'windows-latest', 'macOS-latest' ]
|
||||
java: [ '8', '11', '16' ]
|
||||
maven: [ '3.5.4', '3.6.3', '3.8.2' ]
|
||||
java: [ '8', '11', '17' ]
|
||||
maven: [ '3.6.3', '3.8.7', '3.9.2' ]
|
||||
fail-fast: false
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2.3.4
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- uses: ./
|
||||
with:
|
||||
java-version: ${{ matrix.java }}
|
||||
java-cache: maven
|
||||
maven-version: ${{ matrix.maven }}
|
||||
cache-prefix: 'test-prefix-'
|
||||
|
||||
- run: mvn -V validate -Drequire.java=${{ matrix.java }} -Drequire.maven=${{ matrix.maven }}
|
||||
shell: bash
|
||||
|
||||
test-deault:
|
||||
name: Test with defaults
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- uses: ./
|
||||
with:
|
||||
java-version: 8
|
||||
|
||||
- run: mvn -V validate -Drequire.java=8 -Drequire.maven=3.9.2
|
||||
shell: bash
|
||||
|
||||
test-ok:
|
||||
name: Test OK
|
||||
runs-on: ubuntu-latest
|
||||
needs: [ test, test-deault ]
|
||||
if: always()
|
||||
|
||||
steps:
|
||||
- run: echo "needs.test.result=${{ needs.test.result }} needs.test-deault.result=${{ needs.test-deault.result }}"
|
||||
|
||||
- run: 'true'
|
||||
if: needs.test.result == 'success' && needs.test-deault.result == 'success'
|
||||
|
||||
- run: 'false'
|
||||
if: needs.test.result != 'success' || needs.test-deault.result != 'success'
|
||||
|
||||
58
README.md
58
README.md
@ -1,44 +1,80 @@
|
||||
# Setup Maven with settings.xml
|
||||
# Setup Maven Action
|
||||
[](https://github.com/s4u/setup-maven-action/actions/workflows/test.yml)
|
||||
|
||||
This is composite action which help to prepare GitHub Actions environment for Maven build by calling:
|
||||
|
||||
- [actions/checkout](https://github.com/marketplace/actions/checkout)
|
||||
- [actions/setup-java](https://github.com/marketplace/actions/setup-java-jdk)
|
||||
- [actions/cache](https://github.com/marketplace/actions/cache)
|
||||
- [stCarolas/setup-maven](https://github.com/marketplace/actions/setup-maven)
|
||||
- [s4u/maven-settings-action](https://github.com/marketplace/actions/maven-settings-action)
|
||||
|
||||
# Contributions
|
||||
|
||||
- Contributions are welcome!
|
||||
- Give :star: - if you want to encourage me to work on a project
|
||||
- Don't hesitate to create issues for new features you dream of or if you suspect some bug
|
||||
|
||||
# Project versioning
|
||||
|
||||
This project uses [Semantic Versioning](https://semver.org/).
|
||||
We recommended to use the latest and specific release version.
|
||||
We recommended using the latest and specific release version.
|
||||
|
||||
In order to keep your project dependencies up to date you can watch this repository *(Releases only)*
|
||||
or use automatic tools like [Dependabot](https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/about-dependabot-version-updates).
|
||||
|
||||
# Params mapping for sub actions
|
||||
|
||||
**Notice** when used this action you should not used mentioned below actions again.
|
||||
|
||||
## checkout
|
||||
|
||||
| params | destination | default |
|
||||
|------------------------------|---------------------|---------|
|
||||
| checkout-fetch-depth | fetch-depth | |
|
||||
| checkout-path | path | |
|
||||
| checkout-persist-credentials | persist-credentials | false |
|
||||
|
||||
## setup-java
|
||||
|
||||
| params | destination | default |
|
||||
| ----------------- |------------- |-------- |
|
||||
|-------------------|--------------|---------|
|
||||
| java-version | java-version | |
|
||||
| java-distribution | distribution | temurin |
|
||||
| java-cache | cache | |
|
||||
|
||||
## cache
|
||||
|
||||
A cache action is configured as:
|
||||
|
||||
```yaml
|
||||
- uses: actions/cache
|
||||
with:
|
||||
path: |
|
||||
${{ inputs.cache-path }}
|
||||
${{ inputs.cache-path-add }}
|
||||
key: ${{ inputs.cache-prefix }}${{ runner.os }}-jdk${{ inputs.java-version }}-${{ inputs.java-distribution }}-maven${{ inputs.maven-version }}-${{ hashFiles('**/pom.xml') }}
|
||||
restore-keys: ${{ inputs.cache-prefix }}${{ runner.os }}-jdk${{ inputs.java-version }}-${{ inputs.java-distribution }}-maven${{ inputs.maven-version }}-
|
||||
```
|
||||
|
||||
So we can use for action:
|
||||
|
||||
| params | description |
|
||||
|----------------|----------------------------------------------------------|
|
||||
| cache-path | default cache path for Maven with value ~/.m2/repository |
|
||||
| cache-path-add | additional value for cache path |
|
||||
| cache-prefix | prefix value for `key` and `restore-keys` cache params |
|
||||
|
||||
|
||||
## setup-maven
|
||||
|
||||
| params | destination | default |
|
||||
| ------------- |-------------- |-------- |
|
||||
| maven-version | maven-version | 3.8.1 |
|
||||
|---------------|---------------|---------|
|
||||
| maven-version | maven-version | 3.9.2 |
|
||||
|
||||
## maven-settings-action
|
||||
|
||||
| params | destination |
|
||||
| -------------------------- |------------------ |
|
||||
|----------------------------|-------------------|
|
||||
| settings-servers | servers |
|
||||
| settings-mirrors | mirrors |
|
||||
| settings-properties | properties |
|
||||
@ -54,18 +90,18 @@ jobs:
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
maven: [ '3.5.4', '3.6.3', '3.8.2' ]
|
||||
maven: [ '3.6.3', '3.8.7', '3.9.2' ]
|
||||
|
||||
name: Maven ${{ matrix.maven }} sample
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Setup Maven
|
||||
uses: setup-maven@v1.0.0
|
||||
- name: Setup Maven Action
|
||||
uses: s4u/setup-maven-action@< version >
|
||||
with:
|
||||
java-version: 8
|
||||
maven-version: ${{ matrix.maven }}
|
||||
|
||||
- run: mvn -V ...
|
||||
```
|
||||
|
||||
|
||||
74
action.yml
74
action.yml
@ -1,5 +1,5 @@
|
||||
name: 'Setup Maven with settings.xml'
|
||||
description: 'Setup environment for Maven build'
|
||||
name: 'Setup Maven Action'
|
||||
description: 'Complete environment configuration for Maven builds'
|
||||
|
||||
branding:
|
||||
icon: 'settings'
|
||||
@ -7,6 +7,21 @@ branding:
|
||||
|
||||
inputs:
|
||||
|
||||
# checkout
|
||||
checkout-fetch-depth:
|
||||
description: 'Number of commits to fetch'
|
||||
required: false
|
||||
|
||||
checkout-path:
|
||||
description: 'Relative path under $GITHUB_WORKSPACE to place the repository'
|
||||
required: false
|
||||
|
||||
checkout-persist-credentials:
|
||||
description: 'Whether to configure the token or SSH key with the local git config'
|
||||
default: 'false'
|
||||
required: false
|
||||
|
||||
|
||||
# java jdk params
|
||||
|
||||
java-version:
|
||||
@ -18,14 +33,24 @@ inputs:
|
||||
default: 'temurin'
|
||||
required: false
|
||||
|
||||
java-cache:
|
||||
description: 'Name of the build platform to cache dependencies. It should be "maven" or empty.'
|
||||
required: true
|
||||
# cache
|
||||
cache-prefix:
|
||||
description: 'Cache key prefix'
|
||||
required: false
|
||||
|
||||
cache-path:
|
||||
description: 'Cache path'
|
||||
default: '~/.m2/repository'
|
||||
required: false
|
||||
|
||||
cache-path-add:
|
||||
description: 'Additional item for cache path'
|
||||
required: false
|
||||
|
||||
# maven version
|
||||
maven-version:
|
||||
description: 'The Maven version to set up'
|
||||
default: 3.8.1
|
||||
default: '3.9.2'
|
||||
required: false
|
||||
|
||||
# maven settings.xml
|
||||
@ -50,32 +75,39 @@ runs:
|
||||
|
||||
steps:
|
||||
|
||||
- run: echo "::group::Setup Java"
|
||||
shell: bash
|
||||
- uses: actions/setup-java@v2.3.0
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: '${{ inputs.checkout-fetch-depth }}'
|
||||
path: '${{ inputs.checkout-path }}'
|
||||
persist-credentials: '${{ inputs.checkout-persist-credentials }}'
|
||||
|
||||
- uses: actions/setup-java@v3
|
||||
with:
|
||||
overwrite-settings: false
|
||||
java-version: '${{ inputs.java-version }}'
|
||||
distribution: '${{ inputs.java-distribution }}'
|
||||
cache: '${{ inputs.java-cache }}'
|
||||
- run: echo "::endgroup::"
|
||||
shell: bash
|
||||
|
||||
- run: echo "::group::Setup Maven Version"
|
||||
- uses: actions/cache@v3
|
||||
with:
|
||||
path: |
|
||||
${{ inputs.cache-path }}
|
||||
${{ inputs.cache-path-add }}
|
||||
key: ${{ inputs.cache-prefix }}${{ runner.os }}-jdk${{ inputs.java-version }}-${{ inputs.java-distribution }}-maven${{ inputs.maven-version }}-${{ hashFiles('**/pom.xml') }}
|
||||
restore-keys: ${{ inputs.cache-prefix }}${{ runner.os }}-jdk${{ inputs.java-version }}-${{ inputs.java-distribution }}-maven${{ inputs.maven-version }}-
|
||||
|
||||
- name: Installed Maven version
|
||||
run: echo "version=$(mvn -q -v)" >> $GITHUB_OUTPUT
|
||||
shell: bash
|
||||
- uses: stCarolas/setup-maven@v4.1
|
||||
id: current-maven
|
||||
|
||||
- uses: stCarolas/setup-maven@v4.5
|
||||
if: inputs.maven-version != steps.current-maven.outputs.version
|
||||
with:
|
||||
maven-version: '${{ inputs.maven-version }}'
|
||||
- run: echo "::endgroup::"
|
||||
shell: bash
|
||||
|
||||
- run: echo "::group::Prepare Maven settings.xml"
|
||||
shell: bash
|
||||
- uses: s4u/maven-settings-action@v2.4.1
|
||||
- uses: s4u/maven-settings-action@v2.8.0
|
||||
with:
|
||||
servers: '${{ inputs.settings-servers}}'
|
||||
mirrors: '${{ inputs.settings-mirrors}}'
|
||||
properties: '${{ inputs.settings-properties}}'
|
||||
sonatypeSnapshots: '${{ inputs.settings-sonatypeSnapshots}}'
|
||||
- run: echo "::endgroup::"
|
||||
shell: bash
|
||||
|
||||
34
pom.xml
34
pom.xml
@ -36,7 +36,6 @@
|
||||
<properties>
|
||||
<require.maven/>
|
||||
<require.java/>
|
||||
<_require.java/>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
@ -44,11 +43,10 @@
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<version>3.0.0-M3</version>
|
||||
<version>3.2.1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>display-info</goal>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<phase>validate</phase>
|
||||
@ -57,7 +55,7 @@
|
||||
<configuration>
|
||||
<rules>
|
||||
<requireJavaVersion>
|
||||
<version>${_require.java}</version>
|
||||
<version>${require.java}</version>
|
||||
</requireJavaVersion>
|
||||
<requireMavenVersion>
|
||||
<version>[${require.maven}]</version>
|
||||
@ -67,32 +65,4 @@
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>java8-version-label</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>require.java</name>
|
||||
<value>8</value>
|
||||
</property>
|
||||
</activation>
|
||||
<properties>
|
||||
<_require.java>1.8</_require.java>
|
||||
</properties>
|
||||
</profile>
|
||||
|
||||
<profile>
|
||||
<id>non-java8-version-label</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>require.java</name>
|
||||
<value>!8</value>
|
||||
</property>
|
||||
</activation>
|
||||
<properties>
|
||||
<_require.java>${require.java}</_require.java>
|
||||
</properties>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
|
||||
Reference in New Issue
Block a user