1
+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
3
+ <modelVersion >4.0.0</modelVersion >
4
+
5
+ <parent >
6
+ <groupId >org.springframework.boot</groupId >
7
+ <artifactId >spring-boot-starter-parent</artifactId >
8
+ <version >2.0.6.RELEASE</version >
9
+ <relativePath /> <!-- lookup parent from repository -->
10
+ </parent >
11
+
12
+ <groupId >com.baeldung.ddd</groupId >
13
+ <artifactId >ddd</artifactId >
14
+ <version >0.0.1-SNAPSHOT</version >
15
+ <packaging >jar</packaging >
16
+ <name >ddd</name >
17
+ <description >DDD series examples</description >
18
+
19
+ <properties >
20
+ <joda-money .version>1.0.1</joda-money .version>
21
+ <maven-surefire-plugin .version>2.22.0</maven-surefire-plugin .version>
22
+ </properties >
23
+
24
+ <dependencies >
25
+ <dependency >
26
+ <groupId >org.springframework.boot</groupId >
27
+ <artifactId >spring-boot-starter-data-mongodb</artifactId >
28
+ </dependency >
29
+ <dependency >
30
+ <groupId >org.junit.jupiter</groupId >
31
+ <artifactId >junit-jupiter-api</artifactId >
32
+ <scope >test</scope >
33
+ </dependency >
34
+ <dependency >
35
+ <groupId >org.junit.jupiter</groupId >
36
+ <artifactId >junit-jupiter-engine</artifactId >
37
+ <scope >test</scope >
38
+ </dependency >
39
+ <!-- JUnit platform launcher -->
40
+ <!-- To be able to run tests from IDE directly -->
41
+ <dependency >
42
+ <groupId >org.junit.platform</groupId >
43
+ <artifactId >junit-platform-launcher</artifactId >
44
+ <version >${junit-platform.version} </version >
45
+ <scope >test</scope >
46
+ </dependency >
47
+ <dependency >
48
+ <groupId >org.joda</groupId >
49
+ <artifactId >joda-money</artifactId >
50
+ <version >${joda-money.version} </version >
51
+ </dependency >
52
+ <dependency >
53
+ <groupId >org.springframework.boot</groupId >
54
+ <artifactId >spring-boot-starter-data-jpa</artifactId >
55
+ </dependency >
56
+ <dependency >
57
+ <groupId >com.h2database</groupId >
58
+ <artifactId >h2</artifactId >
59
+ <scope >runtime</scope >
60
+ </dependency >
61
+ <dependency >
62
+ <groupId >mysql</groupId >
63
+ <artifactId >mysql-connector-java</artifactId >
64
+ <scope >runtime</scope >
65
+ </dependency >
66
+ <dependency >
67
+ <groupId >org.postgresql</groupId >
68
+ <artifactId >postgresql</artifactId >
69
+ <scope >runtime</scope >
70
+ </dependency >
71
+ <dependency >
72
+ <groupId >org.springframework.boot</groupId >
73
+ <artifactId >spring-boot-devtools</artifactId >
74
+ <optional >true</optional >
75
+ </dependency >
76
+ <dependency >
77
+ <groupId >org.springframework.boot</groupId >
78
+ <artifactId >spring-boot-starter-web</artifactId >
79
+ </dependency >
80
+ <dependency >
81
+ <groupId >org.springframework.boot</groupId >
82
+ <artifactId >spring-boot-starter-test</artifactId >
83
+ <scope >test</scope >
84
+ </dependency >
85
+ <dependency >
86
+ <groupId >de.flapdoodle.embed</groupId >
87
+ <artifactId >de.flapdoodle.embed.mongo</artifactId >
88
+ <scope >test</scope >
89
+ </dependency >
90
+ </dependencies >
91
+ </project >
0 commit comments