<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>org.jboss.jsfunit</groupId>
      <artifactId>jboss-jsfunit</artifactId>
      <version>1.2.0.Final</version>
   </parent>

   <modelVersion>4.0.0</modelVersion>
   <artifactId>jboss-jsfunit-analysis</artifactId>
   <name>JSFUnit Analysis</name>
   <packaging>jar</packaging>

   <reporting>
      <plugins>
         <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-javadoc-plugin</artifactId>
            <configuration>
               <links>
                  <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
                  <link>http://java.sun.com/javaee/javaserverfaces/1.2/docs/api/</link>
               </links>
            </configuration>
         </plugin>
         <plugin>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.1.2</version>
            <configuration>
               <excludes>
                  <!-- exclude>**/TestUtils*</exclude -->
               </excludes>
            </configuration>
         </plugin>
      </plugins>
   </reporting>

   <dependencies>

      <dependency>
         <groupId>jboss.web</groupId>
         <artifactId>servlet-api</artifactId>
         <scope>provided</scope>
      </dependency>

      <dependency>
         <groupId>commons-digester</groupId>
         <artifactId>commons-digester</artifactId>
         <version>1.8</version>
         <optional>true</optional>
      </dependency>

      <dependency>
         <groupId>javax.faces</groupId>
         <artifactId>jsf-api</artifactId>
         <scope>provided</scope>
      </dependency>

      <dependency>
         <groupId>javax.el</groupId>
         <artifactId>el-api</artifactId>
         <scope>provided</scope>
      </dependency>

      <dependency>
         <groupId>maven-taglib</groupId>
         <artifactId>maven-taglib-plugin</artifactId>
         <version>1.4.2</version>
         <scope>provided</scope>
      </dependency>

      <dependency>
         <groupId>javax.servlet.jsp</groupId>
         <artifactId>jsp-api</artifactId>
         <version>2.1</version>
         <scope>provided</scope>
      </dependency>

      <dependency>
         <groupId>junit</groupId>
         <artifactId>junit</artifactId>
         <scope>provided</scope>
      </dependency>

      <dependency>
         <groupId>de.odysseus.juel</groupId>
         <artifactId>juel</artifactId>
         <version>2.1.0</version>
      </dependency>

      <dependency>
         <groupId>commons-io</groupId>
         <artifactId>commons-io</artifactId>
      </dependency>

      <dependency>
         <groupId>commons-collections</groupId>
         <artifactId>commons-collections</artifactId>
      </dependency>
      
      <dependency>
         <groupId>xml-apis</groupId>
         <artifactId>xml-apis</artifactId>
         <version>1.3.04</version>
         <scope>provided</scope>
      </dependency>

   </dependencies>

</project>