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:
53
53
run : ./mvnw help:active-profiles
54
54
- name : Test with Maven
55
55
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
57
57
- name : Test with Maven
58
58
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"
60
60
- name : Test with Maven
61
61
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:
11
11
- name : Set up JDK
12
12
uses : actions/setup-java@v3
13
13
with :
14
- java-version : 11
14
+ java-version : 17
15
15
distribution : zulu
16
16
- name : Report Coverage to Coveralls for Pull Requests
17
17
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
19
19
env :
20
20
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
21
21
PR_NUMBER : ${{ github.event.number }}
22
22
- name : Report Coverage to Coveralls for General Push
23
23
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
25
25
env :
26
26
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 20
20
java-version : 17
21
21
distribution : zulu
22
22
- 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
24
24
env :
25
25
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
26
26
SONAR_TOKEN : ${{ secrets.SONAR_TOKEN }}
Original file line number Diff line number Diff line change 17
17
java-version : 17
18
18
distribution : zulu
19
19
- 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
21
21
env :
22
22
CI_DEPLOY_USERNAME : ${{ secrets.CI_DEPLOY_USERNAME }}
23
23
CI_DEPLOY_PASSWORD : ${{ secrets.CI_DEPLOY_PASSWORD }}
You can’t perform that action at this time.
0 commit comments