|
||||||||
|
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira |
||||||||
- [mojo-dev] [jira] (MOJO-1922) Fix maven codenarc fo... Ben McGuire (JIRA)
- [mojo-dev] [jira] (MOJO-1922) Fix maven codena... Garvin LeClaire (JIRA)
- [mojo-dev] [jira] (MOJO-1922) Fix maven codena... Ben McGuire (JIRA)
- [mojo-dev] [jira] (MOJO-1922) Fix maven codena... Ben McGuire (JIRA)

This occurs when any files paths have mixed slashes due to windows file paths. For example if I setup the plugin as follows
<plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>codenarc-maven-plugin</artifactId> <version>0.18</version> <configuration> <excludes>${basedir}/scripts/*.*</excludes> </configuration> <executions> <execution> <phase>compile</phase> <goals> <goal>codenarc</goal> </goals> </execution> </executions> </plugin>