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-web</artifactId>
|
|
|
|
|
|
<name>聚合web端公共信息</name>
|
|
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.njcn</groupId>
|
|
|
|
|
|
<artifactId>common-core</artifactId>
|
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.njcn</groupId>
|
2023-04-07 09:12:59 +08:00
|
|
|
|
<artifactId>common-microservice</artifactId>
|
2022-06-21 20:47:46 +08:00
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.njcn</groupId>
|
|
|
|
|
|
<artifactId>common-redis</artifactId>
|
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--spring webmvc starter-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-web</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>
|
|
|
|
|
|
<!--防止XSS攻击的antiSamy-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.owasp.antisamy</groupId>
|
|
|
|
|
|
<artifactId>antisamy</artifactId>
|
2023-04-11 10:27:43 +08:00
|
|
|
|
<exclusions>
|
|
|
|
|
|
<exclusion>
|
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
|
|
</exclusion>
|
2023-06-26 10:57:42 +08:00
|
|
|
|
<exclusion>
|
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
|
|
</exclusion>
|
2023-04-11 10:27:43 +08:00
|
|
|
|
</exclusions>
|
2022-06-21 20:47:46 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/net.sf.json-lib/json-lib -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>net.sf.json-lib</groupId>
|
|
|
|
|
|
<artifactId>json-lib</artifactId>
|
|
|
|
|
|
<version>2.4</version>
|
|
|
|
|
|
<classifier>jdk15</classifier> <!-- 需要指定JDK版本哦:2.4有13,15两个JDK版本 -->
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.nimbusds</groupId>
|
|
|
|
|
|
<artifactId>nimbus-jose-jwt</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|