pom.xml 879 Bytes
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>Spring_Jdbc_Sample</groupId>
  <artifactId>Spring_Jdbc_Sample</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <name>Spring_Jdbc_Sample</name>
  <description>Spring Jdbc Simple</description>
 
  <dependencies>

        <!-- Spring framework -->
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring</artifactId>
        <version>2.5.6</version>
    </dependency>

        <!-- MySQL database driver -->
    <dependency>
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-java</artifactId>
        <version>5.1.9</version>
    </dependency>

  </dependencies>
</project>