| | |
| | | <mybatis-plus-boot-starter.version>3.5.3.1</mybatis-plus-boot-starter.version> |
| | | <mybatis-plus-annotation.version>3.5.5</mybatis-plus-annotation.version> |
| | | <fastjson.version>2.0.23</fastjson.version> |
| | | <lombok.version>1.18.24</lombok.version> |
| | | <hutool.version>5.8.9</hutool.version> |
| | | </properties> |
| | | |
| | | <dependencyManagement> |
| | |
| | | <type>jar.sha256</type> |
| | | </dependency> |
| | | |
| | | <!-- 阿里JSON解析器 --> |
| | | <!-- 阿里JSON解析器,2024-01-15 --> |
| | | <dependency> |
| | | <groupId>com.alibaba.fastjson2</groupId> |
| | | <artifactId>fastjson2</artifactId> |
| | | <version>${fastjson.version}</version> |
| | | </dependency> |
| | | |
| | | <!-- lombok,2024-01-17 --> |
| | | <dependency> |
| | | <groupId>org.projectlombok</groupId> |
| | | <artifactId>lombok</artifactId> |
| | | <version>${lombok.version}</version> |
| | | </dependency> |
| | | |
| | | <!-- hutool,暂时只引入核心包,2024-01-17 --> |
| | | <dependency> |
| | | <groupId>cn.hutool</groupId> |
| | | <artifactId>hutool-core</artifactId> |
| | | <version>${hutool.version}</version> |
| | | <!-- <type>pom</type>--> |
| | | </dependency> |
| | | |
| | | </dependencies> |
| | | </dependencyManagement> |
| | | |