pom.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>zhbsq-service</artifactId>
  7. <groupId>com.hjy</groupId>
  8. <version>3.8.3</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>zhbsq-quartz</artifactId>
  12. <description>
  13. quartz定时任务
  14. </description>
  15. <dependencies>
  16. <!-- 定时任务 -->
  17. <dependency>
  18. <groupId>org.quartz-scheduler</groupId>
  19. <artifactId>quartz</artifactId>
  20. <exclusions>
  21. <exclusion>
  22. <groupId>com.mchange</groupId>
  23. <artifactId>c3p0</artifactId>
  24. </exclusion>
  25. </exclusions>
  26. </dependency>
  27. <!-- 通用工具-->
  28. <dependency>
  29. <groupId>com.hjy</groupId>
  30. <artifactId>zhbsq-common</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.hjy</groupId>
  34. <artifactId>zhbsq-modlue</artifactId>
  35. <version>3.8.3</version>
  36. <scope>compile</scope>
  37. </dependency>
  38. <!-- 系统业务模块-->
  39. <!-- <dependency>-->
  40. <!-- <groupId>com.hjy</groupId>-->
  41. <!-- <artifactId>zhbsq-modlue</artifactId>-->
  42. <!-- </dependency>-->
  43. </dependencies>
  44. </project>