<?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>21-SNAPSHOT</version>
  </parent>


	<!-- =========================================================== -->
	<!-- Module Description -->
	<!-- =========================================================== -->
	<groupId>org.geotools.jdbc</groupId>
	<artifactId>gt-jdbc-sqlserver</artifactId>
	<packaging>jar</packaging>
	<name>SQL Server DataStore</name>
	<url>http://maven.geotools.fr/reports/modules/plugin/jdbc/jdbc-sqlserver/</url>


	<description>
	DataStore for SQL Server 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>
		<developer>
			<name>Andrea Aime</name>
			<id>aaime</id>
			<email>andrea.aime@geo-solutions.it</email>
			<organization>GeoSolutions</organization>
			<roles>
				<role>Module Maintainer</role>
				<role>Java Developer</role>
			</roles>
		</developer>
	</developers>
	<dependencies>
		<dependency>
			<groupId>net.sourceforge.jtds</groupId>
			<artifactId>jtds</artifactId>
			<version>${jtdsDriverVersion}</version>
		</dependency>
	</dependencies>
	<profiles>
	<!-- If you have access to the MS SQL Server driver you can    -->
	<!-- rebuild this geotools plugin with that driver to use that -->
	<!-- driver instead of the jtds driver:                        -->
	<!--   Download the sqljdbc41.jar driver from Microsoft and    -->
	<!--   install into maven:
	        mvn install:install-file -Dfile=sqljdbc41.jar \
	            -DgroupId=com.microsoft.sqlserver -DartifactId=sqljdbc41 \
	            -Dversion=4.1 -Dpackaging=jar -DgeneratePom=true
	                                                               -->
	<!-- You can then supply -Dsqlserver=true on the command line  -->
	<profile>
			<id>sqlServerDriver</id>
			<activation>
				<property>
					<name>sqlserver</name>
				</property>
			</activation>
			<dependencies>
				<dependency>
					<groupId>com.microsoft.sqlserver</groupId>
					<artifactId>sqljdbc41</artifactId>
					<version>${sqlServerDriverVersion}</version>
				</dependency>
			</dependencies>
		</profile>
	</profiles>

	<properties>
		<sqlServerDriverVersion>4.1</sqlServerDriverVersion>
		<jtdsDriverVersion>1.3.1</jtdsDriverVersion>
	</properties>
</project>
