[ https://issues.apache.org/jira/browse/MCHECKSTYLE-415?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Michael Osipov closed MCHECKSTYLE-415. -------------------------------------- Fix Version/s: (was: waiting-for-feedback) Resolution: Not A Problem > Fatal Errors in Logs after Upgrade from com.puppycrawl.tools:checkstyle:10.1 > to 10.2 > ------------------------------------------------------------------------------------ > > Key: MCHECKSTYLE-415 > URL: https://issues.apache.org/jira/browse/MCHECKSTYLE-415 > Project: Maven Checkstyle Plugin > Issue Type: Bug > Components: checkstyle:check > Affects Versions: 3.1.2 > Environment: Ubuntu 20.04, Jenkins, Docker > Reporter: Minh Do > Priority: Minor > Labels: 10.1, 10.2, fatal, logs > > I reported this originally in the [checkstyle issue > tracker|https://github.com/checkstyle/checkstyle/issues/11755] and Roman > Ivanov redirected me here. > My maven profile is declared like > {code:xml} > <profile> > <id>checkstyle</id> > <build> > <pluginManagement> > <plugins> > <plugin> > <groupId>org.apache.maven.plugins</groupId> > <artifactId>maven-checkstyle-plugin</artifactId> > <version>3.1.2</version> > <configuration> > > <configLocation>.checkstyle/config.xml</configLocation> > > <includeTestSourceDirectory>true</includeTestSourceDirectory> > </configuration> > <dependencies> > <dependency> > <groupId>com.puppycrawl.tools</groupId> > <artifactId>checkstyle</artifactId> > <version>10.1</version> > </dependency> > </dependencies> > </plugin> > </plugins> > </pluginManagement> > </build> > </profile> > {code} > and outputted normal logs like > {noformat} > [INFO] --- maven-checkstyle-plugin:3.1.2:check (default-cli) @ my.project --- > [INFO] You have 0 Checkstyle violations. > {noformat} > When upgrading my maven profile checkstyle-dependeny from 10.1 to 10.2 > {code:xml} > <profile> > <id>checkstyle</id> > <build> > <pluginManagement> > <plugins> > <plugin> > <groupId>org.apache.maven.plugins</groupId> > <artifactId>maven-checkstyle-plugin</artifactId> > <version>3.1.2</version> > <configuration> > > <configLocation>.checkstyle/config.xml</configLocation> > > <includeTestSourceDirectory>true</includeTestSourceDirectory> > </configuration> > <dependencies> > <dependency> > <groupId>com.puppycrawl.tools</groupId> > <artifactId>checkstyle</artifactId> > <version>10.2</version> > </dependency> > </dependencies> > </plugin> > </plugins> > </pluginManagement> > </build> > </profile> > {code} > new confusing fatal messages are printed in the logs: > {noformat} > [INFO] --- maven-checkstyle-plugin:3.1.2:check (default-cli) @ my.project --- > [Fatal Error] control.xml:1:1: Content is not allowed in prolog. > [Fatal Error] control.xml:1:1: Content is not allowed in prolog. > [Fatal Error] control.xml:1:1: Content is not allowed in prolog. > [Fatal Error] control.xml:1:1: Content is not allowed in prolog. > [INFO] You have 0 Checkstyle violations. > {noformat} > It does not affect the build result but confuses developers if something went > wrong. > Roman Ivanov guessed, that the commit > https://github.com/checkstyle/checkstyle/issues/11507 could lead to this > problem. -- This message was sent by Atlassian Jira (v8.20.10#820010)