Skip to content

Commit 11f5359

Browse files
committed
增加依赖
1 parent 535072c commit 11f5359

File tree

1 file changed

+63
-1
lines changed

1 file changed

+63
-1
lines changed

pom.xml

Lines changed: 63 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,74 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
4+
MIT License
5+
6+
Copyright (c) 2017 James
7+
8+
Permission is hereby granted, free of charge, to any person obtaining a copy
9+
of this software and associated documentation files (the "Software"), to deal
10+
in the Software without restriction, including without limitation the rights
11+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12+
copies of the Software, and to permit persons to whom the Software is
13+
furnished to do so, subject to the following conditions:
14+
15+
The above copyright notice and this permission notice shall be included in all
16+
copies or substantial portions of the Software.
17+
18+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24+
SOFTWARE.
25+
26+
-->
227
<project xmlns="http://maven.apache.org/POM/4.0.0"
328
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
429
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
530
<modelVersion>4.0.0</modelVersion>
6-
731
<groupId>me.zbl</groupId>
832
<artifactId>java_design_patterns</artifactId>
33+
<packaging>pom</packaging>
934
<version>1.11.9-SNAPSHOT</version>
35+
<inceptionYear>2017</inceptionYear>
36+
<properties>
37+
<slf4j.version>1.7.25</slf4j.version>
38+
<junit.version>4.12</junit.version>
39+
<logback.version>1.1.7</logback.version>
40+
</properties>
41+
42+
<modules>
43+
<module>builder</module>
44+
</modules>
1045

46+
<dependencies>
47+
<dependency>
48+
<groupId>org.slf4j</groupId>
49+
<artifactId>slf4j-api</artifactId>
50+
<version>${slf4j.version}</version>
51+
</dependency>
52+
<dependency>
53+
<groupId>ch.qos.logback</groupId>
54+
<artifactId>logback-classic</artifactId>
55+
<version>${logback.version}</version>
56+
</dependency>
57+
<dependency>
58+
<groupId>ch.qos.logback</groupId>
59+
<artifactId>logback-core</artifactId>
60+
<version>${logback.version}</version>
61+
</dependency>
62+
</dependencies>
1163

64+
<dependencyManagement>
65+
<dependencies>
66+
<dependency>
67+
<groupId>junit</groupId>
68+
<artifactId>junit</artifactId>
69+
<version>${junit.version}</version>
70+
<scope>test</scope>
71+
</dependency>
72+
</dependencies>
73+
</dependencyManagement>
1274
</project>

0 commit comments

Comments
 (0)