File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 34
34
restore-keys : ${{ runner.os }}-m2
35
35
- name : Run QA Checkstyle
36
36
if : success() || failure()
37
- run : mvn -B checkstyle:checkstyle --file pom.xml
37
+ run : mvn -B checkstyle:checkstyle --file pom.xml
38
+ - name : Run PMD Check
39
+ if : success() || failure()
40
+ run : mvn -B pmp:pmp --file pom.xml
Original file line number Diff line number Diff line change 140
140
</execution >
141
141
</executions >
142
142
</plugin >
143
+ <plugin >
144
+ <groupId >org.apache.maven.plugins</groupId >
145
+ <artifactId >maven-pmd-plugin</artifactId >
146
+ <version >3.23.0</version >
147
+ <executions >
148
+ <execution >
149
+ <phase >verify</phase >
150
+ <goals >
151
+ <goal >check</goal >
152
+ </goals >
153
+ </execution >
154
+ </executions >
155
+ </plugin >
143
156
</plugins >
144
157
</build >
145
158
</project >
You can’t perform that action at this time.
0 commit comments