mirror of https://github.com/apache/maven.git
Use Maven Wrapper to build
This commit is contained in:
parent
1c166ab95e
commit
1f97d9ff07
|
@ -46,8 +46,12 @@ jobs:
|
||||||
distribution: 'zulu'
|
distribution: 'zulu'
|
||||||
cache: 'maven'
|
cache: 'maven'
|
||||||
|
|
||||||
|
- name: Set up Maven
|
||||||
|
run:
|
||||||
|
mvn --errors --batch-mode --show-version org.apache.maven.plugins:maven-wrapper-plugin:3.3.2:wrapper "-Dmaven=3.9.7"
|
||||||
|
|
||||||
- name: Build with Maven
|
- name: Build with Maven
|
||||||
run: mvn verify -e -B -V -DdistributionFileName=apache-maven
|
run: ./mvnw verify -e -B -V -DdistributionFileName=apache-maven
|
||||||
|
|
||||||
- name: Upload built Maven
|
- name: Upload built Maven
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
|
@ -128,6 +132,10 @@ jobs:
|
||||||
distribution: 'zulu'
|
distribution: 'zulu'
|
||||||
cache: 'maven'
|
cache: 'maven'
|
||||||
|
|
||||||
|
- name: Set up Maven
|
||||||
|
run:
|
||||||
|
mvn --errors --batch-mode --show-version org.apache.maven.plugins:maven-wrapper-plugin:3.3.2:wrapper "-Dmaven=3.9.7"
|
||||||
|
|
||||||
- name: Running integration tests
|
- name: Running integration tests
|
||||||
shell: bash
|
shell: bash
|
||||||
run: mvn install -e -B -V -Prun-its,embedded -Dmaven.repo.local="$HOME/.m2/repository" -DmavenDistro="$GITHUB_WORKSPACE/built-maven/apache-maven-bin.zip" -f maven-integration-testing/pom.xml
|
run: ./mvnw install -e -B -V -Prun-its,embedded -Dmaven.repo.local="$HOME/.m2/repository" -DmavenDistro="$GITHUB_WORKSPACE/built-maven/apache-maven-bin.zip" -f maven-integration-testing/pom.xml
|
||||||
|
|
Loading…
Reference in New Issue