<?xml version="1.0"?><project>
  <parent>
    <artifactId>shale-parent</artifactId>
    <groupId>org.apache.shale</groupId>
    <version>1.0.3</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>shale-tiger</artifactId>
  <name>Shale Tiger Extensions</name>
  <version>1.0.3</version>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <systemProperties>
            <property>
              <name>basedir</name>
              <value>${basedir}</value>
            </property>
            <property>
              <name>org.apache.commons.logging.LogFactory</name>
              <value>org.apache.commons.logging.impl.LogFactoryImpl</value>
            </property>
            <property>
              <name>org.apache.commons.logging.Log</name>
              <value>org.apache.commons.logging.impl.SimpleLog</value>
            </property>
            <property>
              <name>org.apache.commons.logging.simplelog.log.org.apache.shale.tiger</name>
              <value>trace</value>
            </property>
          </systemProperties>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-antrun-plugin</artifactId>
        <executions>
          <execution>
            <id>construct-webapp</id>
            <phase>test-compile</phase>
            <goals>
              <goal>run</goal>
            </goals>
            <configuration>
              <tasks>
                <mkdir dir="${basedir}/target/test-webapp/WEB-INF"></mkdir>
                <copy file="${basedir}/target/test-classes/org/apache/shale/tiger/config/test-web.xml" tofile="${basedir}/target/test-webapp/WEB-INF/web.xml"></copy>
                <copy todir="${basedir}/target/test-webapp/WEB-INF">
                  <fileset includes="test-config-*.xml" dir="${basedir}/target/test-classes/org/apache/shale/tiger/config"></fileset>
                </copy>
                <mkdir dir="${basedir}/target/test-webapp/WEB-INF/classes/org/apache/shale/tiger/config"></mkdir>
                <copy file="${basedir}/target/test-classes/org/apache/shale/tiger/config/TestBean.class" todir="${basedir}/target/test-webapp/WEB-INF/classes/org/apache/shale/tiger/config"></copy>
                <mkdir dir="${basedir}/target/test-webapp/WEB-INF/classes/org/apache/shale/tiger/faces"></mkdir>
                <copy todir="${basedir}/target/test-webapp/WEB-INF/classes/org/apache/shale/tiger/faces">
                  <fileset includes="My*.class" dir="${basedir}/target/test-classes/org/apache/shale/tiger/faces"></fileset>
                </copy>
                <mkdir dir="${basedir}/target/test-webapp/WEB-INF/lib"></mkdir>
                <jar includes="org/apache/shale/tiger/config/TestBean3.class META-INF/faces-config.xml" destfile="${basedir}/target/test-webapp/WEB-INF/lib/test.jar" basedir="${basedir}/target/test-classes"></jar>
              </tasks>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
    </dependency>
    <dependency>
      <groupId>org.apache.shale</groupId>
      <artifactId>shale-core</artifactId>
      <version>1.0.3</version>
    </dependency>
    <dependency>
      <groupId>org.apache.shale</groupId>
      <artifactId>shale-test</artifactId>
      <version>1.0.3</version>
    </dependency>
  </dependencies>
  <reporting>
    <plugins>
      <plugin>
        <artifactId>maven-pmd-plugin</artifactId>
        <configuration>
          <targetJdk>1.5</targetJdk>
        </configuration>
      </plugin>
    </plugins>
  </reporting>
  <distributionManagement>
    <status>deployed</status>
  </distributionManagement>
</project>