<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">
   <modelVersion>4.0.0</modelVersion>
   <parent>
      <groupId>org.terracotta.forge</groupId>
      <artifactId>tim-parent</artifactId>
      <version>1.2.2</version>
   </parent>
   <groupId>org.terracotta.modules</groupId>
   <artifactId>tim-tree-map-cache</artifactId>
   <version>1.2.2</version>
   <packaging>jar</packaging>
   <name>Tree Map Cache</name>
   <description>
      Drop-in replacement for JBoss TreeCache and PojoCache powered by Terracotta. This is a Terracotta Integration Module (TIM)
      for Tree Map Cache, a distributed cache that is API-compatible with the JBoss PojoCache and TreeCache components. 
      If you are currently using one of these components, you can replace the use of those components with Tree Map Cache and 
      only minimal code changes.
   </description>

   <properties>
      <forgeTags>Integration Module, Cache</forgeTags>
      <bundle.docUrl>http://forge.terracotta.org/releases/projects/tim-tree-map-cache</bundle.docUrl>
   </properties>

   <scm>
      <connection>scm:svn:http://svn.terracotta.org/svn/forge/projects/tim-tree-map-cache/tags/release-1.2.2</connection>
      <developerConnection>scm:svn:https://svn.terracotta.org/repo/forge/projects/tim-tree-map-cache/tags/release-1.2.2</developerConnection>
      <url>http://svn.terracotta.org/svn/forge/projects/tim-tree-map-cache/tags/release-1.2.2</url>
   </scm>

   <developers>
      <developer>
         <id>amiller</id>
         <name>Alex Miller</name>
         <email>amiller@terracotta.org</email>
         <organization>Terracotta, Inc.</organization>
         <organizationUrl>http://www.terracotta.org</organizationUrl>
         <roles>
            <role>developer</role>
         </roles>
         <timezone>-6</timezone>
      </developer>
   </developers>

   <!--
      <reporting>
         <plugins>
            <plugin>
               <groupId>org.apache.maven.plugins</groupId>
               <artifactId>maven-project-info-reports-plugin</artifactId>
            </plugin>
            <plugin>
               <groupId>org.apache.maven.plugins</groupId>
               <artifactId>maven-javadoc-plugin</artifactId>
            </plugin>
            <plugin>
               <groupId>org.codehaus.mojo</groupId>
               <artifactId>jxr-maven-plugin</artifactId>
            </plugin>
         </plugins>
      </reporting>
   -->
   <dependencies>
      <dependency>
         <groupId>commons-logging</groupId>
         <artifactId>commons-logging-api</artifactId>
         <version>1.1</version>
      </dependency>
      <dependency>
         <groupId>quartz</groupId>
         <artifactId>quartz</artifactId>
         <version>1.5.1</version>
      </dependency>
      <dependency>
         <groupId>junit</groupId>
         <artifactId>junit</artifactId>
         <version>4.1</version>
      </dependency>
   </dependencies>

   <build>
      <plugins>
         <plugin>
           <groupId>org.terracotta.maven.plugins</groupId>
           <artifactId>tc-maven-plugin</artifactId>
           <configuration>
             <terracottaProjectStatus>Experimental</terracottaProjectStatus>
           </configuration>
         </plugin>
         <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-assembly-plugin</artifactId>
            <configuration>
               <descriptorRefs>
                  <descriptorRef>src</descriptorRef>
                  <descriptorRef>bin</descriptorRef>
               </descriptorRefs>
               <outputDirectory>${project.build.directory}/site/downloads</outputDirectory>
            </configuration>
            <executions>
               <execution>
                  <phase>site</phase>
                  <goals>
                     <goal>assembly</goal>
                  </goals>
               </execution>
            </executions>
         </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>
   <pluginRepositories>
      <pluginRepository>
         <id>terracotta-repository</id>
         <url>http://www.terracotta.org/download/reflector/maven2</url>
         <releases>
            <enabled>true</enabled>
         </releases>
         <snapshots>
            <enabled>true</enabled>
         </snapshots>
      </pluginRepository>
   </pluginRepositories>  
</project>