| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 | <?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>        <artifactId>snail-job</artifactId>        <version>${revision}</version>        <relativePath>../pom.xml</relativePath>    </parent>    <artifactId>snail-job-server-starter</artifactId>    <name>snail-job-server-starter</name>    <description>snail-job-server-starter</description>    <packaging>jar</packaging>    <dependencies>        <!--    preprocessor    -->        <dependency>            <groupId>org.projectlombok</groupId>            <artifactId>lombok</artifactId>        </dependency>        <!--    springboot    -->        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-web</artifactId>        </dependency>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-configuration-processor</artifactId>            <optional>true</optional>        </dependency>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-test</artifactId>            <scope>test</scope>        </dependency>        <!--    libs    -->        <dependency>            <groupId>org.mybatis</groupId>            <artifactId>mybatis-spring</artifactId>        </dependency>        <dependency>            <groupId>io.netty</groupId>            <artifactId>netty-all</artifactId>        </dependency>        <dependency>            <groupId>junit</groupId>            <artifactId>junit</artifactId>            <scope>test</scope>        </dependency>        <dependency>            <groupId>com.github.rholder</groupId>            <artifactId>guava-retrying</artifactId>            <exclusions>                <exclusion>                    <artifactId>jsr305</artifactId>                    <groupId>com.google.code.findbugs</groupId>                </exclusion>                <exclusion>                    <artifactId>error_prone_annotations</artifactId>                    <groupId>com.google.errorprone</groupId>                </exclusion>            </exclusions>        </dependency>        <!--   SnailJob     -->        <dependency>            <groupId>com.aizuda</groupId>            <artifactId>snail-job-server-web</artifactId>            <exclusions>                <exclusion>                    <artifactId>mybatis-spring</artifactId>                    <groupId>org.mybatis</groupId>                </exclusion>                <exclusion>                    <artifactId>checker-qual</artifactId>                    <groupId>org.checkerframework</groupId>                </exclusion>                <exclusion>                    <artifactId>error_prone_annotations</artifactId>                    <groupId>com.google.errorprone</groupId>                </exclusion>            </exclusions>        </dependency>        <dependency>            <groupId>com.aizuda</groupId>            <artifactId>snail-job-server-retry-task</artifactId>        </dependency>        <dependency>            <groupId>com.aizuda</groupId>            <artifactId>snail-job-server-job-task</artifactId>        </dependency>        <dependency>            <groupId>com.aizuda</groupId>            <artifactId>snail-job-server-common</artifactId>        </dependency>        <dependency>            <groupId>com.aizuda</groupId>            <artifactId>snail-job-server-ui</artifactId>        </dependency>        <dependency>            <groupId>com.aizuda</groupId>            <artifactId>snail-job-server-openapi</artifactId>        </dependency>    </dependencies>    <build>        <finalName>snail-job-server</finalName>        <plugins>            <plugin>                <groupId>org.springframework.boot</groupId>                <artifactId>spring-boot-maven-plugin</artifactId>                <configuration>                    <mainClass>com.aizuda.snailjob.server.SnailJobServerApplication</mainClass>                    <classifier>exec</classifier>                </configuration>                <executions>                    <execution>                        <goals>                            <goal>build-info</goal>                            <goal>repackage</goal>                        </goals>                    </execution>                </executions>            </plugin>        </plugins>    </build></project>
 |