2013-09-13 02:53:57 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2017-06-01 05:27:23 +08:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2019-03-17 00:01:11 +08:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2013-09-13 02:53:57 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starters</artifactId>
|
2017-06-01 05:27:23 +08:00
|
|
|
<version>${revision}</version>
|
2013-09-13 02:53:57 +08:00
|
|
|
</parent>
|
|
|
|
<artifactId>spring-boot-starter-jdbc</artifactId>
|
2014-04-01 16:10:51 +08:00
|
|
|
<name>Spring Boot JDBC Starter</name>
|
2018-03-07 21:17:06 +08:00
|
|
|
<description>Starter for using JDBC with the HikariCP connection pool</description>
|
2013-09-13 02:53:57 +08:00
|
|
|
<properties>
|
2017-06-01 05:27:23 +08:00
|
|
|
<main.basedir>${basedir}/../../..</main.basedir>
|
2013-09-13 02:53:57 +08:00
|
|
|
</properties>
|
|
|
|
<dependencies>
|
2013-11-06 19:44:30 +08:00
|
|
|
<dependency>
|
2014-06-09 13:37:48 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
2013-11-06 19:44:30 +08:00
|
|
|
</dependency>
|
2013-11-21 00:14:05 +08:00
|
|
|
<dependency>
|
2017-06-02 22:35:44 +08:00
|
|
|
<groupId>com.zaxxer</groupId>
|
|
|
|
<artifactId>HikariCP</artifactId>
|
2014-06-09 13:37:48 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
2015-03-19 01:08:07 +08:00
|
|
|
<artifactId>spring-jdbc</artifactId>
|
2013-11-21 00:14:05 +08:00
|
|
|
</dependency>
|
2013-09-13 02:53:57 +08:00
|
|
|
</dependencies>
|
|
|
|
</project>
|