DependencySet includes filter not working after 2.2-beta-2 ----------------------------------------------------------
Key: MASSEMBLY-544 URL: http://jira.codehaus.org/browse/MASSEMBLY-544 Project: Maven 2.x Assembly Plugin Issue Type: Bug Affects Versions: 2.2 Environment: win32, Maven 2.2.1 and Maven 3.0.2 Reporter: Omer A Kudat If the includes/include "subelements are present, they define a set of artifact coordinates to include." That's the definition from the assembly site. Until recently, we have been using this filter as advertised. However, yesterday we upgraded the plugin from 2.2-beta-2 to 2.2. Now, the inclusion filter has no effect, and all dependencies are included. {code} <?xml version="1.0"?> <assembly xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/xsd/assembly-1.1.0-SNAPSHOT.xsd"> <id>dam</id> <formats> <format>tar</format> </formats> <includeBaseDirectory>true</includeBaseDirectory> <baseDirectory>${project.version}</baseDirectory> <dependencySets> <dependencySet> <outputFileNameMapping>${artifact.artifactId}.${artifact.extension}</outputFileNameMapping> <outputDirectory>lib</outputDirectory> <fileMode>0744</fileMode> <directoryMode>0755</directoryMode> <useTransitiveDependencies>true</useTransitiveDependencies> <useTransitiveFiltering>true</useTransitiveFiltering> <includes> <include>com.mycompany*</include> </includes> </dependencySet> </dependencySets> </assembly> {code} -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira