Maven Repository - POM file for JDBC jtds 1.2.4 1.2.4

Summary

jtds.

TDS is an open source 100% pure Java (type 4) JDBC 3.0 driver for Microsoft SQL Server (6.5, 7, 2000,2005, and 2008) and Sybase (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 compati....

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.2.4</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.

Depended by

The following table lists the most popular artifacts which are depending on jtds-1.2.4. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
JDBCdruid 0.2.8
An JDBC datasource implementation.
17
ORMsqueryl_2.9.2 0.9.5-6
A Scala ORM and DSL for talking with Databases using minimum verbosity and maximum type safety
14

Packages

The following packages are defined in the jtds-1.2.4.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.

<project>

  <modelVersion>4.0.0</modelVersion>
  <groupId>net.sourceforge.jtds</groupId>
  <artifactId>jtds</artifactId>
  <version>1.2.4</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>TDS is an open source 100% pure Java (type 4) JDBC 3.0 driver 
    for Microsoft SQL Server (6.5, 7, 2000,2005, and 2008) and Sybase (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, concurrent (completely 
    independent) Statements and implementing all the DatabaseMetaData and 
    ResultSetMetaData  methods. 
  </description>
  
  <scm>
    <url>http://jtds.cvs.sourceforge.net/jtds</url>
  </scm>
  
  <profiles>
  
    <!-- ========================================================================== -->
    <!-- Use this profile to create maven upload bundle                             -->
    <!-- Require jtds-${version}-src.zip, jtds=${vesion}.jar under ${basedir}       -->
    <!-- ========================================================================== -->
    <profile>
      <id>build-maven-upload-bundle</id>
      <build>
        <defaultGoal>package</defaultGoal>
        <plugins>
          
          <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>truezip-maven-plugin</artifactId>
            <version>1.0-beta-2</version>
            <executions>
              <execution>
                <id>package-javadoc</id>
                <phase>compile</phase>
                <goals>
                  <goal>copy</goal>
                </goals>
                <configuration>
                  <fileset>
                    <outputDirectory>${project.build.directory}/upload/jtds-${project.version}-javadoc.jar</outputDirectory>
                    <directory>${basedir}/${project.artifactId}-${project.version}-src.zip/doc</directory>
                  </fileset>
                </configuration>
              </execution>
              <execution>
                <id>package-source</id>
                <phase>package</phase>
                <goals>
                  <goal>copy</goal>
                </goals>
                <configuration>
                  <fileset>
                    <outputDirectory>${project.build.directory}/upload/jtds-${project.version}-sources.jar</outputDirectory>
                    <directory>${basedir}/${project.artifactId}-${project.version}-src.zip/src/main</directory>
                  </fileset>
                </configuration>
              </execution>
            </executions>
          </plugin>

          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-antrun-plugin</artifactId>
            <version>1.2</version>
            <executions>
              <execution>
                <id>copy-main-jar-and-package-bundle</id>
                <phase>package</phase>
                <goals>
                  <goal>run</goal>
                </goals>
                <configuration>
                  <tasks>
                    <copy file="${basedir}/${project.artifactId}-${project.version}.jar" todir="${project.build.directory}/upload" />
                    <copy file="${basedir}/pom.xml" todir="${project.build.directory}/upload" />
                    <zip destfile="${project.build.directory}/${project.artifactId}-${project.version}-bundle.jar" basedir="${project.build.directory}/upload" />
                  </tasks>
                </configuration>
              </execution>
            </executions>
          </plugin>
          
        </plugins>
      </build>
    </profile>
  </profiles>
</project>