1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5+ <modelVersion >4.0.0</modelVersion >
6+ <artifactId >spring-data-jpa-crud</artifactId >
7+ <name >spring-data-jpa-crud</name >
8+
9+ <parent >
10+ <groupId >com.baeldung</groupId >
11+ <artifactId >parent-boot-2</artifactId >
12+ <version >0.0.1-SNAPSHOT</version >
13+ <relativePath >../../parent-boot-2</relativePath >
14+ </parent >
15+
16+ <dependencies >
17+ <!-- Prod Dependencies -->
18+ <dependency >
19+ <groupId >org.springframework.boot</groupId >
20+ <artifactId >spring-boot-starter-data-jpa</artifactId >
21+ </dependency >
22+ <dependency >
23+ <groupId >org.springframework.boot</groupId >
24+ <artifactId >spring-boot-starter-web</artifactId >
25+ </dependency >
26+ <dependency >
27+ <groupId >com.google.guava</groupId >
28+ <artifactId >guava</artifactId >
29+ <version >${guava.version} </version >
30+ </dependency >
31+ <dependency >
32+ <groupId >com.h2database</groupId >
33+ <artifactId >h2</artifactId >
34+ </dependency >
35+ <dependency >
36+ <groupId >net.ttddyy</groupId >
37+ <artifactId >datasource-proxy</artifactId >
38+ <version >${datasource-proxy.version} </version >
39+ </dependency >
40+ <dependency >
41+ <groupId >org.postgresql</groupId >
42+ <artifactId >postgresql</artifactId >
43+ </dependency >
44+ <dependency >
45+ <groupId >com.h2database</groupId >
46+ <artifactId >h2</artifactId >
47+ <scope >runtime</scope >
48+ </dependency >
49+ <!-- Test containers only dependencies -->
50+ <dependency >
51+ <groupId >org.testcontainers</groupId >
52+ <artifactId >postgresql</artifactId >
53+ <version >${testcontainers.version} </version >
54+ <scope >test</scope >
55+ </dependency >
56+ <!-- Test containers only dependencies -->
57+ </dependencies >
58+
59+ <properties >
60+ <datasource-proxy .version>1.4.1</datasource-proxy .version>
61+ <testcontainers .version>1.12.2</testcontainers .version>
62+ </properties >
63+
64+ </project >
0 commit comments