123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?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>com.aizuda</groupId>
- <artifactId>snail-job</artifactId>
- <version>${revision}</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <artifactId>snail-job-server-dispatcher</artifactId>
- <packaging>pom</packaging>
- <name>snail-job-server-dispatcher</name>
- <description>snail-job-server-dispatcher</description>
- <modules>
- <module>snail-job-server-common</module>
- <module>snail-job-server-retry-task</module>
- <module>snail-job-server-job-task</module>
- </modules>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>com.aizuda</groupId>
- <artifactId>snail-job-server-common</artifactId>
- <version>${revision}</version>
- </dependency>
- <dependency>
- <groupId>com.aizuda</groupId>
- <artifactId>snail-job-server-web</artifactId>
- <version>${revision}</version>
- </dependency>
- <dependency>
- <groupId>com.aizuda</groupId>
- <artifactId>snail-job-server-retry-task</artifactId>
- <version>${revision}</version>
- </dependency>
- <dependency>
- <groupId>com.aizuda</groupId>
- <artifactId>snail-job-server-job-task</artifactId>
- <version>${revision}</version>
- </dependency>
- <dependency>
- <groupId>com.aizuda</groupId>
- <artifactId>snail-job-server-ui</artifactId>
- <version>${revision}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>${maven.compiler.source}</source>
- <target>${maven.compiler.target}</target>
- </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>
|