2025-05-30 14:08:16 +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>
|
2025-05-30 16:30:16 +08:00
|
|
|
<groupId>cd.casic.boot</groupId>
|
|
|
|
<artifactId>modules</artifactId>
|
|
|
|
<version>${revision}</version>
|
2025-05-30 14:08:16 +08:00
|
|
|
</parent>
|
2025-05-30 16:30:16 +08:00
|
|
|
|
|
|
|
<artifactId>module-ci-machine</artifactId>
|
|
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<version>${revision}</version>
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
|
2025-05-30 14:08:16 +08:00
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<dependency>
|
2025-05-30 16:30:16 +08:00
|
|
|
<groupId>cd.casic.boot</groupId>
|
|
|
|
<artifactId>commons</artifactId>
|
2025-05-30 14:08:16 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.aliyun.oss</groupId>
|
|
|
|
<artifactId>aliyun-sdk-oss</artifactId>
|
|
|
|
<version>3.15.1</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- 机器连接-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.jcraft</groupId>
|
|
|
|
<artifactId>jsch</artifactId>
|
|
|
|
<version>0.1.55</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>1.18.32</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
|
|
|
<version>3.5.5</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- SpringDoc OpenAPI 依赖 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springdoc</groupId>
|
|
|
|
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
|
|
|
<version>2.3.0</version>
|
|
|
|
</dependency>
|
2025-06-04 14:40:30 +08:00
|
|
|
<!--文件上传-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cd.casic.boot</groupId>
|
|
|
|
<artifactId>module-infra-biz</artifactId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2025-05-30 14:08:16 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|