Maven Repository - POM file for Spring spring-jdbc 4.0.0.RELEASE 4.0.0.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>4.0.0.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-4.0.0.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
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
Databaseh2 1.0.71
H2 Database Engine
27
JDBCderby 10.5.3.0_1
Contains the core Apache Derby database engine, which also includes the embedded JDBC driver.
75
JDBCderbyclient 10.5.3.0_1
The Derby client JDBC driver, used to connect to a Derby server over a network connection.
17
Databasehsqldb 2.3.1
HSQLDB - Lightweight 100% Java SQL Database Engine
38
Springspring-beans 4.0.0.RELEASE
Spring Beans
64
Springspring-context 4.0.0.RELEASE
Spring Context
44
Springspring-core 4.0.0.RELEASE
Spring Core
44
Springspring-tx 4.0.0.RELEASE
Spring Transaction
26




Depended by

The following table lists the most popular artifacts which are depending on spring-jdbc-4.0.0.RELEASE. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
Springspring-orm 4.0.0.RELEASE
Spring Object/Relational Mapping
5

Packages

The following packages are defined in the spring-jdbc-4.0.0.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>4.0.0.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>
  
  <issueManagement>
    <system>Jira</system>
    <url>https://jira.springsource.org/browse/SPR</url>
  </issueManagement>
  <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>c3p0</groupId>
      <artifactId>c3p0</artifactId>
      <version>0.9.1.2</version>
      <scope>compile</scope>
      <optional>true</optional>
    </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.derby</groupId>
      <artifactId>derby</artifactId>
      <version>10.5.3.0_1</version>
      <scope>compile</scope>
      <optional>true</optional>
    </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.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.hsqldb</groupId>
      <artifactId>hsqldb</artifactId>
      <version>2.3.1</version>
      <scope>compile</scope>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-beans</artifactId>
      <version>4.0.0.RELEASE</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-context</artifactId>
      <version>4.0.0.RELEASE</version>
      <scope>compile</scope>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-core</artifactId>
      <version>4.0.0.RELEASE</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-tx</artifactId>
      <version>4.0.0.RELEASE</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
</project>