This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-scxml.git
commit 75cbb536837510eda63614500b24430ffb0dfc5d Author: Gary Gregory <[email protected]> AuthorDate: Fri Oct 27 11:03:34 2023 -0400 Allow Checkstyle from the command line build standalone --- pom.xml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pom.xml b/pom.xml index eb1072a..b19c3a2 100644 --- a/pom.xml +++ b/pom.xml @@ -304,6 +304,14 @@ <additionalparam>-Xdoclint:none</additionalparam> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + <configuration> + <configLocation>${basedir}/checkstyle.xml</configLocation> + <enableRulesSummary>false</enableRulesSummary> + </configuration> + </plugin> </plugins> </build>
