2022-06-21 20:47:46 +08:00
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
|
<parent>
|
|
|
|
|
|
<artifactId>pqs-common</artifactId>
|
|
|
|
|
|
<groupId>com.njcn</groupId>
|
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
|
</parent>
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
<artifactId>common-core</artifactId>
|
|
|
|
|
|
<name>聚合所有服务模块公共信息</name>
|
|
|
|
|
|
<properties>
|
|
|
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
<!--java简化开发工具-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--java工具包-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-json</artifactId>
|
2023-06-26 10:57:42 +08:00
|
|
|
|
<exclusions>
|
|
|
|
|
|
<exclusion>
|
|
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
|
|
<artifactId>log4j-to-slf4j</artifactId>
|
|
|
|
|
|
</exclusion>
|
|
|
|
|
|
</exclusions>
|
2022-06-21 20:47:46 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- Actuator监控当前应用的健康,虚拟机等信息,通过前端以可视化的界面展示出来 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--避免idea后端配置类报红-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--测试依赖-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--国密加解密工具包-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
|
|
<artifactId>bcprov-jdk15on</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- commons通用包 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--API接口文档-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
|
|
|
|
<artifactId>knife4j-spring-boot-starter</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
|
|
|
|
<artifactId>knife4j-spring-ui</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--jackson依赖-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--此处需要注意的事,databind自身依赖的jackson-core/jackson-annotations由于版本偏低,会出现异常-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
|
|
|
|
|
</dependency>
|
2022-09-29 19:43:14 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
|
|
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
|
|
|
|
</dependency>
|
2022-07-13 15:44:05 +08:00
|
|
|
|
<!--mqtt相关依赖-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.github.tocrhz</groupId>
|
|
|
|
|
|
<artifactId>mqtt-spring-boot-starter</artifactId>
|
|
|
|
|
|
</dependency>
|
2022-06-21 20:47:46 +08:00
|
|
|
|
|
2023-04-11 16:41:15 +08:00
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
|
|
|
|
|
<!-- <artifactId>spring-boot-starter-log4j2</artifactId>-->
|
|
|
|
|
|
<!-- </dependency>-->
|
2023-04-10 16:51:11 +08:00
|
|
|
|
|
2022-06-21 20:47:46 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
</project>
|