107 lines
3.5 KiB
XML
107 lines
3.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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|||
|
|
<modelVersion>4.0.0</modelVersion>
|
|||
|
|
<parent>
|
|||
|
|
<groupId>org.springframework.boot</groupId>
|
|||
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|||
|
|
<version>2.7.4</version>
|
|||
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|||
|
|
</parent>
|
|||
|
|
<groupId>com.haobang</groupId>
|
|||
|
|
<artifactId>security-xdr</artifactId>
|
|||
|
|
<version>1.0.0</version>
|
|||
|
|
<name>security-xdr</name>
|
|||
|
|
<description>security project for Spring Boot</description>
|
|||
|
|
<properties>
|
|||
|
|
<java.version>1.8</java.version>
|
|||
|
|
</properties>
|
|||
|
|
<packaging>pom</packaging>
|
|||
|
|
<modules>
|
|||
|
|
<module>syslog-client</module>
|
|||
|
|
<module>syslog-serve</module>
|
|||
|
|
<module>syslog-consumer</module>
|
|||
|
|
</modules>
|
|||
|
|
|
|||
|
|
<dependencies>
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>org.springframework.boot</groupId>
|
|||
|
|
<artifactId>spring-boot-starter</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>org.graylog2</groupId>
|
|||
|
|
<artifactId>syslog4j</artifactId>
|
|||
|
|
<version>0.9.61</version> <!-- 请根据最新版本进行更新 -->
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>org.springframework.boot</groupId>
|
|||
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|||
|
|
<scope>test</scope>
|
|||
|
|
</dependency>
|
|||
|
|
<!-- https://mvnrepository.com/artifact/com.alibaba.fastjson2/fastjson2 -->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.alibaba.fastjson2</groupId>
|
|||
|
|
<artifactId>fastjson2</artifactId>
|
|||
|
|
<version>2.0.40</version>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>cn.hutool</groupId>
|
|||
|
|
<artifactId>hutool-all</artifactId>
|
|||
|
|
<version>5.8.16</version>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
</dependencies>
|
|||
|
|
|
|||
|
|
<build>
|
|||
|
|
<plugins>
|
|||
|
|
<plugin>
|
|||
|
|
<groupId>org.springframework.boot</groupId>
|
|||
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|||
|
|
</plugin>
|
|||
|
|
</plugins>
|
|||
|
|
</build>
|
|||
|
|
|
|||
|
|
<repositories>
|
|||
|
|
<!--阿里云主仓库,代理了maven central和jcenter仓库-->
|
|||
|
|
<repository>
|
|||
|
|
<id>aliyun</id>
|
|||
|
|
<name>aliyun</name>
|
|||
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|||
|
|
<releases>
|
|||
|
|
<enabled>true</enabled>
|
|||
|
|
</releases>
|
|||
|
|
<snapshots>
|
|||
|
|
<enabled>false</enabled>
|
|||
|
|
</snapshots>
|
|||
|
|
</repository>
|
|||
|
|
<!--阿里云代理Spring 官方仓库-->
|
|||
|
|
<repository>
|
|||
|
|
<id>spring-milestones</id>
|
|||
|
|
<name>Spring Milestones</name>
|
|||
|
|
<url>https://maven.aliyun.com/repository/spring</url>
|
|||
|
|
<releases>
|
|||
|
|
<enabled>true</enabled>
|
|||
|
|
</releases>
|
|||
|
|
<snapshots>
|
|||
|
|
<enabled>false</enabled>
|
|||
|
|
</snapshots>
|
|||
|
|
</repository>
|
|||
|
|
</repositories>
|
|||
|
|
<pluginRepositories>
|
|||
|
|
<!--阿里云代理Spring 插件仓库-->
|
|||
|
|
<pluginRepository>
|
|||
|
|
<id>spring-plugin</id>
|
|||
|
|
<name>spring-plugin</name>
|
|||
|
|
<url>https://maven.aliyun.com/repository/spring-plugin</url>
|
|||
|
|
<releases>
|
|||
|
|
<enabled>true</enabled>
|
|||
|
|
</releases>
|
|||
|
|
<snapshots>
|
|||
|
|
<enabled>false</enabled>
|
|||
|
|
</snapshots>
|
|||
|
|
</pluginRepository>
|
|||
|
|
</pluginRepositories>
|
|||
|
|
</project>
|