File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 9393 cache : ' gradle'
9494
9595 - name : Run Checkstyle
96- run : ./gradlew checkstyleMain checkstyleTest -PcheckstyleEnabled=true
96+ run : ./gradlew checkstyleMain checkstyleTest -PcheckstyleEnabled
9797
9898 pmd :
9999 runs-on : ubuntu-latest
@@ -115,7 +115,7 @@ jobs:
115115 cache : ' gradle'
116116
117117 - name : Run PMD
118- run : ./gradlew pmdMain pmdTest
118+ run : ./gradlew pmdMain pmdTest -PpmdEnabled
119119
120120 - name : Upload report
121121 if : always()
Original file line number Diff line number Diff line change 55 <option name =" executionName" />
66 <option name =" externalProjectPath" value =" $PROJECT_DIR$" />
77 <option name =" externalSystemIdString" value =" GRADLE" />
8- <option name =" scriptParameters" value =" -PskipPMD " />
8+ <option name =" scriptParameters" value =" " />
99 <option name =" taskDescriptions" >
1010 <list />
1111 </option >
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ tasks.withType(Checkstyle).configureEach {
120120}
121121
122122tasks. withType(Pmd ). configureEach {
123- enabled = ! project. hasProperty(" skipPMD " )
123+ enabled = project. hasProperty(" pmdEnabled " )
124124}
125125
126126// Configure compileJava AND compileTestJava
You can’t perform that action at this time.
0 commit comments