1<?xml version="1.0"?>
2<project>
3
4  <parent>
5    <groupId>org.sonatype.oss</groupId>
6    <artifactId>oss-parent</artifactId>
7    <version>7</version>
8  </parent>
9
10  <modelVersion>4.0.0</modelVersion>
11  <groupId>net.sourceforge.jtds</groupId>
12  <artifactId>jtds</artifactId>
13  <version>1.3.1</version>
14  <packaging>jar</packaging>
15  <name>jTDS</name>
16
17  <url>http://jtds.sourceforge.net</url>
18
19  <licenses>
20    <license>
21      <name>LGPL</name>
22      <url>http://www.gnu.org/copyleft/lesser.html</url>
23    </license>
24  </licenses>
25
26  <description>jTDS is an open source 100% pure Java (type 4) JDBC 3.0 driver
27    for Microsoft SQL Server (6.5, 7, 2000, 2005, 2008, 2012) and Sybase ASE
28    (10, 11, 12, 15). jTDS is based on FreeTDS and is currently the fastest
29    production-ready JDBC driver for SQL Server and Sybase. jTDS is 100% JDBC
30    3.0 compatible, supporting forward-only and scrollable/updateable ResultSets
31    and implementing all the DatabaseMetaData and ResultSetMetaData methods.
32  </description>
33
34  <scm>
35    <url>https://svn.code.sf.net/p/jtds/code</url>
36  </scm>
37
38  <developers>
39    <developer>
40      <id>momo</id>
41      <name>Holger Rehn</name>
42      <email>ickzon@users.sourceforge.net</email>
43    </developer>
44  </developers>
45
46  <dependencies>
47    <!-- jCIFS may be required for named pipe connections -->
48    <dependency>
49      <groupId>jcifs</groupId>
50      <artifactId>jcifs</artifactId>
51      <version>1.3.17</version>
52      <scope>compile</scope>
53      <optional>true</optional>
54    </dependency>
55  </dependencies>
56
57</project>