pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. <dependency>
  52. <groupId>com.github.microservice.auth</groupId>
  53. <artifactId>AuthClient</artifactId>
  54. <version>${project.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.zhongshu</groupId>
  58. <artifactId>PaymentClient</artifactId>
  59. <version>${project.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.xiaoju.open</groupId>
  63. <artifactId>oil-core</artifactId>
  64. <version>1.0.16</version>
  65. <scope>system</scope>
  66. <systemPath>${basedir}/src/main/java/com/zswl/cloud/springBatch/client/lib/oil-sdk-jar-1.0.16.jar</systemPath>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.eeext</groupId>
  70. <artifactId>openapi</artifactId>
  71. <version>0.0.7</version>
  72. <scope>system</scope>
  73. <systemPath>${basedir}/src/main/java/com/zswl/cloud/springBatch/client/lib/openapi-0.0.7.jar</systemPath>
  74. </dependency>
  75. </dependencies>
  76. </project>