Skip to content

Commit

Permalink
handle skiptests for tests plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
gionn committed Oct 30, 2023
1 parent 6162879 commit 79c9182
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions .github/actions/setup-java-build/maven-build-cache-config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,6 @@
</input>
<executionControl>
<runAlways>
<plugins>
<plugin artifactId="maven-failsafe-plugin"/>
<plugin artifactId="maven-surefire-plugin"/>
</plugins>
<goalsLists>
<goalsList artifactId="maven-install-plugin">
<goals>
Expand All @@ -100,6 +96,22 @@
</runAlways>
<reconcile logAllProperties="true">
<plugins>
<plugin artifactId="maven-surefire-plugin" goal="test">
<reconciles>
<reconcile propertyName="skip" skipValue="true"/>
<reconcile propertyName="skipExec" skipValue="true"/>
<reconcile propertyName="skipTests" skipValue="true"/>
<reconcile propertyName="testFailureIgnore" skipValue="true"/>
</reconciles>
</plugin>
<plugin artifactId="maven-failsafe-plugin" goal="test">
<reconciles>
<reconcile propertyName="skip" skipValue="true"/>
<reconcile propertyName="skipExec" skipValue="true"/>
<reconcile propertyName="skipTests" skipValue="true"/>
<reconcile propertyName="testFailureIgnore" skipValue="true"/>
</reconciles>
</plugin>
<plugin artifactId="maven-compiler-plugin" goal="compile">
<reconciles>
<reconcile propertyName="source"/>
Expand Down

0 comments on commit 79c9182

Please sign in to comment.