12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <?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>
- </dependencies>
- </project>
|