2023-09-26 15:55:16 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2024-01-09 14:15:19 +08:00
|
|
|
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">
|
2023-09-26 15:55:16 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>com.aizuda</groupId>
|
2024-04-15 18:26:32 +08:00
|
|
|
<artifactId>snail-job-client</artifactId>
|
2023-09-26 15:55:16 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
2024-04-15 18:26:32 +08:00
|
|
|
<artifactId>snail-job-client-common</artifactId>
|
|
|
|
<name>snail-job-client-common</name>
|
|
|
|
<description>snail-job-client-common</description>
|
2023-09-26 15:55:16 +08:00
|
|
|
|
|
|
|
<dependencies>
|
2025-01-21 22:35:47 +08:00
|
|
|
<!-- preprocessor -->
|
2023-09-26 15:55:16 +08:00
|
|
|
<dependency>
|
2025-01-21 22:35:47 +08:00
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<optional>true</optional>
|
2023-09-26 15:55:16 +08:00
|
|
|
</dependency>
|
2025-01-21 22:35:47 +08:00
|
|
|
|
|
|
|
<!-- springboot -->
|
2023-09-26 15:55:16 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2024-03-30 15:24:21 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2025-01-21 22:35:47 +08:00
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
2023-09-26 15:55:16 +08:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2025-01-21 22:35:47 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
|
|
<scope>provided</scope>
|
2023-09-29 23:13:45 +08:00
|
|
|
</dependency>
|
2023-11-09 14:23:10 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2025-01-21 22:35:47 +08:00
|
|
|
<artifactId>spring-boot-starter-log4j2</artifactId>
|
2023-11-09 14:23:10 +08:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2025-01-21 22:35:47 +08:00
|
|
|
|
|
|
|
<!-- libs -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-all</artifactId>
|
|
|
|
</dependency>
|
2024-01-09 14:15:19 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.rholder</groupId>
|
|
|
|
<artifactId>guava-retrying</artifactId>
|
2024-07-05 17:12:43 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2024-01-09 14:15:19 +08:00
|
|
|
</dependency>
|
2024-08-22 20:02:42 +08:00
|
|
|
<dependency>
|
2024-08-23 18:15:55 +08:00
|
|
|
<groupId>io.grpc</groupId>
|
|
|
|
<artifactId>grpc-netty-shaded</artifactId>
|
2024-08-22 20:02:42 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.grpc</groupId>
|
2024-08-23 18:15:55 +08:00
|
|
|
<artifactId>grpc-protobuf</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.grpc</groupId>
|
|
|
|
<artifactId>grpc-stub</artifactId>
|
2024-08-22 20:02:42 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2024-08-23 18:15:55 +08:00
|
|
|
<groupId>io.grpc</groupId>
|
|
|
|
<artifactId>grpc-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.grpc</groupId>
|
|
|
|
<artifactId>grpc-util</artifactId>
|
2024-08-22 20:02:42 +08:00
|
|
|
</dependency>
|
2025-01-21 22:35:47 +08:00
|
|
|
|
|
|
|
<!-- SnailJob -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.aizuda</groupId>
|
|
|
|
<artifactId>snail-job-common-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.aizuda</groupId>
|
|
|
|
<artifactId>snail-job-common-server-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.aizuda</groupId>
|
|
|
|
<artifactId>snail-job-common-log</artifactId>
|
|
|
|
</dependency>
|
2023-09-26 15:55:16 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|