[
https://issues.jboss.org/browse/JBIDE-10642?page=com.atlassian.jira.plugi...
]
Fred Bricon commented on JBIDE-10642:
-------------------------------------
So with maven, exclusions take precedence. If you do :
{code:xml}
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.1.1</version>
<configuration>
<packagingIncludes>**/*.jar</packagingIncludes>
<packagingExcludes>**/*.jar</packagingExcludes>
</configuration>
</plugin>
{code}
or
{code:xml}
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.1.1</version>
<configuration>
<packagingIncludes>**/*</packagingIncludes>
<packagingExcludes>**/*.jar</packagingExcludes>
</configuration>
</plugin>
{code}
Then the jars are excluded
publisher/server adapter level include/excludes postprocessing
--------------------------------------------------------------
Key: JBIDE-10642
URL:
https://issues.jboss.org/browse/JBIDE-10642
Project: Tools (JBoss Tools)
Issue Type: Sub-task
Components: JBossAS/Servers
Reporter: Max Rydahl Andersen
Assignee: Rob Stryker
Fix For: 3.3.0.Beta1
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see:
http://www.atlassian.com/software/jira