2023-01-14 21:02:18 +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>
|
2024-10-30 16:01:31 +08:00
|
|
|
<version>3.3.5</version>
|
2023-01-14 21:02:18 +08:00
|
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
|
|
</parent>
|
|
|
|
|
2023-04-18 23:03:33 +08:00
|
|
|
<groupId>com.aizuda</groupId>
|
2024-04-15 18:26:32 +08:00
|
|
|
<artifactId>snail-job</artifactId>
|
2023-01-14 21:02:18 +08:00
|
|
|
<version>${revision}</version>
|
2024-04-15 18:26:32 +08:00
|
|
|
<name>snail-job</name>
|
2023-01-14 21:02:18 +08:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
2024-04-15 18:26:32 +08:00
|
|
|
<description>snail-job</description>
|
2023-01-14 21:02:18 +08:00
|
|
|
|
|
|
|
<properties>
|
2023-09-01 22:33:26 +08:00
|
|
|
<java.version>17</java.version>
|
2023-09-02 11:05:27 +08:00
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
2024-11-16 10:35:58 +08:00
|
|
|
<revision>1.2.0</revision>
|
2024-10-30 16:01:31 +08:00
|
|
|
<netty-all.version>4.1.114.Final</netty-all.version>
|
2024-10-30 17:24:50 +08:00
|
|
|
<hutool-all.version>5.8.32</hutool-all.version>
|
|
|
|
<mybatis-plus.version>3.5.9</mybatis-plus.version>
|
2023-07-28 17:39:45 +08:00
|
|
|
<guava-retrying.version>2.0.0</guava-retrying.version>
|
2024-10-30 17:24:50 +08:00
|
|
|
<jboss-logging.version>3.6.1.Final</jboss-logging.version>
|
2024-01-12 17:56:33 +08:00
|
|
|
<tinylog.version>1.3.6</tinylog.version>
|
|
|
|
<tinylog2.version>2.6.2</tinylog2.version>
|
|
|
|
<logtube.version>0.45.0</logtube.version>
|
2024-01-16 15:34:41 +08:00
|
|
|
<log4j.version>1.2.17</log4j.version>
|
2024-10-30 17:24:50 +08:00
|
|
|
<commons-logging.version>1.3.4</commons-logging.version>
|
2024-05-07 11:26:42 +08:00
|
|
|
<jakarta-validation.version>3.0.2</jakarta-validation.version>
|
2024-07-05 17:12:43 +08:00
|
|
|
<guava.version>32.0.0-jre</guava.version>
|
2023-01-14 21:02:18 +08:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<modules>
|
2024-04-15 18:26:32 +08:00
|
|
|
<module>snail-job-common</module>
|
|
|
|
<module>snail-job-server</module>
|
|
|
|
<module>snail-job-client-starter</module>
|
|
|
|
<module>snail-job-datasource</module>
|
|
|
|
<module>snail-job-client</module>
|
2023-01-14 21:02:18 +08:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-all</artifactId>
|
|
|
|
<version>${netty-all.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-04-18 23:03:33 +08:00
|
|
|
<groupId>com.aizuda</groupId>
|
2024-04-15 18:26:32 +08:00
|
|
|
<artifactId>snail-job-common-core</artifactId>
|
2023-01-14 21:02:18 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-04-18 23:03:33 +08:00
|
|
|
<groupId>com.aizuda</groupId>
|
2024-04-15 18:26:32 +08:00
|
|
|
<artifactId>snail-job-common-server-api</artifactId>
|
2023-01-14 21:02:18 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-04-18 23:03:33 +08:00
|
|
|
<groupId>com.aizuda</groupId>
|
2024-04-15 18:26:32 +08:00
|
|
|
<artifactId>snail-job-common-client-api</artifactId>
|
2023-01-14 21:02:18 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
2024-01-10 22:55:01 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.aizuda</groupId>
|
2024-04-15 18:26:32 +08:00
|
|
|
<artifactId>snail-job-common-log</artifactId>
|
2024-01-10 22:55:01 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
2023-08-04 22:22:47 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.aizuda</groupId>
|
2024-04-15 18:26:32 +08:00
|
|
|
<artifactId>snail-job-datasource-template</artifactId>
|
2023-08-04 22:22:47 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.aizuda</groupId>
|
2024-04-15 18:26:32 +08:00
|
|
|
<artifactId>snail-job-mariadb-datasource</artifactId>
|
2023-08-04 22:22:47 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.aizuda</groupId>
|
2024-04-15 18:26:32 +08:00
|
|
|
<artifactId>snail-job-mysql-datasource</artifactId>
|
2023-08-04 22:22:47 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.aizuda</groupId>
|
2024-04-15 18:26:32 +08:00
|
|
|
<artifactId>snail-job-postgres-datasource</artifactId>
|
2023-08-04 22:22:47 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
2024-03-20 13:33:59 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.aizuda</groupId>
|
2024-04-15 18:26:32 +08:00
|
|
|
<artifactId>snail-job-oracle-datasource</artifactId>
|
2024-03-20 13:33:59 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
2024-03-25 08:50:57 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.aizuda</groupId>
|
2024-04-15 18:26:32 +08:00
|
|
|
<artifactId>snail-job-sqlserver-datasource</artifactId>
|
2024-03-25 08:50:57 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
2024-06-01 22:53:14 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.aizuda</groupId>
|
|
|
|
<artifactId>snail-job-dm8-datasource</artifactId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
2024-07-17 13:51:56 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.aizuda</groupId>
|
|
|
|
<artifactId>snail-job-kingbase-datasource</artifactId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
2023-01-14 21:02:18 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.hutool</groupId>
|
2023-08-17 18:29:32 +08:00
|
|
|
<artifactId>hutool-http</artifactId>
|
|
|
|
<version>${hutool-all.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
<artifactId>hutool-crypto</artifactId>
|
2023-05-07 11:44:57 +08:00
|
|
|
<version>${hutool-all.version}</version>
|
2023-01-14 21:02:18 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2024-05-06 15:00:41 +08:00
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
<artifactId>hutool-core</artifactId>
|
|
|
|
<version>${hutool-all.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-04-18 23:03:33 +08:00
|
|
|
<groupId>com.aizuda</groupId>
|
2024-04-15 18:26:32 +08:00
|
|
|
<artifactId>snail-job-client-retry-core</artifactId>
|
2023-01-14 21:02:18 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
2023-09-29 23:13:45 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.aizuda</groupId>
|
2024-04-15 18:26:32 +08:00
|
|
|
<artifactId>snail-job-client-job-core</artifactId>
|
2023-09-29 23:13:45 +08:00
|
|
|
<version>${revision}</version>
|
2023-01-14 21:02:18 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.baomidou</groupId>
|
2024-09-23 11:33:26 +08:00
|
|
|
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
2023-07-01 09:51:38 +08:00
|
|
|
<version>${mybatis-plus.version}</version>
|
2023-01-14 21:02:18 +08:00
|
|
|
</dependency>
|
2024-10-30 17:24:50 +08:00
|
|
|
<dependency>
|
|
|
|
<!-- >= 3.5.9 PaginationInnerInterceptor 需要单独引入 -->
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
<artifactId>mybatis-plus-jsqlparser</artifactId>
|
|
|
|
<version>${mybatis-plus.version}</version>
|
|
|
|
</dependency>
|
2024-05-07 11:26:42 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>jakarta.validation</groupId>
|
|
|
|
<artifactId>jakarta.validation-api</artifactId>
|
|
|
|
<version>${jakarta-validation.version}</version>
|
|
|
|
</dependency>
|
2023-07-28 17:39:45 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.rholder</groupId>
|
|
|
|
<artifactId>guava-retrying</artifactId>
|
|
|
|
<version>${guava-retrying.version}</version>
|
|
|
|
</dependency>
|
2024-07-05 17:12:43 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<version>${guava.version}</version>
|
|
|
|
</dependency>
|
2024-01-16 15:34:41 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
<version>${log4j.version}</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<version>${commons-logging.version}</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2024-08-22 20:02:42 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.devh</groupId>
|
|
|
|
<artifactId>grpc-client-spring-boot-starter</artifactId>
|
|
|
|
<version>3.1.0.RELEASE</version>
|
|
|
|
</dependency>
|
2023-01-14 21:02:18 +08:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
2022-10-24 21:20:32 +08:00
|
|
|
<licenses>
|
|
|
|
<license>
|
2024-04-25 18:37:41 +08:00
|
|
|
<name>Apache License 2.0</name>
|
|
|
|
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
|
2022-10-24 21:20:32 +08:00
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<scm>
|
2024-04-25 18:37:41 +08:00
|
|
|
<url>https://gitee.com/aizuda/snail-job</url>
|
|
|
|
<connection>https://gitee.com/aizuda/snail-job</connection>
|
2023-04-22 11:48:37 +08:00
|
|
|
<developerConnection>https://gitee.com/aizuda/</developerConnection>
|
2022-10-24 21:20:32 +08:00
|
|
|
</scm>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
2024-08-14 08:54:52 +08:00
|
|
|
<name>opensnail</name>
|
|
|
|
<email>snailjob@opensnail.com</email>
|
|
|
|
<url>https://gitee.com/opensnail</url>
|
2022-10-24 21:20:32 +08:00
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
2023-01-14 21:02:18 +08:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2023-09-17 10:44:01 +08:00
|
|
|
<version>3.11.0</version>
|
2023-01-14 21:02:18 +08:00
|
|
|
<configuration>
|
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
|
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>flatten-maven-plugin</artifactId>
|
|
|
|
<version>1.1.0</version>
|
|
|
|
<configuration>
|
|
|
|
<updatePomFile>true</updatePomFile>
|
|
|
|
<flattenMode>oss</flattenMode>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>flatten</id>
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>flatten</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>flatten.clean</id>
|
|
|
|
<phase>clean</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>clean</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2023-04-23 22:18:58 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>3.2.1</version>
|
|
|
|
</plugin>
|
2023-01-14 21:02:18 +08:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2023-04-23 22:18:58 +08:00
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>release</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<version>1.6</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>sign</goal>
|
|
|
|
</goals>
|
2024-08-22 20:02:42 +08:00
|
|
|
<!-- <configuration>-->
|
|
|
|
<!-- <!– Prevent `gpg` from using pinentry programs –>-->
|
|
|
|
<!-- <gpgArguments>-->
|
|
|
|
<!-- <arg>--pinentry-mode</arg>-->
|
|
|
|
<!-- <arg>loopback</arg>-->
|
|
|
|
<!-- </gpgArguments>-->
|
|
|
|
<!-- </configuration>-->
|
2023-04-23 22:18:58 +08:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>3.2.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2024-01-31 23:14:42 +08:00
|
|
|
<version>3.2.0</version>
|
2023-04-23 22:18:58 +08:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<doclint>none</doclint>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2024-08-14 08:54:52 +08:00
|
|
|
<groupId>org.sonatype.central</groupId>
|
|
|
|
<artifactId>central-publishing-maven-plugin</artifactId>
|
|
|
|
<version>0.5.0</version>
|
2023-04-23 22:18:58 +08:00
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
2024-08-14 08:54:52 +08:00
|
|
|
<publishingServerId>ossrh</publishingServerId>
|
|
|
|
<autoPublish>false</autoPublish>
|
2023-04-23 22:18:58 +08:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>ossrh</id>
|
2024-08-14 08:54:52 +08:00
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
2023-04-23 22:18:58 +08:00
|
|
|
</snapshotRepository>
|
|
|
|
<repository>
|
|
|
|
<id>ossrh</id>
|
2024-08-14 08:54:52 +08:00
|
|
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
2023-04-23 22:18:58 +08:00
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2023-01-14 21:02:18 +08:00
|
|
|
</project>
|