pom.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.github.microservice</groupId>
  7. <artifactId>PParent</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. <relativePath>../../../super/PParent</relativePath>
  10. </parent>
  11. <groupId>com.zswl.cloud.SpringBatchService</groupId>
  12. <artifactId>SpringBatchServiceClient</artifactId>
  13. <name>SpringBatchServiceClient</name>
  14. <properties>
  15. <java.version>11</java.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.github.microservice</groupId>
  20. <artifactId>PCore</artifactId>
  21. <version>${project.version}</version>
  22. </dependency>
  23. <!-- 通用basedata -->
  24. <dependency>
  25. <groupId>com.github.microservice.components</groupId>
  26. <artifactId>BaseData</artifactId>
  27. <version>${Project.version}</version>
  28. </dependency>
  29. <!--应用中心客户端-->
  30. <dependency>
  31. <groupId>com.github.microservice.components</groupId>
  32. <artifactId>ApplicationClient</artifactId>
  33. <version>${project.version}</version>
  34. </dependency>
  35. <!-- 文档 -->
  36. <dependency>
  37. <groupId>com.github.microservice.components</groupId>
  38. <artifactId>Swagger2</artifactId>
  39. <version>${project.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>cn.hutool</groupId>
  43. <artifactId>hutool-core</artifactId>
  44. <version>5.8.18</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-batch</artifactId>
  49. <version>2.7.3</version>
  50. </dependency>
  51. </dependencies>
  52. </project>