<?xml version="1.0" encoding="UTF-8"?>
<!-- =======================================================================    
        Maven Project Configuration File                                        
                                                                                
        The Geotools Project                                                    
            http://www.geotools.org/                                            
                                                                                
        Version: $Id$              
     ======================================================================= -->
<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.geotools.jdbc</groupId>
    <artifactId>gt-jdbc</artifactId>
    <version>8.8.0-ENTERPRISE</version>
  </parent>


  <!-- =========================================================== -->
  <!--     Module Description                                      -->
  <!-- =========================================================== -->
  <groupId>org.geotools.jdbc</groupId>
  <artifactId>gt-jdbc-spatialite</artifactId>
  <packaging>jar</packaging>
  <name>SpatiaLite DataStore</name>
  

  <scm>
    <connection>
      scm:svn:http://svn.osgeo.org/geotools/trunk/modules/plugin/jdbc/jdbc-spatialite/
    </connection>
    <url>http://svn.osgeo.org/geotools/trunk/modules/plugin/jdbc/jdbc-spatialite/</url>
  </scm>

  <description>DataStore for SpatiaLite Database</description>

  <licenses>
    <license>
      <name>Lesser General Public License (LGPL)</name>
      <url>http://www.gnu.org/copyleft/lesser.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>


  <!-- =========================================================== -->
  <!--     Developers and Contributors                             -->
  <!-- =========================================================== -->
  <developers>
    <developer>
      <name>Justin Deoliveira</name>
      <id>jdeolive</id>
      <email>jdeolive@users.sourceforge.net</email>
      <organization>TOPP</organization>
      <roles>
        <role>Module Maintainer</role>
        <role>Java Developer</role>
      </roles>
    </developer>
  </developers>

  <dependencies>
    <dependency>
      <groupId>org.xerial</groupId>
      <artifactId>sqlite-jdbc-spatialite</artifactId>
      <version>3.7.2-2.4</version>
    </dependency>
  </dependencies>

  <profiles>
    <profile>
      <id>skipDataStoreFactoryTest1</id>
      <activation>
        <jdk>1.6</jdk>
      </activation>
      <properties>
        <test.exclude.pattern>**/SpatiaLiteDataStoreFactoryTest*</test.exclude.pattern>
      </properties>
    </profile>
    <profile>
      <id>skipDataStoreFactoryTest2</id>
      <activation>
        <os>
          <family>Windows</family>
          <arch>x86_64</arch>
        </os>
      </activation>
      <properties>
        <test.exclude.pattern>**/SpatiaLiteDataStoreFactoryTest*</test.exclude.pattern>
      </properties>
    </profile>
  </profiles>

</project>
