[ 
http://jira.codehaus.org/browse/MWAR-146?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_124152
 ] 

Jene Jasper commented on MWAR-146:
----------------------------------

Next create the project webapp pom with optional specific dependencies, for 
example:

<?xml version="1.0" encoding="UTF-8"?>
<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";>

  <parent>
    <groupId>nl.abz</groupId>
    <artifactId>test</artifactId>
    <version>v0100</version>
  </parent>

  <modelVersion>4.0.0</modelVersion>
  <groupId>nl.abz.test</groupId>
  <artifactId>test-webapp</artifactId>
  <packaging>war</packaging>
  <name>Test project WebApp</name>

<dependencies>
    <dependency>
      <groupId>org.apache.myfaces.core</groupId>
      <artifactId>myfaces-impl</artifactId>
      <version>1.1.5</version>
      <scope>compile</scope>
      <type>jar</type>
    </dependency>
</dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-war-plugin</artifactId>
        <version>2.0.2.patch.MWAR-146</version>
        <configuration>
          <warSourceExcludes>
            WEB-INF/lib/*.jar,
          </warSourceExcludes>
          <warLibIncludes>
            WEB-INF/lib/struts-*.jar,
            WEB-INF/lib/myfaces-impl-*.jar,
          </warLibIncludes>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>

> Better support for skinny wars
> ------------------------------
>
>                 Key: MWAR-146
>                 URL: http://jira.codehaus.org/browse/MWAR-146
>             Project: Maven 2.x War Plugin
>          Issue Type: Improvement
>    Affects Versions: 2.0.2
>            Reporter: Jene Jasper
>
> Added a warLibIncludes element to include only the specified list of jars 
> because the warSourceExcludes is never finished when you add new dependencies 
> to a 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

        

Reply via email to