| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 | <?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-server-dispatcher</artifactId>        <version>${revision}</version>        <relativePath>../pom.xml</relativePath>    </parent>    <artifactId>snail-job-server-common</artifactId>    <name>snail-job-server-common</name>    <description>snail-job-server-common</description>    <packaging>jar</packaging>    <dependencies>        <!--    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   -->        <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>        <!--     libs  -->        <dependency>            <groupId>org.apache.pekko</groupId>            <artifactId>pekko-actor-typed_2.13</artifactId>        </dependency>        <dependency>            <groupId>org.apache.pekko</groupId>            <artifactId>pekko-actor-testkit-typed_2.13</artifactId>        </dependency>        <dependency>            <groupId>com.google.guava</groupId>            <artifactId>guava</artifactId>        </dependency>        <dependency>            <groupId>io.netty</groupId>            <artifactId>netty-codec-http</artifactId>        </dependency>        <dependency>            <groupId>io.netty</groupId>            <artifactId>netty-transport</artifactId>        </dependency>        <dependency>            <groupId>org.perf4j</groupId>            <artifactId>perf4j</artifactId>        </dependency>        <dependency>            <groupId>com.squareup.okhttp3</groupId>            <artifactId>okhttp</artifactId>        </dependency>        <dependency>            <groupId>com.github.rholder</groupId>            <artifactId>guava-retrying</artifactId>        </dependency>        <dependency>            <groupId>org.scala-lang</groupId>            <artifactId>scala-library</artifactId>        </dependency>        <!-- grpc  -->        <dependency>            <groupId>io.grpc</groupId>            <artifactId>grpc-netty-shaded</artifactId>        </dependency>        <dependency>            <groupId>io.grpc</groupId>            <artifactId>grpc-protobuf</artifactId>        </dependency>        <dependency>            <groupId>io.grpc</groupId>            <artifactId>grpc-stub</artifactId>        </dependency>        <dependency>            <groupId>io.grpc</groupId>            <artifactId>grpc-api</artifactId>        </dependency>        <dependency>            <groupId>io.grpc</groupId>            <artifactId>grpc-util</artifactId>        </dependency>        <!--    SnailJob    -->        <dependency>            <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-model</artifactId>        </dependency>        <dependency>            <groupId>com.aizuda</groupId>            <artifactId>snail-job-datasource-template</artifactId>        </dependency>    </dependencies>    <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>
 |