2019-03-21 10:24:37 +05:30
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2019-04-20 22:53:09 +03:00
|
|
|
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">
|
2019-03-21 10:24:37 +05:30
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2019-04-14 20:56:40 +05:30
|
|
|
|
2019-04-20 22:53:09 +03:00
|
|
|
<groupId>com.baeldung</groupId>
|
2019-03-21 10:24:37 +05:30
|
|
|
<artifactId>spring-data-jpa-2</artifactId>
|
2019-08-25 19:09:24 +05:30
|
|
|
<name>spring-data-jpa-2</name>
|
2019-04-20 22:53:09 +03:00
|
|
|
|
2019-03-21 10:24:37 +05:30
|
|
|
<parent>
|
|
|
|
<artifactId>parent-boot-2</artifactId>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<relativePath>../../parent-boot-2</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
|
</dependency>
|
2019-04-20 22:53:09 +03:00
|
|
|
|
2019-03-21 10:24:37 +05:30
|
|
|
<dependency>
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
</dependency>
|
2019-04-20 22:53:09 +03:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.ttddyy</groupId>
|
|
|
|
<artifactId>datasource-proxy</artifactId>
|
2019-07-07 01:08:17 +05:30
|
|
|
<version>${datasource-proxy.version}</version>
|
2019-04-20 22:53:09 +03:00
|
|
|
</dependency>
|
2019-03-21 10:24:37 +05:30
|
|
|
|
2019-04-14 20:56:40 +05:30
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-oxm</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2019-07-07 01:08:17 +05:30
|
|
|
|
|
|
|
<properties>
|
|
|
|
<datasource-proxy.version>1.4.1</datasource-proxy.version>
|
|
|
|
</properties>
|
2019-03-21 10:24:37 +05:30
|
|
|
</project>
|