2025-05-30 19:12:05 +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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>cd.casic.boot</groupId>
|
|
|
|
<artifactId>modules</artifactId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>module-ci-execute</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<version>${revision}</version>
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cd.casic.boot</groupId>
|
|
|
|
<artifactId>commons</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cd.casic.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cd.casic.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.docker-java</groupId>
|
|
|
|
<artifactId>docker-java</artifactId>
|
|
|
|
<version>3.2.13</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.docker-java</groupId>
|
|
|
|
<artifactId>docker-java-transport-httpclient5</artifactId>
|
|
|
|
<version>3.2.13</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents.client5</groupId>
|
|
|
|
<artifactId>httpclient5</artifactId>
|
|
|
|
<version>5.4</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents.core5</groupId>
|
|
|
|
<artifactId>httpcore5</artifactId>
|
|
|
|
<version>5.3.4</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<version>2.17.0</version>
|
|
|
|
</dependency>
|
2025-06-01 17:20:52 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>cd.casic.boot</groupId>
|
|
|
|
<artifactId>module-ci-commons</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>jakarta.ws.rs</groupId>
|
|
|
|
<artifactId>jakarta.ws.rs-api</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
2025-05-30 19:12:05 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|