Maven Repository - POM file for JDBC jtds 1.3.1 1.3.1

Summary

jTDS.

jTDS is an open source 100% pure Java (type 4) JDBC 3.0 driver for Microsoft SQL Server (6.5, 7, 2000, 2005, 2008, 2012) and Sybase ASE (10, 11, 12, 15). jTDS is based on FreeTDS and is currently the fastest production-ready JDBC driver for SQL Server and Sybase. jTDS is 100% JDBC ....

Declaration

Here is the list of declaration for jtds. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>net.sourceforge.jtds</groupId>
   <artifactId>jtds</artifactId>
   <version>1.3.1</version>
</dependency>

If you think this Maven repository POM file listing for jtds is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.





License

Name:LGPL
URL: http://www.gnu.org/copyleft/lesser.html.

Depends on

The jtds-1.3.1 has 1 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
Networkjcifs 1.3.17
JCIFS is an Open Source client library that implements the CIFS/SMB networking protocol in 100% Java
9

Packages

The following packages are defined in the jtds-1.3.1.jar

net.sourceforge.jtds.jdbc
net.sourceforge.jtds.jdbc.cache
net.sourceforge.jtds.jdbcx
net.sourceforge.jtds.jdbcx.proxy
net.sourceforge.jtds.ssl
net.sourceforge.jtds.util

POM File Source

Here is the content of the POM file.

<?xml version="1.0"?>
<project>

  <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>7</version>
  </parent>

  <modelVersion>4.0.0</modelVersion>
  <groupId>net.sourceforge.jtds</groupId>
  <artifactId>jtds</artifactId>
  <version>1.3.1</version>
  <packaging>jar</packaging>
  <name>jTDS</name>

  <url>http://jtds.sourceforge.net</url>

  <licenses>
    <license>
      <name>LGPL</name>
      <url>http://www.gnu.org/copyleft/lesser.html</url>
    </license>
  </licenses>

  <description>jTDS is an open source 100% pure Java (type 4) JDBC 3.0 driver 
    for Microsoft SQL Server (6.5, 7, 2000, 2005, 2008, 2012) and Sybase ASE
    (10, 11, 12, 15). jTDS is based on FreeTDS and is currently the fastest
    production-ready JDBC driver for SQL Server and Sybase. jTDS is 100% JDBC
    3.0 compatible, supporting forward-only and scrollable/updateable ResultSets
    and implementing all the DatabaseMetaData and ResultSetMetaData methods. 
  </description>

  <scm>
    <url>https://svn.code.sf.net/p/jtds/code</url>
  </scm>

  

  <dependencies>
    <!-- jCIFS may be required for named pipe connections -->
    <dependency>
      <groupId>jcifs</groupId>
      <artifactId>jcifs</artifactId>
      <version>1.3.17</version>
      <scope>compile</scope>
      <optional>true</optional>
    </dependency>
  </dependencies>

</project>