jira-importer commented on issue #107: URL: https://github.com/apache/maven-source-plugin/issues/107#issuecomment-2959535003
**[Daniel Kulp](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=dkulp)** commented This one is a bit more complex. For CXF, we have properties files in the src/main/java dir (i18n message files) that are included via resource. Thus, in the pom, we have: <resources> <resource> <directory>src/main/java</directory> <excludes> <exclude>**/*.java</exclude> </excludes> </resource> </resources> to grab all the non-java files as resources. The new source plugin uses the **/*.java as an exclude, but but DOESN'T add the list of default excludes. Thus, the source plugin will get the .svn dirs. Basically, for resources that don't have excludes, the source plugin works fine as it uses the default excludes. For those that DO define an exclude, it doesn't quite work as expected. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
