47 lines
1.5 KiB
XML
47 lines
1.5 KiB
XML
|
|
<?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>sonic-pigeon</artifactId>
|
||
|
|
<groupId>com.sonic.pigeon</groupId>
|
||
|
|
<version>1.0</version>
|
||
|
|
</parent>
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
|
||
|
|
<groupId>com.sonic.pigeon</groupId>
|
||
|
|
<artifactId>sonic-pigeon-lib</artifactId>
|
||
|
|
<packaging>jar</packaging>
|
||
|
|
<version>1.1-SNAPSHOT</version>
|
||
|
|
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.sonic</groupId>
|
||
|
|
<artifactId>common-lib</artifactId>
|
||
|
|
<exclusions>
|
||
|
|
<!--2.17.0之前的版本有远程代码执行漏洞,所以需要排除掉-->
|
||
|
|
<exclusion>
|
||
|
|
<artifactId>log4j-api</artifactId>
|
||
|
|
<groupId>org.apache.logging.log4j</groupId>
|
||
|
|
</exclusion>
|
||
|
|
<exclusion>
|
||
|
|
<groupId>com.alibaba</groupId>
|
||
|
|
<artifactId>fastjson</artifactId>
|
||
|
|
</exclusion>
|
||
|
|
</exclusions>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.sonic</groupId>
|
||
|
|
<artifactId>common-lib</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.github.ben-manes.caffeine</groupId>
|
||
|
|
<artifactId>caffeine</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
</project>
|