File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -53,10 +53,10 @@ jobs:
5353 run : ./mvnw help:active-profiles
5454 - name : Test with Maven
5555 if : ${{ matrix.os != 'windows-latest' }}
56- run : ./mvnw test -B -D"license.skip=true" -D"jacoco.skip=true" $ARG_LINE
56+ run : ./mvnw test -B -V --no-transfer-progress - D"license.skip=true" -D"jacoco.skip=true" $ARG_LINE
5757 - name : Test with Maven
5858 if : ${{ matrix.os == 'windows-latest' && matrix.java == '11' }}
59- run : ./mvnw test -B -D"license.skip=true" -D"jacoco.skip=true" -D"argLine=--illegal-access=permit"
59+ run : ./mvnw test -B -V --no-transfer-progress - D"license.skip=true" -D"jacoco.skip=true" -D"argLine=--illegal-access=permit"
6060 - name : Test with Maven
6161 if : ${{ matrix.os == 'windows-latest' && matrix.java != '11' }}
62- run : ./mvnw test -B -D"license.skip=true" -D"jacoco.skip=true" -D"excludedGroups=TestcontainersTests,RequireIllegalAccess"
62+ run : ./mvnw test -B -V --no-transfer-progress - D"license.skip=true" -D"jacoco.skip=true" -D"excludedGroups=TestcontainersTests,RequireIllegalAccess"
Original file line number Diff line number Diff line change @@ -11,16 +11,16 @@ jobs:
1111 - name : Set up JDK
1212 uses : actions/setup-java@v3
1313 with :
14- java-version : 11
14+ java-version : 17
1515 distribution : zulu
1616 - name : Report Coverage to Coveralls for Pull Requests
1717 if : github.event_name == 'pull_request'
18- run : ./mvnw test jacoco:report coveralls:report -q -Dlicense.skip=true -DrepoToken=$GITHUB_TOKEN -DserviceName=github -DpullRequest=$PR_NUMBER
18+ run : ./mvnw -B -V test jacoco:report coveralls:report -q -Dlicense.skip=true -DrepoToken=$GITHUB_TOKEN -DserviceName=github -DpullRequest=$PR_NUMBER
1919 env :
2020 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
2121 PR_NUMBER : ${{ github.event.number }}
2222 - name : Report Coverage to Coveralls for General Push
2323 if : github.event_name == 'push'
24- run : ./mvnw test jacoco:report coveralls:report -q -Dlicense.skip=true -DrepoToken=$GITHUB_TOKEN -DserviceName=github
24+ run : ./mvnw -B -V test jacoco:report coveralls:report -q -Dlicense.skip=true -DrepoToken=$GITHUB_TOKEN -DserviceName=github
2525 env :
2626 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 2020 java-version : 17
2121 distribution : zulu
2222 - name : Analyze with SonarCloud
23- run : ./mvnw verify jacoco:report sonar:sonar -B -Dsonar.projectKey=mybatis_mybatis-3 -Dsonar.organization=mybatis -Dsonar.host.url=https://sonarcloud.io -Dsonar.login=$SONAR_TOKEN -Dlicense.skip=true
23+ run : ./mvnw verify jacoco:report sonar:sonar -B -Dsonar.projectKey=mybatis_mybatis-3 -Dsonar.organization=mybatis -Dsonar.host.url=https://sonarcloud.io -Dsonar.login=$SONAR_TOKEN -Dlicense.skip=true --no-transfer-progress
2424 env :
2525 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
2626 SONAR_TOKEN : ${{ secrets.SONAR_TOKEN }}
Original file line number Diff line number Diff line change 1717 java-version : 17
1818 distribution : zulu
1919 - name : Deploy to Sonatype
20- run : ./mvnw deploy -DskipTests -B --settings ./.mvn/settings.xml -Dlicense.skip=true
20+ run : ./mvnw deploy -DskipTests -B -V --no-transfer-progress - -settings ./.mvn/settings.xml -Dlicense.skip=true
2121 env :
2222 CI_DEPLOY_USERNAME : ${{ secrets.CI_DEPLOY_USERNAME }}
2323 CI_DEPLOY_PASSWORD : ${{ secrets.CI_DEPLOY_PASSWORD }}
You can’t perform that action at this time.
0 commit comments