2024-12-18 17:09:09 +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 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.18</version>
|
|
|
|
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
|
|
|
|
</parent>
|
|
|
|
|
|
<groupId>com.example</groupId>
|
|
|
|
|
|
<artifactId>stream_server</artifactId>
|
|
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
|
<name>demo</name>
|
|
|
|
|
|
<description>demo</description>
|
|
|
|
|
|
<url/>
|
|
|
|
|
|
<licenses>
|
|
|
|
|
|
<license/>
|
|
|
|
|
|
</licenses>
|
|
|
|
|
|
<developers>
|
|
|
|
|
|
<developer/>
|
|
|
|
|
|
</developers>
|
|
|
|
|
|
<scm>
|
|
|
|
|
|
<connection/>
|
|
|
|
|
|
<developerConnection/>
|
|
|
|
|
|
<tag/>
|
|
|
|
|
|
<url/>
|
|
|
|
|
|
</scm>
|
|
|
|
|
|
<properties>
|
|
|
|
|
|
<java.version>11</java.version>
|
|
|
|
|
|
</properties>
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.minio</groupId>
|
|
|
|
|
|
<artifactId>minio</artifactId>
|
|
|
|
|
|
<version>3.0.10</version>
|
|
|
|
|
|
</dependency>
|
2025-01-08 17:54:20 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba.fastjson2</groupId>
|
|
|
|
|
|
<artifactId>fastjson2</artifactId>
|
|
|
|
|
|
<version>2.0.53</version>
|
|
|
|
|
|
</dependency>
|
2025-04-23 11:56:18 +08:00
|
|
|
|
<!-- SkyWalking 工具包(Logback 支持) -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.skywalking</groupId>
|
|
|
|
|
|
<artifactId>apm-toolkit-logback-1.x</artifactId>
|
|
|
|
|
|
<version>8.6.0</version>
|
|
|
|
|
|
</dependency>
|
2024-12-18 17:09:09 +08:00
|
|
|
|
|
2025-04-23 11:56:18 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.skywalking</groupId>
|
|
|
|
|
|
<artifactId>apm-toolkit-trace</artifactId>
|
|
|
|
|
|
<version>8.6.0</version>
|
|
|
|
|
|
</dependency>
|
2025-02-12 15:05:58 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-12-18 17:09:09 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
|
<plugins>
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
</plugins>
|
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|