Maven Repository - POM file for Spring spring-jdbc 3.2.1.RELEASE 3.2.1.RELEASE

Summary

Spring JDBC.

Declaration

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

<dependency>
   <groupId>org.springframework</groupId>
   <artifactId>spring-jdbc</artifactId>
   <version>3.2.1.RELEASE</version>
</dependency>

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

License

Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.

Depends on

The spring-jdbc-3.2.1.RELEASE has 10 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
Springspring-tx 3.2.1.RELEASE
Spring Transaction
6
Databaseh2 1.0.71
H2 Database Engine
27
Springspring-beans 3.2.1.RELEASE
Spring Beans
15
JDBCderbyclient 10.5.3.0_1
The Derby client JDBC driver, used to connect to a Derby server over a network connection.
17
Springspring-core 3.2.1.RELEASE
Spring Core
18
JDBCderby 10.5.3.0_1
Contains the core Apache Derby database engine, which also includes the embedded JDBC driver.
75
Databasehsqldb 1.8.0.10
Lightweight 100% Java SQL Database Engine
164
JDBCc3p0 0.9.1.2
c3p0 is an easy-to-use library for augmenting traditional (DriverManager-based) JDBC drivers with JNDI-bindable DataSources, including DataSources that implement Connection and Statement Pooling, as described by the jdbc3 spec and jdbc2 std extension.
82
Springspring-context 3.2.1.RELEASE
Spring Context
14




Packages

The following packages are defined in the spring-jdbc-3.2.1.RELEASE.jar

org.springframework.jdbc
org.springframework.jdbc.config
org.springframework.jdbc.core
org.springframework.jdbc.core.metadata
org.springframework.jdbc.core.namedparam
org.springframework.jdbc.core.simple
org.springframework.jdbc.core.support
org.springframework.jdbc.datasource
org.springframework.jdbc.datasource.embedded
org.springframework.jdbc.datasource.init
org.springframework.jdbc.datasource.lookup
org.springframework.jdbc.object
org.springframework.jdbc.support
org.springframework.jdbc.support.incrementer
org.springframework.jdbc.support.lob
org.springframework.jdbc.support.nativejdbc
org.springframework.jdbc.support.rowset
org.springframework.jdbc.support.xml




POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.springframework</groupId>
  <artifactId>spring-jdbc</artifactId>
  <version>3.2.1.RELEASE</version>
  <name>Spring JDBC</name>
  <description>Spring JDBC</description>
  <url>https://github.com/SpringSource/spring-framework</url>
  <organization>
    <name>SpringSource</name>
    <url>http://springsource.org/spring-framework</url>
  </organization>
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  
  <scm>
    <connection>scm:git:git://github.com/SpringSource/spring-framework</connection>
    <developerConnection>scm:git:git://github.com/SpringSource/spring-framework</developerConnection>
    <url>https://github.com/SpringSource/spring-framework</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-tx</artifactId>
      <version>3.2.1.RELEASE</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.h2database</groupId>
      <artifactId>h2</artifactId>
      <version>1.0.71</version>
      <scope>compile</scope>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>org.apache.geronimo.specs</groupId>
      <artifactId>geronimo-jta_1.1_spec</artifactId>
      <version>1.1</version>
      <scope>compile</scope>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-beans</artifactId>
      <version>3.2.1.RELEASE</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.derby</groupId>
      <artifactId>derbyclient</artifactId>
      <version>10.5.3.0_1</version>
      <scope>compile</scope>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-core</artifactId>
      <version>3.2.1.RELEASE</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.derby</groupId>
      <artifactId>derby</artifactId>
      <version>10.5.3.0_1</version>
      <scope>compile</scope>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>hsqldb</groupId>
      <artifactId>hsqldb</artifactId>
      <version>1.8.0.10</version>
      <scope>compile</scope>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>c3p0</groupId>
      <artifactId>c3p0</artifactId>
      <version>0.9.1.2</version>
      <scope>compile</scope>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-context</artifactId>
      <version>3.2.1.RELEASE</version>
      <scope>compile</scope>
      <optional>true</optional>
    </dependency>
  </dependencies>
</project>