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+ <parent >
6+ <artifactId >example</artifactId >
7+ <groupId >com.fumj</groupId >
8+ <version >0.0.1-SNAPSHOT</version >
9+ </parent >
10+ <modelVersion >4.0.0</modelVersion >
11+
12+ <artifactId >designpatten</artifactId >
13+
14+ <dependencies >
15+ <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
16+ <dependency >
17+ <groupId >org.junit.jupiter</groupId >
18+ <artifactId >junit-jupiter-api</artifactId >
19+ <version >5.3.1</version >
20+ <scope >test</scope >
21+ </dependency >
22+
23+
24+ <!-- https://mvnrepository.com/artifact/org.springframework/spring-context -->
25+ <dependency >
26+ <groupId >org.springframework</groupId >
27+ <artifactId >spring-context</artifactId >
28+ <version >5.2.1.RELEASE</version >
29+ </dependency >
30+
31+ <!-- https://mvnrepository.com/artifact/org.springframework/spring-core -->
32+ <dependency >
33+ <groupId >org.springframework</groupId >
34+ <artifactId >spring-core</artifactId >
35+ <version >5.2.1.RELEASE</version >
36+ </dependency >
37+ <!-- https://mvnrepository.com/artifact/org.springframework/spring-beans -->
38+ <dependency >
39+ <groupId >org.springframework</groupId >
40+ <artifactId >spring-beans</artifactId >
41+ <version >5.2.1.RELEASE</version >
42+ </dependency >
43+
44+ <dependency >
45+ <groupId >org.projectlombok</groupId >
46+ <artifactId >lombok</artifactId >
47+ </dependency >
48+ <dependency >
49+ <groupId >cn.hutool</groupId >
50+ <artifactId >hutool-all</artifactId >
51+ </dependency >
52+ <dependency >
53+ <groupId >log4j</groupId >
54+ <artifactId >log4j</artifactId >
55+ </dependency >
56+ <dependency >
57+ <groupId >org.slf4j</groupId >
58+ <artifactId >slf4j-log4j12</artifactId >
59+ </dependency >
60+
61+ <dependency >
62+ <groupId >org.slf4j</groupId >
63+ <artifactId >slf4j-api</artifactId >
64+ </dependency ><dependency >
65+ <groupId >junit</groupId >
66+ <artifactId >junit</artifactId >
67+ </dependency >
68+ </dependencies >
69+ </project >
0 commit comments