1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
4+ <modelVersion >4.0.0</modelVersion >
5+
6+ <groupId >com.cloudbeers.wordsmith</groupId >
7+ <artifactId >wordsmith-api</artifactId >
8+ <version >1.0.0-SNAPSHOT</version >
9+
10+ <parent >
11+ <groupId >org.springframework.boot</groupId >
12+ <artifactId >spring-boot-starter-parent</artifactId >
13+ <version >2.0.4.RELEASE</version >
14+ </parent >
15+
16+ <dependencies >
17+ <dependency >
18+ <groupId >org.springframework.boot</groupId >
19+ <artifactId >spring-boot-starter-web</artifactId >
20+ </dependency >
21+
22+ <dependency >
23+ <groupId >org.springframework.boot</groupId >
24+ <artifactId >spring-boot-starter-actuator</artifactId >
25+ </dependency >
26+
27+ <dependency >
28+ <groupId >org.springframework.boot</groupId >
29+ <artifactId >spring-boot-starter-jdbc</artifactId >
30+ </dependency >
31+
32+ <dependency >
33+ <groupId >org.postgresql</groupId >
34+ <artifactId >postgresql</artifactId >
35+ <version >${postgres.version}</version >
36+ </dependency >
37+
38+ <dependency >
39+ <groupId >org.springframework.boot</groupId >
40+ <artifactId >spring-boot-starter-test</artifactId >
41+ <scope >test</scope >
42+ </dependency >
43+
44+ <dependency >
45+ <groupId >org.mockito</groupId >
46+ <artifactId >mockito-core</artifactId >
47+ <version >2.21.0</version >
48+ <scope >test</scope >
49+ </dependency >
50+
51+ <dependency >
52+ <groupId >com.h2database</groupId >
53+ <artifactId >h2</artifactId >
54+ <version >1.4.194</version >
55+ <scope >test</scope >
56+ </dependency >
57+ </dependencies >
58+
59+ <properties >
60+ <java .version>1.8</java .version>
61+ <postgres .version>42.1.4</postgres .version>
62+ <project .scm.id>github</project .scm.id>
63+ </properties >
64+
65+
66+ <build >
67+ <plugins >
68+ <plugin >
69+ <groupId >org.springframework.boot</groupId >
70+ <artifactId >spring-boot-maven-plugin</artifactId >
71+ </plugin >
72+ <plugin >
73+ <groupId >org.apache.maven.plugins</groupId >
74+ <artifactId >maven-release-plugin</artifactId >
75+ <version >2.5.3</version >
76+ </plugin >
77+
78+ <plugin >
79+ <groupId >org.apache.maven.plugins</groupId >
80+ <artifactId >maven-deploy-plugin</artifactId >
81+ <version >2.8.2</version ></plugin >
82+ </plugins >
83+ </build >
84+
85+ <dependencyManagement >
86+ <dependencies >
87+ <dependency >
88+ <groupId >org.flywaydb</groupId >
89+ <artifactId >flyway-core</artifactId >
90+ <version >4.2.0</version >
91+ </dependency >
92+ </dependencies >
93+ </dependencyManagement >
94+ <repositories >
95+ <repository >
96+ <id >nexus.beescloud.com</id >
97+ <url >https://nexus3.beescloud.com/repository/maven-snapshots/</url >
98+ <releases >
99+ <enabled >false</enabled >
100+ </releases >
101+ <snapshots >
102+ <enabled >true</enabled >
103+ </snapshots >
104+ </repository >
105+ </repositories >
106+ <distributionManagement >
107+ <snapshotRepository >
108+ <id >nexus.beescloud.com</id >
109+ <url >https://nexus3.beescloud.com/repository/maven-snapshots/</url >
110+ </snapshotRepository >
111+ <repository >
112+ <id >nexus.beescloud.com</id >
113+ <url >https://nexus3.beescloud.com/repository/maven-releases/</url >
114+ </repository >
115+ </distributionManagement >
116+ </project >
0 commit comments