123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?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.github.microservice</groupId>
- <artifactId>PParent</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <relativePath>../../../super/PParent</relativePath>
- </parent>
- <groupId>com.zswl.cloud.SpringBatchService</groupId>
- <artifactId>SpringBatchServiceClient</artifactId>
- <name>SpringBatchServiceClient</name>
- <properties>
- <java.version>11</java.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.github.microservice</groupId>
- <artifactId>PCore</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- 通用basedata -->
- <dependency>
- <groupId>com.github.microservice.components</groupId>
- <artifactId>BaseData</artifactId>
- <version>${Project.version}</version>
- </dependency>
- <!--应用中心客户端-->
- <dependency>
- <groupId>com.github.microservice.components</groupId>
- <artifactId>ApplicationClient</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- 文档 -->
- <dependency>
- <groupId>com.github.microservice.components</groupId>
- <artifactId>Swagger2</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-core</artifactId>
- <version>5.8.18</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-batch</artifactId>
- <version>2.7.3</version>
- </dependency>
- <dependency>
- <groupId>com.github.microservice.auth</groupId>
- <artifactId>AuthClient</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.zhongshu</groupId>
- <artifactId>PaymentClient</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xiaoju.open</groupId>
- <artifactId>oil-core</artifactId>
- <version>1.0.16</version>
- <scope>system</scope>
- <systemPath>${basedir}/src/main/java/com/zswl/cloud/springBatch/client/lib/oil-sdk-jar-1.0.16.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>com.eeext</groupId>
- <artifactId>openapi</artifactId>
- <version>0.0.7</version>
- <scope>system</scope>
- <systemPath>${basedir}/src/main/java/com/zswl/cloud/springBatch/client/lib/openapi-0.0.7.jar</systemPath>
- </dependency>
- </dependencies>
- </project>
|