2023-09-18 23:30:15 +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>com.aizuda</groupId>
|
2024-04-15 18:26:32 +08:00
|
|
|
|
<artifactId>snail-job-server</artifactId>
|
2023-09-18 23:30:15 +08:00
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
|
</parent>
|
|
|
|
|
|
2024-04-15 18:26:32 +08:00
|
|
|
|
<artifactId>snail-job-server-common</artifactId>
|
|
|
|
|
<name>snail-job-server-common</name>
|
|
|
|
|
<description>snail-job-server-common</description>
|
2023-09-18 23:30:15 +08:00
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
2025-01-21 22:35:47 +08:00
|
|
|
|
<!-- preprocessor -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId> <!-- !!! lombok goes BEFORE mapstruct -->
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mapstruct</groupId>
|
|
|
|
|
<artifactId>mapstruct</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mapstruct</groupId>
|
|
|
|
|
<artifactId>mapstruct-processor</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- springboot -->
|
2023-09-18 23:30:15 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
</dependency>
|
2025-01-21 22:35:47 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- libs -->
|
2023-09-18 23:30:15 +08:00
|
|
|
|
<dependency>
|
2025-03-12 23:13:36 +08:00
|
|
|
|
<groupId>org.apache.pekko</groupId>
|
|
|
|
|
<artifactId>pekko-actor-typed_2.13</artifactId>
|
|
|
|
|
<version>1.2.0-M1</version>
|
2023-09-18 23:30:15 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2025-03-12 23:13:36 +08:00
|
|
|
|
<groupId>org.apache.pekko</groupId>
|
|
|
|
|
<artifactId>pekko-actor-testkit-typed_2.13</artifactId>
|
|
|
|
|
<version>1.2.0-M1</version>
|
2023-09-18 23:30:15 +08:00
|
|
|
|
</dependency>
|
2025-03-12 23:13:36 +08:00
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
<!-- <groupId>com.typesafe.akka</groupId>-->
|
|
|
|
|
<!-- <artifactId>akka-actor-typed_2.13</artifactId>-->
|
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
<!-- <groupId>com.typesafe.akka</groupId>-->
|
|
|
|
|
<!-- <artifactId>pekko-actor-testkit-typed_2.13</artifactId>-->
|
|
|
|
|
<!-- </dependency>-->
|
2023-09-18 23:30:15 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
|
<artifactId>netty-codec-http</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2025-01-21 22:35:47 +08:00
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
|
<artifactId>netty-transport</artifactId>
|
2023-09-18 23:30:15 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.perf4j</groupId>
|
|
|
|
|
<artifactId>perf4j</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
|
|
</dependency>
|
2023-09-29 23:13:45 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.rholder</groupId>
|
|
|
|
|
<artifactId>guava-retrying</artifactId>
|
|
|
|
|
</dependency>
|
2024-01-12 09:36:23 +08:00
|
|
|
|
<dependency>
|
2025-01-21 22:35:47 +08:00
|
|
|
|
<groupId>org.scala-lang</groupId>
|
|
|
|
|
<artifactId>scala-library</artifactId>
|
2024-01-12 09:36:23 +08:00
|
|
|
|
</dependency>
|
2025-01-21 22:35:47 +08:00
|
|
|
|
|
2024-08-23 18:15:55 +08:00
|
|
|
|
<!-- grpc -->
|
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 -->
|
2024-09-11 17:16:45 +08:00
|
|
|
|
<dependency>
|
2025-01-21 22:35:47 +08:00
|
|
|
|
<groupId>com.aizuda</groupId>
|
|
|
|
|
<artifactId>snail-job-common-core</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.aizuda</groupId>
|
|
|
|
|
<artifactId>snail-job-common-log</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.aizuda</groupId>
|
|
|
|
|
<artifactId>snail-job-common-client-api</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.aizuda</groupId>
|
|
|
|
|
<artifactId>snail-job-datasource-template</artifactId>
|
2024-09-11 17:16:45 +08:00
|
|
|
|
</dependency>
|
2023-09-18 23:30:15 +08:00
|
|
|
|
</dependencies>
|
2025-01-21 22:35:47 +08:00
|
|
|
|
|
2023-09-18 23:30:15 +08:00
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<mainClass>none</mainClass> <!-- 取消查找本项目下的Main方法:为了解决Unable to find main class的问题 -->
|
|
|
|
|
<classifier>execute</classifier> <!-- 为了解决依赖模块找不到此模块中的类或属性 -->
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>repackage</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
</project>
|