全局统一 Hutool 版本,精简各模块 Hutool 依赖

* 空行整理。
* hutool-all的版本锁定。
* Hutool包的整理, 依赖冲突解决。
* Hutool包的整理, 依赖冲突解决。
This commit is contained in:
jasmine
2024-01-19 04:32:01 +00:00
committed by Charles7c
parent 9984812fed
commit fed46dc16e
4 changed files with 64 additions and 2 deletions

View File

@@ -71,7 +71,33 @@
<!-- Hutool小而全的 Java 工具类库,通过静态方法封装,降低相关 API 的学习成本,提高工作效率,使 Java 拥有函数式语言般的优雅,让 Java 语言也可以“甜甜的”) -->
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<artifactId>hutool-core</artifactId>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-extra</artifactId>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-http</artifactId>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-json</artifactId>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-db</artifactId>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-crypto</artifactId>
</dependency>
</dependencies>
</project>