|
15 | 15 | <parent> |
16 | 16 | <groupId>org.springframework.boot</groupId> |
17 | 17 | <artifactId>spring-boot-starter-parent</artifactId> |
18 | | - <version>2.1.3.RELEASE</version> |
| 18 | + <version>2.1.4.RELEASE</version> |
19 | 19 | <relativePath /> <!-- lookup parent from repository --> |
20 | 20 | </parent> |
21 | 21 |
|
|
57 | 57 | <groupId>org.springframework.boot</groupId> |
58 | 58 | <artifactId>spring-boot-starter-tomcat</artifactId> |
59 | 59 | </exclusion> |
| 60 | + <exclusion> |
| 61 | + <groupId>org.springframework.boot</groupId> |
| 62 | + <artifactId>spring-boot-starter-json</artifactId> |
| 63 | + </exclusion> |
60 | 64 | </exclusions> |
61 | 65 | </dependency> |
62 | 66 | <dependency> |
|
66 | 70 | <dependency> |
67 | 71 | <groupId>org.mybatis.spring.boot</groupId> |
68 | 72 | <artifactId>mybatis-spring-boot-starter</artifactId> |
69 | | - <version>2.0.0</version> |
| 73 | + <version>2.0.1</version> |
70 | 74 | </dependency> |
71 | 75 | <dependency> |
72 | 76 | <groupId>org.projectlombok</groupId> |
|
107 | 111 | </dependency> |
108 | 112 |
|
109 | 113 | <!-- tk-mybatis --> |
110 | | - <dependency> |
111 | | - <groupId>tk.mybatis</groupId> |
112 | | - <artifactId>mapper</artifactId> |
113 | | - <version>4.1.5</version> |
114 | | - </dependency> |
115 | 114 | <dependency> |
116 | 115 | <groupId>tk.mybatis</groupId> |
117 | 116 | <artifactId>mapper-spring-boot-starter</artifactId> |
118 | 117 | <version>2.1.5</version> |
| 118 | + <exclusions> |
| 119 | + <exclusion> |
| 120 | + <groupId>tk.mybatis</groupId> |
| 121 | + <artifactId>mapper-weekend</artifactId> |
| 122 | + </exclusion> |
| 123 | + </exclusions> |
119 | 124 | </dependency> |
120 | 125 |
|
121 | 126 | <!-- pagehelper --> |
122 | | - <dependency> |
123 | | - <groupId>com.github.pagehelper</groupId> |
124 | | - <artifactId>pagehelper</artifactId> |
125 | | - <version>5.1.8</version> |
126 | | - </dependency> |
127 | 127 | <dependency> |
128 | 128 | <groupId>com.github.pagehelper</groupId> |
129 | 129 | <artifactId>pagehelper-spring-boot-starter</artifactId> |
|
160 | 160 | <groupId>com.google.guava</groupId> |
161 | 161 | <artifactId>guava</artifactId> |
162 | 162 | <version>27.1-jre</version> |
| 163 | + <exclusions> |
| 164 | + <!-- 这几个依赖用于编译器增强,需要者可以引入,用于编写编译器相关插件,增强代码检查等方面功能 --> |
| 165 | + <exclusion> |
| 166 | + <groupId>com.google.guava</groupId> |
| 167 | + <artifactId>listenablefuture</artifactId> |
| 168 | + </exclusion> |
| 169 | + <exclusion> |
| 170 | + <groupId>org.codehaus.mojo</groupId> |
| 171 | + <artifactId>animal-sniffer-annotations</artifactId> |
| 172 | + </exclusion> |
| 173 | + <exclusion> |
| 174 | + <groupId>com.google.j2objc</groupId> |
| 175 | + <artifactId>j2objc-annotations</artifactId> |
| 176 | + </exclusion> |
| 177 | + <exclusion> |
| 178 | + <groupId>com.google.code.findbugs</groupId> |
| 179 | + <artifactId>jsr305</artifactId> |
| 180 | + </exclusion> |
| 181 | + <exclusion> |
| 182 | + <groupId>org.checkerframework</groupId> |
| 183 | + <artifactId>checker-qual</artifactId> |
| 184 | + </exclusion> |
| 185 | + <exclusion> |
| 186 | + <groupId>com.google.errorprone</groupId> |
| 187 | + <artifactId>error_prone_annotations</artifactId> |
| 188 | + </exclusion> |
| 189 | + </exclusions> |
163 | 190 | </dependency> |
164 | 191 |
|
165 | 192 | <!-- log4j2 --> |
|
193 | 220 | <dependency> |
194 | 221 | <groupId>org.apache.poi</groupId> |
195 | 222 | <artifactId>poi</artifactId> |
196 | | - <version>4.0.1</version> |
| 223 | + <version>4.1.0</version> |
197 | 224 | </dependency> |
198 | 225 | <!-- poi-ooxml --> |
199 | 226 | <dependency> |
200 | 227 | <groupId>org.apache.poi</groupId> |
201 | 228 | <artifactId>poi-ooxml</artifactId> |
202 | | - <version>4.0.1</version> |
| 229 | + <version>4.1.0</version> |
| 230 | + <exclusions> |
| 231 | + <exclusion> |
| 232 | + <groupId>org.apache.poi</groupId> |
| 233 | + <artifactId>poi-ooxml-schemas</artifactId> |
| 234 | + </exclusion> |
| 235 | + </exclusions> |
203 | 236 | </dependency> |
204 | 237 | <!-- poi-scratchpad --> |
205 | 238 | <dependency> |
206 | 239 | <groupId>org.apache.poi</groupId> |
207 | 240 | <artifactId>poi-scratchpad</artifactId> |
208 | | - <version>4.0.1</version> |
| 241 | + <version>4.1.0</version> |
209 | 242 | </dependency> |
210 | 243 |
|
211 | 244 | <!-- org.eclipse.jdt.core --> |
|
0 commit comments