jira-importer commented on issue #140: URL: https://github.com/apache/maven-ear-plugin/issues/140#issuecomment-2955258272
**[David Hawkins](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=dhawkins)** commented Well I am not quite sure what else to say here. I am working with 2.0-beta-3-SNAPSHOT from http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-war-plugin Are you certain that maven is using the plugin that you are compiling? Did you execute a mvn install when you compiled the plugin? What version of the war plugin are you specifying in your pom? You might add a log statement or change an existing one so you can verify that you are executing the version that you think you are. Another option is to run mvn with -X and you should be able to see which version is being configured by the container. I am including a snippet from my test web application pom.xml that I am testing this with to see if it helps. \<plugins> \<plugin> \<artifactId>maven-war-plugin\</artifactId> \<version>2.0-beta-3-SNAPSHOT\</version> \<configuration> \<excludes>foo.jsp\</excludes> \<dependentWarExcludes>**/file1.txt,file2.txt\</dependentWarExcludes> \</configuration> \</plugin> \</plugins> --David -- 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]
