8
8
<version >1.0-SNAPSHOT</version >
9
9
<url >https://github.com/luoziyihao/coding2017</url >
10
10
11
+ <pluginRepositories >
12
+ <pluginRepository >
13
+ <id >alimaven</id >
14
+ <name >aliyun maven</name >
15
+ <url >http://maven.aliyun.com/nexus/content/groups/public/</url >
16
+ <releases >
17
+ <enabled >true</enabled >
18
+ </releases >
19
+ <snapshots >
20
+ <enabled >true</enabled >
21
+ </snapshots >
22
+ </pluginRepository >
23
+ </pluginRepositories >
24
+ <repositories >
25
+ <repository >
26
+ <id >alimaven</id >
27
+ <name >aliyun maven</name >
28
+ <url >http://maven.aliyun.com/nexus/content/groups/public/</url >
29
+ <releases >
30
+ <enabled >true</enabled >
31
+ </releases >
32
+ <snapshots >
33
+ <enabled >true</enabled >
34
+ </snapshots >
35
+ </repository >
36
+ <repository >
37
+ <id >spring-snapshots</id >
38
+ <name >Spring Snapshots</name >
39
+ <url >https://repo.spring.io/libs-snapshot</url >
40
+ <snapshots >
41
+ <enabled >true</enabled >
42
+ </snapshots >
43
+ </repository >
44
+ </repositories >
45
+
46
+
11
47
<properties >
12
- <maven .compiler.encoding>UTF-8</maven .compiler.encoding>
13
48
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
14
49
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
15
- <jdk .version>1.8</jdk .version>
50
+ <java .version>1.8</java .version>
51
+ <maven .compiler.encoding>UTF-8</maven .compiler.encoding>
16
52
<maven .compiler.source>1.8</maven .compiler.source>
17
53
<maven .compiler.target>1.8</maven .compiler.target>
18
54
<maven-compiler-plugin .version>3.0</maven-compiler-plugin .version>
55
+ <logback .version>1.1.7</logback .version>
19
56
<logback-classic .version>1.1.7</logback-classic .version>
20
57
<commons-logging .version>1.2</commons-logging .version>
21
58
<log4j .version>1.2.17</log4j .version>
22
59
<junit .version>4.12</junit .version>
60
+ <commons-lang3 .version>3.4</commons-lang3 .version>
61
+ <commons-collections4 .version>4.1</commons-collections4 .version>
62
+ <commons-io .version>2.5</commons-io .version>
63
+ <commons-beanutils .version>1.9.2</commons-beanutils .version>
64
+ <guava .version>19.0</guava .version>
65
+ <rxjava .version>1.1.6</rxjava .version>
66
+ <lombok .version>1.16.10</lombok .version>
67
+ <fastjson .version>1.2.22</fastjson .version>
68
+ <strman .version>0.2.0</strman .version>
69
+ <joda-time .version>2.9.4</joda-time .version>
70
+
23
71
</properties >
24
72
25
73
<dependencies >
41
89
<version >${log4j.version} </version >
42
90
</dependency >
43
91
<!-- 配置所有依赖库的日志依赖 end-->
92
+ <!-- utils 相关jar包 start -->
93
+ <dependency >
94
+ <groupId >org.apache.commons</groupId >
95
+ <artifactId >commons-lang3</artifactId >
96
+ <version >${commons-lang3.version} </version >
97
+ </dependency >
98
+ <dependency >
99
+ <groupId >org.apache.commons</groupId >
100
+ <artifactId >commons-collections4</artifactId >
101
+ <version >${commons-collections4.version} </version >
102
+ </dependency >
103
+ <dependency >
104
+ <groupId >commons-io</groupId >
105
+ <artifactId >commons-io</artifactId >
106
+ <version >${commons-io.version} </version >
107
+ </dependency >
108
+ <dependency >
109
+ <groupId >commons-beanutils</groupId >
110
+ <artifactId >commons-beanutils</artifactId >
111
+ <version >${commons-beanutils.version} </version >
112
+ </dependency >
113
+ <dependency >
114
+ <groupId >com.google.guava</groupId >
115
+ <artifactId >guava</artifactId >
116
+ <version >${guava.version} </version >
117
+ </dependency >
118
+ <dependency >
119
+ <groupId >org.projectlombok</groupId >
120
+ <artifactId >lombok</artifactId >
121
+ <version >${lombok.version} </version >
122
+ </dependency >
123
+ <dependency >
124
+ <groupId >joda-time</groupId >
125
+ <artifactId >joda-time</artifactId >
126
+ <version >${joda-time.version} </version >
127
+ </dependency >
128
+ <dependency >
129
+ <groupId >io.reactivex</groupId >
130
+ <artifactId >rxjava</artifactId >
131
+ <version >${rxjava.version} </version >
132
+ </dependency >
133
+ <dependency >
134
+ <groupId >com.alibaba</groupId >
135
+ <artifactId >fastjson</artifactId >
136
+ <version >${fastjson.version} </version >
137
+ </dependency >
138
+ <dependency >
139
+ <groupId >com.shekhargulati</groupId >
140
+ <artifactId >strman</artifactId >
141
+ <version >${strman.version} </version >
142
+ </dependency >
143
+ <!-- utils 相关jar包 end -->
144
+
44
145
<!-- 测试 -->
45
146
<dependency >
46
147
<groupId >junit</groupId >
49
150
</dependency >
50
151
</dependencies >
51
152
52
- <pluginRepositories >
53
- <pluginRepository >
54
- <id >alimaven</id >
55
- <name >aliyun maven</name >
56
- <url >http://maven.aliyun.com/nexus/content/groups/public/</url >
57
- <releases >
58
- <enabled >true</enabled >
59
- </releases >
60
- <snapshots >
61
- <enabled >true</enabled >
62
- </snapshots >
63
- </pluginRepository >
64
- </pluginRepositories >
65
- <repositories >
66
- <repository >
67
- <id >alimaven</id >
68
- <name >aliyun maven</name >
69
- <url >http://maven.aliyun.com/nexus/content/groups/public/</url >
70
- <releases >
71
- <enabled >true</enabled >
72
- </releases >
73
- <snapshots >
74
- <enabled >true</enabled >
75
- </snapshots >
76
- </repository >
77
- </repositories >
78
-
79
153
<build >
80
154
<finalName >${project.artifactId} </finalName >
81
155
<plugins >
92
166
</plugins >
93
167
</build >
94
168
95
- <reporting >
96
- <plugins >
97
- <plugin >
98
- <groupId >org.apache.maven.plugins</groupId >
99
- <artifactId >maven-surefire-report-plugin</artifactId >
100
- <version >2.19.1</version >
101
- </plugin >
102
- </plugins >
103
- </reporting >
169
+ <!-- < reporting> -- >
170
+ <!-- < plugins> -- >
171
+ <!-- < plugin> -- >
172
+ <!-- < groupId>org.apache.maven.plugins</groupId> -- >
173
+ <!-- < artifactId>maven-surefire-report-plugin</artifactId> -- >
174
+ <!-- < version>2.19.1</version> -- >
175
+ <!-- < /plugin> -- >
176
+ <!-- < /plugins> -- >
177
+ <!-- < /reporting> -- >
104
178
</project >
0 commit comments