<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
<artifactId>pipIrr-web</artifactId>
|
<groupId>com.dy</groupId>
|
<version>1.0.0</version>
|
<relativePath>../pom.xml</relativePath>
|
</parent>
|
|
<packaging>jar</packaging>
|
<artifactId>pipIrr-web-sso</artifactId>
|
<name>pipIrr-web-sso</name>
|
<description>web单点登录系统</description>
|
|
<dependencies>
|
<!-- 缓存 -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-cache</artifactId>
|
<exclusions>
|
<!-- cache中引用了log4j2,而本系统parent的pom中引入了log4j2,从而重复引入了,所以过滤系cache引入的log4j2 -->
|
<exclusion>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-logging</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
|
<!-- 缓存 -->
|
<dependency>
|
<groupId>com.github.ben-manes.caffeine</groupId>
|
<artifactId>caffeine</artifactId>
|
<!-- 自动判断使用与spring boot兼容的版本 -->
|
</dependency>
|
</dependencies>
|
</project>
|