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>
|
2023-04-18 23:03:33 +08:00
|
|
|
<groupId>com.aizuda</groupId>
|
2024-04-15 18:26:32 +08:00
|
|
|
<artifactId>snail-job</artifactId>
|
2022-09-28 13:35:27 +08:00
|
|
|
<version>${revision}</version>
|
2023-01-14 21:02:18 +08:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
2024-04-15 18:26:32 +08:00
|
|
|
<artifactId>snail-job-server</artifactId>
|
2023-09-18 23:30:15 +08:00
|
|
|
<packaging>pom</packaging>
|
2024-04-15 18:26:32 +08:00
|
|
|
<name>snail-job-server</name>
|
|
|
|
<description>snail-job-server</description>
|
2023-01-14 21:02:18 +08:00
|
|
|
|
2023-09-18 23:30:15 +08:00
|
|
|
<modules>
|
2024-04-15 18:26:32 +08:00
|
|
|
<module>snail-job-server-common</module>
|
|
|
|
<module>snail-job-server-web</module>
|
|
|
|
<module>snail-job-server-retry-task</module>
|
|
|
|
<module>snail-job-server-job-task</module>
|
|
|
|
<module>snail-job-server-starter</module>
|
2024-06-25 17:28:51 +08:00
|
|
|
<module>snail-job-server-ui</module>
|
2023-09-18 23:30:15 +08:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.aizuda</groupId>
|
2024-04-15 18:26:32 +08:00
|
|
|
<artifactId>snail-job-server-common</artifactId>
|
2023-09-18 23:30:15 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.aizuda</groupId>
|
2024-04-15 18:26:32 +08:00
|
|
|
<artifactId>snail-job-server-web</artifactId>
|
2023-09-18 23:30:15 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.aizuda</groupId>
|
2024-04-15 18:26:32 +08:00
|
|
|
<artifactId>snail-job-server-retry-task</artifactId>
|
2023-09-18 23:30:15 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.aizuda</groupId>
|
2024-04-15 18:26:32 +08:00
|
|
|
<artifactId>snail-job-server-job-task</artifactId>
|
2023-09-18 23:30:15 +08:00
|
|
|
<version>${revision}</version>
|
2024-06-25 17:28:51 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.aizuda</groupId>
|
|
|
|
<artifactId>snail-job-server-ui</artifactId>
|
|
|
|
<version>${revision}</version>
|
2023-09-18 23:30:15 +08:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
2023-01-14 21:02:18 +08:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
2025-01-21 22:35:47 +08:00
|
|
|
<source>${maven.compiler.source}</source>
|
|
|
|
<target>${maven.compiler.target}</target>
|
2023-01-14 21:02:18 +08:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skipTests>true</skipTests>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>repackage</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|