pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.zkhz</groupId>
  7. <artifactId>hcp-modules</artifactId>
  8. <version>1.2.2</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>hcp-job</artifactId>
  12. <description>
  13. hcp-job定时任务
  14. </description>
  15. <properties>
  16. <xxl.job.version>2.3.0</xxl.job.version>
  17. </properties>
  18. <dependencies>
  19. <!-- xxl-job-core -->
  20. <dependency>
  21. <groupId>com.xuxueli</groupId>
  22. <artifactId>xxl-job-core</artifactId>
  23. <version>${xxl.job.version}</version>
  24. </dependency>
  25. <!-- SpringCloud Alibaba Nacos -->
  26. <dependency>
  27. <groupId>com.alibaba.cloud</groupId>
  28. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  29. </dependency>
  30. <!-- SpringCloud Alibaba Nacos Config -->
  31. <dependency>
  32. <groupId>com.alibaba.cloud</groupId>
  33. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  34. </dependency>
  35. <!-- SpringCloud Alibaba Sentinel -->
  36. <dependency>
  37. <groupId>com.alibaba.cloud</groupId>
  38. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  39. </dependency>
  40. <!-- SpringBoot Actuator -->
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-actuator</artifactId>
  44. </dependency>
  45. <!-- Swagger UI -->
  46. <dependency>
  47. <groupId>io.springfox</groupId>
  48. <artifactId>springfox-swagger-ui</artifactId>
  49. <version>${swagger.fox.version}</version>
  50. </dependency>
  51. <!-- Apache Velocity -->
  52. <dependency>
  53. <groupId>org.apache.velocity</groupId>
  54. <artifactId>velocity-engine-core</artifactId>
  55. </dependency>
  56. <!-- Mysql Connector -->
  57. <dependency>
  58. <groupId>com.mysql</groupId>
  59. <artifactId>mysql-connector-j</artifactId>
  60. </dependency>
  61. <!-- hcp Common Log -->
  62. <dependency>
  63. <groupId>com.zkhz</groupId>
  64. <artifactId>hcp-common-log</artifactId>
  65. </dependency>
  66. <!-- hcp Common Swagger -->
  67. <dependency>
  68. <groupId>com.zkhz</groupId>
  69. <artifactId>hcp-common-swagger</artifactId>
  70. </dependency>
  71. <!-- hcp Common mybatisplus -->
  72. <dependency>
  73. <groupId>com.zkhz</groupId>
  74. <artifactId>hcp-common-mybatisplus</artifactId>
  75. </dependency>
  76. </dependencies>
  77. <build>
  78. <finalName>${project.artifactId}</finalName>
  79. <plugins>
  80. <plugin>
  81. <groupId>org.springframework.boot</groupId>
  82. <artifactId>spring-boot-maven-plugin</artifactId>
  83. <version>2.3.3.RELEASE</version>
  84. <executions>
  85. <execution>
  86. <goals>
  87. <goal>repackage</goal>
  88. </goals>
  89. </execution>
  90. </executions>
  91. </plugin>
  92. </plugins>
  93. </build>
  94. </project>