pom.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. <groupId>com.ozs</groupId>
  7. <artifactId>purchase</artifactId>
  8. <version>1.0.0</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>purchase-quartz</artifactId>
  13. <description>
  14. quartz定时任务
  15. </description>
  16. <dependencies>
  17. <!-- 定时任务 -->
  18. <dependency>
  19. <groupId>org.quartz-scheduler</groupId>
  20. <artifactId>quartz</artifactId>
  21. <exclusions>
  22. <exclusion>
  23. <groupId>com.mchange</groupId>
  24. <artifactId>c3p0</artifactId>
  25. </exclusion>
  26. </exclusions>
  27. </dependency>
  28. <!-- 通用工具-->
  29. <dependency>
  30. <groupId>com.ozs</groupId>
  31. <artifactId>purchase-common</artifactId>
  32. </dependency>
  33. </dependencies>
  34. </project>