You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Scott Heaberlin (JIRA)" <ji...@codehaus.org> on 2009/01/07 00:11:19 UTC

[jira] Issue Comment Edited: (MEAR-96) earSourceExcludes does not work for jar dependency filtering like warSourceExcludes / packagingExcludes for the maven-war-plugin

    [ http://jira.codehaus.org/browse/MEAR-96?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=160170#action_160170 ] 

Scott Heaberlin edited comment on MEAR-96 at 1/6/09 5:10 PM:
-------------------------------------------------------------

POM xml pasted into original description got munged; attached is the original example file.

      was (Author: sheaberlin):
    POM xml pasted into original description got munged; here is the original file.
  
> earSourceExcludes does not work for jar dependency filtering like warSourceExcludes / packagingExcludes for the maven-war-plugin
> --------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: MEAR-96
>                 URL: http://jira.codehaus.org/browse/MEAR-96
>             Project: Maven 2.x Ear Plugin
>          Issue Type: Bug
>         Environment: Windows XP SP3
>            Reporter: Scott Heaberlin
>         Attachments: pom.xml
>
>
> The earSourceExcludes parameter of the EarMojo does not appear to have any effect on jar dependencies.  Given the pom below, commons-logging.jar should be excluded from the resultant .ear archive but is not.
> The junit test for the ear mojo (test-project-014) uses earSourceExcludes but only with files that are in the earSourceDirectory.
> Similar functionality works for the maven-war-plugin (warSourceExcludes, which was renamed to packagingExcludes) so it was a little confusing to find that earSourceIncludes does not allow filtering in the same fashion.
> ------ example pom.xml
> <project xmlns="http://maven.apache.org/POM/4.0.0"
> 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
> 	<modelVersion>4.0.0</modelVersion>
> 	<groupId>example</groupId>
> 	<artifactId>example-ear</artifactId>
> 	<packaging>ear</packaging>
> 	<name>example-ear</name>
> 	<version>0.1-SNAPSHOT</version>
> 	<description>
> 		sample ear project demonstrating effectiveness of
> 		earSourceExcludes parameter of the maven-ear-plugin
> 	</description>
>     <build>
>         <plugins>
>             <plugin>
>                 <artifactId>maven-ear-plugin</artifactId>
>                 <version>2.3.1</version>
>                 <configuration>
>                 	<earSourceDirectory>src/main/application</earSourceDirectory>
>                     <earSourceExcludes>**/commons*</earSourceExcludes>
>                 </configuration>
>             </plugin>
>         </plugins>
>     </build>
> 	<dependencies>
> 		<dependency>
> 			<groupId>org.springframework</groupId>
> 			<artifactId>spring-core</artifactId>
> 			<version>1.2.7</version>
> 		</dependency>
> 	</dependencies>
> </project>

-- 
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