| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 | <?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-core</artifactId>    <name>${project.artifactId}</name>    <description>定时服务核心模块</description>    <dependencies>        <!-- xxl-rpc-core -->        <dependency>            <groupId>com.xuxueli</groupId>            <artifactId>xxl-rpc-core</artifactId>            <version>1.2.1</version>        </dependency>        <!-- groovy-all -->        <dependency>            <groupId>org.codehaus.groovy</groupId>            <artifactId>groovy</artifactId>        </dependency>        <!-- commons-exec -->        <dependency>            <groupId>org.apache.commons</groupId>            <artifactId>commons-exec</artifactId>        </dependency>        <!-- jackson -->        <dependency>            <groupId>com.fasterxml.jackson.core</groupId>            <artifactId>jackson-databind</artifactId>        </dependency>        <!-- spring-context -->        <dependency>            <groupId>org.springframework</groupId>            <artifactId>spring-context</artifactId>            <scope>provided</scope>        </dependency>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-websocket</artifactId>        </dependency>    </dependencies></project>
 |