forked from kaimz/learning-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
61 lines (57 loc) · 2.21 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" 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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.wuwii</groupId>
<artifactId>learning-code</artifactId>
<packaging>pom</packaging>
<version>0.0.1-SNAPSHOT</version>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.1.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<name>learning-code</name>
<description>Demo project for Spring Boot</description>
<dependencyManagement>
<dependencies>
<dependency>
<artifactId>vertx-jdbc-client</artifactId>
<groupId>io.vertx</groupId>
<version>${vertx.version}</version>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>${h2.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>design-pattern</module>
<module>fork-join</module>
<module>java8-function-demo</module>
<module>jdbc-muti-datasource</module>
<module>jpa-criteria</module>
<module>jpa-muti-datasource</module>
<module>learn-hystrix</module>
<module>sort-algorithm</module>
<module>springboot-actuator</module>
<module>springboot-docker</module>
<module>springboot-querydsl</module>
<module>springboot-redis-cache</module>
<module>springboot-security</module>
<module>template-design-spring</module>
<module>spring-boot-test</module>
<module>interview-code</module>
<module>nio-netty</module>
<module>algorithm</module>
<module>vertx</module>
<module>spring-event</module>
</modules>
<properties>
<vertx.version>3.5.3</vertx.version>
<h2.version>1.4.199</h2.version>
</properties>
</project>