1 <?xml version="1.0" encoding="UTF-8"?> 2 <!-- ======================================================================= 3 Maven Project Configuration File The Geotools Project http://www.geotools.org/ 4 Version: $Id$ ======================================================================= --> 5 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 6 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 7 http://maven.apache.org/maven-v4_0_0.xsd"> 8 <modelVersion>4.0.0</modelVersion> 9 10 <parent> 11 <groupId>org.geotools.jdbc</groupId> 12 <artifactId>gt-jdbc</artifactId> 13 <version>24.1</version> 14 </parent> 15 16 17 <!-- =========================================================== --> 18 <!-- Module Description --> 19 <!-- =========================================================== --> 20 <groupId>org.geotools.jdbc</groupId> 21 <artifactId>gt-jdbc-sqlserver</artifactId> 22 <packaging>jar</packaging> 23 <name>SQL Server DataStore</name> 24 <url>https://docs.geotools.org/latest/userguide/library/jdbc/sqlserver.html</url> 25 26 27 <description> 28 DataStore for SQL Server Database. 29 </description> 30 31 <licenses> 32 <license> 33 <name>Lesser General Public License (LGPL)</name> 34 <url>http://www.gnu.org/copyleft/lesser.txt</url> 35 <distribution>repo</distribution> 36 </license> 37 </licenses> 38 39 40 <!-- =========================================================== --> 41 <!-- Developers and Contributors --> 42 <!-- =========================================================== --> 43 <developers> 44 <developer> 45 <name>Justin Deoliveira</name> 46 <id>jdeolive</id> 47 <email>jdeolive@users.sourceforge.net</email> 48 <organization>TOPP</organization> 49 <roles> 50 <role>Module Maintainer</role> 51 <role>Java Developer</role> 52 </roles> 53 </developer> 54 <developer> 55 <name>Andrea Aime</name> 56 <id>aaime</id> 57 <email>andrea.aime@geo-solutions.it</email> 58 <organization>GeoSolutions</organization> 59 <roles> 60 <role>Module Maintainer</role> 61 <role>Java Developer</role> 62 </roles> 63 </developer> 64 </developers> 65 <dependencies> 66 <dependency> 67 <groupId>net.sourceforge.jtds</groupId> 68 <artifactId>jtds</artifactId> 69 </dependency> 70 <dependency> 71 <groupId>com.microsoft.sqlserver</groupId> 72 <artifactId>mssql-jdbc</artifactId> 73 </dependency> 74 </dependencies> 75 </project>