We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d86c93 commit 92e7f0bCopy full SHA for 92e7f0b
.github/workflows/build.yml
@@ -16,12 +16,12 @@ jobs:
16
cache: maven
17
- name: Build with Maven
18
run: |
19
- mvn ${MAVEN_CLI_OPTS} package -DskipTests
+ ./mvnw ${MAVEN_CLI_OPTS} package -DskipTests
20
- name: Test with Maven
21
22
unset GITHUB_ACTIONS
23
- mvn ${MAVEN_CLI_OPTS} test
24
- mvn ${MAVEN_CLI_OPTS} install -DskipTests
25
- mvn ${MAVEN_CLI_OPTS} failsafe:integration-test failsafe:verify
+ ./mvnw ${MAVEN_CLI_OPTS} test
+ ./mvnw ${MAVEN_CLI_OPTS} install -DskipTests
+ ./mvnw ${MAVEN_CLI_OPTS} failsafe:integration-test failsafe:verify
26
27
0 commit comments