<?xml version="1.0"?><project>
  <parent>
    <artifactId>teeda-project</artifactId>
    <groupId>org.seasar.teeda</groupId>
    <version>1.0.11-RC1</version>
    <relativePath>../teeda</relativePath>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>teeda-tiger</artifactId>
  <name>Teeda Tiger</name>
  <version>1.0.11-RC1</version>
  <url>http://teeda.seasar.org</url>
  <build>
    <defaultGoal>validate</defaultGoal>
    <pluginManagement>
      <plugins>
        <plugin>
          <artifactId>maven-compiler-plugin</artifactId>
          <configuration>
            <source>1.5</source>
            <target>1.5</target>
          </configuration>
        </plugin>
      </plugins>
    </pluginManagement>
  </build>
  <profiles>
    <profile>
      <id>example</id>
      <build>
        <defaultGoal>package</defaultGoal>
        <plugins>
          <plugin>
            <artifactId>maven-antrun-plugin</artifactId>
            <executions>
              <execution>
                <id>copy-jar</id>
                <phase>package</phase>
                <goals>
                  <goal>run</goal>
                </goals>
                <configuration>
                  <tasks>
                    <echo>*** copying jar file ... ***</echo>
                    <copy failonerror="false" todir="../teeda-html-example/src/main/webapp/WEB-INF/lib">
                      <fileset dir="${project.build.directory}">
                        <include name="${pom.build.finalName}.jar"></include>
                      </fileset>
                    </copy>
                    <copy failonerror="false" todir="../teeda-html-example/src/main/webapp/WEB-INF/lib/sources">
                      <fileset dir="${project.build.directory}">
                        <include name="${pom.build.finalName}-sources.jar"></include>
                      </fileset>
                    </copy>
                  </tasks>
                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
      <properties>
        <maven.test.skip>true</maven.test.skip>
      </properties>
    </profile>
  </profiles>
  <dependencies>
    <dependency>
      <groupId>org.seasar.container</groupId>
      <artifactId>s2-tiger</artifactId>
      <version>${seasar2.version}</version>
    </dependency>
    <dependency>
      <groupId>org.seasar.teeda</groupId>
      <artifactId>teeda-extension</artifactId>
      <version>1.0.11-RC1</version>
    </dependency>
  </dependencies>
  <distributionManagement>
    <status>deployed</status>
  </distributionManagement>
</project>