| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 | <?xml version="1.0" encoding="UTF-8"?><project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"         xmlns="http://maven.apache.org/POM/4.0.0"         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">    <parent>        <groupId>com.github.zuihou</groupId>        <artifactId>imcs-jobs</artifactId>        <version>b.2.5-SNAPSHOT</version>        <relativePath>../</relativePath>    </parent>    <modelVersion>4.0.0</modelVersion>    <artifactId>imcs-jobs-server</artifactId>    <name>${project.artifactId}</name>    <description>定时服务启动模块</description>    <dependencies>        <!-- 单机版jobs,请打开该依赖,然后无需启动zuihou-executor-server -->        <dependency>            <groupId>com.github.zuihou</groupId>            <artifactId>imcs-executor</artifactId>            <version>${imcs-project.version}</version>        </dependency>        <!-- xxl-job-core -->        <dependency>            <groupId>com.github.zuihou</groupId>            <artifactId>imcs-jobs-core</artifactId>            <version>${imcs-project.version}</version>        </dependency>        <dependency>            <groupId>com.github.zuihou</groupId>            <artifactId>zuihou-databases</artifactId>            <version>${imcs-commons.version}</version>        </dependency>        <dependency>            <groupId>com.github.zuihou</groupId>            <artifactId>zuihou-log-starter</artifactId>        </dependency>        <dependency>            <groupId>org.springframework.cloud</groupId>            <artifactId>spring-cloud-context</artifactId>        </dependency>        <dependency>            <groupId>com.github.zuihou</groupId>            <artifactId>zuihou-j2cache-starter</artifactId>        </dependency>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-web</artifactId>            <exclusions>                <exclusion>                    <groupId>org.apache.tomcat.embed</groupId>                    <artifactId>tomcat-embed-websocket</artifactId>                </exclusion>                <exclusion>                    <groupId>org.springframework.boot</groupId>                    <artifactId>spring-boot-starter-tomcat</artifactId>                </exclusion>            </exclusions>        </dependency>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-undertow</artifactId>        </dependency>        <!-- freemarker-starter -->        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-freemarker</artifactId>        </dependency>        <!-- 持久层相关 -->        <dependency>            <groupId>com.baomidou</groupId>            <artifactId>mybatis-plus-boot-starter</artifactId>        </dependency>        <dependency>            <groupId>com.alibaba</groupId>            <artifactId>druid-spring-boot-starter</artifactId>        </dependency>        <dependency>            <groupId>mysql</groupId>            <artifactId>mysql-connector-java</artifactId>        </dependency>        <!-- commons-collections4 -->        <dependency>            <groupId>org.apache.commons</groupId>            <artifactId>commons-collections4</artifactId>        </dependency>        <!-- commons-lang3 -->        <dependency>            <groupId>org.apache.commons</groupId>            <artifactId>commons-lang3</artifactId>        </dependency>        <!-- commons-email -->        <dependency>            <groupId>org.apache.commons</groupId>            <artifactId>commons-email</artifactId>        </dependency>        <!-- quartz :quartz-2.2.3/c3p0-0.9.1.1/slf4j-api-1.6.6 -->        <dependency>            <groupId>org.quartz-scheduler</groupId>            <artifactId>quartz</artifactId>        </dependency>        <!-- 测试 -->        <dependency>            <groupId>junit</groupId>            <artifactId>junit</artifactId>        </dependency>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-test</artifactId>            <scope>test</scope>        </dependency>    </dependencies>    <build>        <plugins>            <plugin>                <groupId>org.springframework.boot</groupId>                <artifactId>spring-boot-maven-plugin</artifactId>                <configuration>                    <executable>true</executable>                </configuration>            </plugin>            <!-- docker打包插件 -->            <plugin>                <groupId>com.spotify</groupId>                <artifactId>dockerfile-maven-plugin</artifactId>                <version>${dockerfile-maven-plugin.version}</version>                <configuration>                    <repository>${docker.image.prefix}/${project.artifactId}</repository>                    <tag>${imcs-project.version}</tag>                    <buildArgs>                        <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE>                    </buildArgs>                </configuration>            </plugin>        </plugins>    </build></project>
 |