You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Andreas Dangel (JIRA)" <ji...@apache.org> on 2018/04/28 17:32:00 UTC

[jira] [Assigned] (MPMD-259) FileNotFoundException with analysisCache=true, includeTests=true and no test classes

     [ https://issues.apache.org/jira/browse/MPMD-259?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andreas Dangel reassigned MPMD-259:
-----------------------------------

    Assignee: Andreas Dangel

> FileNotFoundException with analysisCache=true, includeTests=true and no test classes
> ------------------------------------------------------------------------------------
>
>                 Key: MPMD-259
>                 URL: https://issues.apache.org/jira/browse/MPMD-259
>             Project: Maven PMD Plugin
>          Issue Type: Bug
>          Components: PMD
>    Affects Versions: 3.9.0
>            Reporter: Goldstein Lyor
>            Assignee: Andreas Dangel
>            Priority: Major
>
> If {{includeTests}} option is enabled but there are not test classes to check then PMD plugin fails with
> {quote}
> Failure executing PMD: [ERROR] Incremental analysis can't check auxclasspath contents
> java.io.FileNotFoundException: /home/lyor/workspace/C-B4-Server/analytics/c-analytics-engine-dal-api/target/test-classes (No such file or directory)
> {quote}
> In previous version this was quietly ignored - I believe same should be here.
> {code:xml|title=plugin configuration - using PMD 6.2.0 module}
>         <plugin>
>                 <!-- to disable - mvn [commands...] -Dpmd.skip -->
>                 <groupId>org.apache.maven.plugins</groupId>
>                 <artifactId>maven-pmd-plugin</artifactId>
>                 <configuration>
>                     <rulesets>
>                         <ruleset>${workspace.root.dir}${file.separator}pmd-ruleset-cb4.xml</ruleset>
>                     </rulesets>
>                     <includeTests>true</includeTests>
>                 </configuration>
>                 <executions>
>                     <execution>
>                         <id>pmd-checker</id>
>                         <!-- Note: phase must be AFTER detection of workspace root dir -->
>                         <phase>process-test-classes</phase>
>                         <goals>
>                             <goal>check</goal>
>                         </goals>
>                     </execution>
>                 </executions>
>             </plugin>
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)