2020-08-08 16:21:57 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2021-05-10 10:36:19 -04:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2021-08-02 14:57:15 -04:00
|
|
|
<artifactId>spring-data-jdbc</artifactId>
|
|
|
|
<name>spring-data-jdbc</name>
|
|
|
|
|
2021-05-10 10:36:19 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-boot-2</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<relativePath>../../parent-boot-2</relativePath>
|
|
|
|
</parent>
|
2020-08-08 16:21:57 -04:00
|
|
|
|
2021-05-10 10:36:19 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-jdbc</artifactId>
|
|
|
|
</dependency>
|
2022-02-11 14:49:43 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
|
</dependency>
|
2021-05-10 10:36:19 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2022-02-11 14:49:43 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
</dependency>
|
2021-05-10 10:36:19 -04:00
|
|
|
</dependencies>
|
2020-09-23 14:10:21 -04:00
|
|
|
|
2022-03-13 05:18:44 -04:00
|
|
|
</project>
|