<?xml version="1.0" encoding="UTF-8"?><project>
  <parent>
    <artifactId>appfuse</artifactId>
    <groupId>org.appfuse</groupId>
    <version>2.0-m3</version>
    <relativePath>../../pom.xml</relativePath>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>appfuse-basic-spring</artifactId>
  <name>AppFuse Basic Archetype - Spring MVC</name>
  <version>1.0-m3</version>
  <description>Maven 2 archetype that creates a web application with AppFuse embedded in it.</description>
  <scm>
    <connection>scm:svn:https://appfuse.dev.java.net/svn/appfuse/trunk/archetypes/appfuse-basic-spring</connection>
    <developerConnection>scm:svn:https://appfuse.dev.java.net/svn/appfuse/trunk/archetypes/appfuse-basic-spring</developerConnection>
    <url>https://appfuse.dev.java.net/source/browse/appfuse/trunk/archetypes/appfuse-basic-spring</url>
  </scm>
  <profiles>
    <profile>
      <id>integration-test</id>
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-antrun-plugin</artifactId>
            <version>1.1</version>
            <executions>
              <execution>
                <phase>integration-test</phase>
                <goals>
                  <goal>run</goal>
                </goals>
              </execution>
            </executions>
            <configuration>
              <tasks>
                <ant antfile="../common-test.xml" dir=".">
                  <property value="${pom.artifactId}" name="archetype"></property>
                  <property value="1.0-m3" name="version"></property>
                </ant>
              </tasks>
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
  <distributionManagement>
    <status>deployed</status>
  </distributionManagement>
</project>
