更新配置和文档

This commit is contained in:
xuwujing 2018-10-19 09:26:10 +08:00
parent 2fc8f86084
commit bf96f8ca72
2 changed files with 16 additions and 7 deletions

View File

@ -50,7 +50,8 @@
- [适配器模式和桥接模式](https://www.cnblogs.com/xuwujing/p/9520851.html)
- [外观模式和装饰器模式](https://www.cnblogs.com/xuwujing/p/9545272.html)
- [组合模式和过滤器模式](https://www.cnblogs.com/xuwujing/p/9630850.html)
- [享元模式和代理模式](https://www.cnblogs.com/xuwujing/p/9704228.html)
- [责任链模式和命令模式](https://www.cnblogs.com/xuwujing/p/9794886.html)

20
pom.xml
View File

@ -3,12 +3,12 @@
<modelVersion>4.0.0</modelVersion>
<groupId>1.0.0</groupId>
<artifactId>java_study</artifactId>
<artifactId>java_study</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>java_study</name>
<url>http://maven.apache.org</url>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@ -27,8 +27,16 @@
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>jdk.tools</groupId>
<artifactId>jdk.tools</artifactId>
<version>1.8</version>
<scope>system</scope>
<systemPath>${JAVA_HOME}/lib/tools.jar</systemPath>
</dependency>
<!--日志 -->
@ -374,13 +382,13 @@
<dependency>
<groupId>org.apache.storm</groupId>
<artifactId>storm-core</artifactId>
<version>1.1.1</version>
<version>1.2.2</version>
</dependency>
<dependency>
<groupId>org.apache.storm</groupId>
<artifactId>storm-kafka</artifactId>
<version>1.1.1</version>
<version>1.2.2</version>
</dependency>