<?xml version="1.0" encoding="UTF-8" ?>
<!--

   All content copyright (c) 2003-2008 Terracotta, Inc.,
   except as may otherwise be noted in a separate copyright notice.
   All rights reserved.

-->
<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">
   <properties>
      <forgeTags>Integration Module</forgeTags>
      <spring-webflow-version>2.0.3.RELEASE</spring-webflow-version>
   </properties>

   <modelVersion>4.0.0</modelVersion>

   <parent>
      <groupId>org.terracotta.forge</groupId>
      <artifactId>tim-parent</artifactId>
      <version>1.3.0</version>
   </parent>
   <groupId>org.terracotta.modules</groupId>
   <artifactId>tim-spring-webflow</artifactId>
   <name>tim-spring-webflow</name>
   <version>1.1.1</version>
   <description>Terracotta Integration Module for Spring Webflow.</description>
   <packaging>jar</packaging>

  <licenses>
    <license>
      <name>Terracotta Public License</name>
      <url>http://www.terracotta.org/license.txt</url>
    </license>
  </licenses>

   <scm>
      <connection>scm:svn:http://svn.terracotta.org/svn/forge/projects/tim-spring-webflow/tags/release-1.1.1</connection>
      <developerConnection>scm:svn:https://svn.terracotta.org/repo/forge/projects/tim-spring-webflow/tags/release-1.1.1</developerConnection>
      <url>http://svn.terracotta.org/svn/forge/projects/tim-spring-webflow/tags/release-1.1.1</url>
   </scm>

   <dependencies>
      <dependency>
         <groupId>org.terracotta</groupId>
         <artifactId>terracotta</artifactId>
      </dependency>
      <dependency>
         <artifactId>org.springframework.webflow</artifactId>
         <version>${spring-webflow-version}</version>
         <groupId>org.springframework.webflow</groupId>
         <scope>provided</scope>
      </dependency>
   </dependencies>

   <build>
      <plugins>
         <plugin>
            <groupId>org.terracotta.maven.plugins</groupId>
            <artifactId>tc-maven-plugin</artifactId>
            <configuration>
               <bundleActivator>
                  org.terracotta.modules.springwebflow_2_0_3.SpringWebflowTerracottaConfigurator 
               </bundleActivator>
               <importPackage> org.terracotta.modules.configuration 
               </importPackage>

              <processes>
                <process nodeName="test" count="1" modules="org.terracotta.modules.tim-spring-webflow;bundle-version:=1.1.1.SNAPSHOT">
                  <className>test.VersionTest</className>
                </process>
              </processes>

            </configuration>
         </plugin>
      </plugins>
   </build>

   <repositories>
      <repository>
         <id>terracotta-repository</id>
         <url> http://www.terracotta.org/download/reflector/maven2 </url>
         <releases>
            <enabled>true</enabled>
         </releases>
         <snapshots>
            <enabled>true</enabled>
         </snapshots>
      </repository>
   </repositories>
</project>
