You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Guillaume Boué (JIRA)" <ji...@apache.org> on 2016/07/18 20:27:20 UTC

[jira] [Commented] (MCHECKSTYLE-327) Upgrading from 2.15 to 2.17 will fail

    [ https://issues.apache.org/jira/browse/MCHECKSTYLE-327?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15383006#comment-15383006 ] 

Guillaume Boué commented on MCHECKSTYLE-327:
--------------------------------------------

This looks like the same issue as [MCHECKSTYLE-311|https://issues.apache.org/jira/browse/MCHECKSTYLE-311]. {{config/maven_checks.xml}} was moved to Shared Components and this error can be resolved by adding a dependency to it:
{code:xml}
    <pluginManagement>
      <plugins>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-checkstyle-plugin</artifactId>
          <version>2.17</version>
          <dependencies>
            <dependency>
              <groupId>org.apache.maven.shared</groupId>
              <artifactId>maven-shared-resources</artifactId>
              <version>2</version>
            </dependency>
          </dependencies>
        </plugin>
      </plugins>
    </pluginManagement>
{code}

> Upgrading from 2.15 to 2.17 will fail
> -------------------------------------
>
>                 Key: MCHECKSTYLE-327
>                 URL: https://issues.apache.org/jira/browse/MCHECKSTYLE-327
>             Project: Maven Checkstyle Plugin
>          Issue Type: Bug
>    Affects Versions: 2.17
>            Reporter: Karl Heinz Marbaise
>            Priority: Blocker
>
> If I try to upgrade the maven-checkstyle-plugin in the MCHECKSTYLE-326 issue by using a pluginManagement block and defining the new version via:
> {code:xml}
> ~/apache-maven/maven-shared/maven-shared-utils$ svn di
> Index: pom.xml
> ===================================================================
> --- pom.xml	(revision 1753303)
> +++ pom.xml	(working copy)
> @@ -120,6 +120,15 @@
>    </dependencies>
>    <build>
> +    <pluginManagement>
> +      <plugins>
> +        <plugin>
> +          <groupId>org.apache.maven.plugins</groupId>
> +          <artifactId>maven-checkstyle-plugin</artifactId>
> +          <version>2.17</version>
> +        </plugin>
> +      </plugins>
> +    </pluginManagement>
>      <plugins>
>        <plugin>
>          <groupId>org.codehaus.mojo</groupId>
> {code}
> It will fail with the following:
> {code}
> [INFO] --- maven-site-plugin:3.5.1:attach-descriptor (attach-descriptor) @ maven-shared-utils ---
> [INFO]
> [INFO] --- maven-checkstyle-plugin:2.17:check (checkstyle-check) @ maven-shared-utils ---
> [INFO] ------------------------------------------------------------------------
> [INFO] BUILD FAILURE
> [INFO] ------------------------------------------------------------------------
> [INFO] Total time: 8.548 s
> [INFO] Finished at: 2016-07-18T21:25:37+02:00
> [INFO] Final Memory: 31M/444M
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-checkstyle-plugin:2.17:check (checkstyle-check) on project maven-shared-utils: Failed during checkstyle execution: Unable to find configuration file at location: config/maven_checks.xml: Could not find resource 'config/maven_checks.xml'. -> [Help 1]
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)