pom.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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>ruoyi</artifactId>
  7. <groupId>com.ruoyi</groupId>
  8. <version>3.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ruoyi-quartz</artifactId>
  12. <description>
  13. quartz定时任务
  14. </description>
  15. <dependencies>
  16. <!--Spring框架基本的核心工具-->
  17. <dependency>
  18. <groupId>org.springframework</groupId>
  19. <artifactId>spring-context-support</artifactId>
  20. </dependency>
  21. <!-- 定时任务 -->
  22. <dependency>
  23. <groupId>org.quartz-scheduler</groupId>
  24. <artifactId>quartz</artifactId>
  25. <exclusions>
  26. <exclusion>
  27. <groupId>com.mchange</groupId>
  28. <artifactId>c3p0</artifactId>
  29. </exclusion>
  30. </exclusions>
  31. </dependency>
  32. <!-- 通用工具-->
  33. <dependency>
  34. <groupId>com.ruoyi</groupId>
  35. <artifactId>ruoyi-common</artifactId>
  36. <version>${ruoyi.version}</version>
  37. </dependency>
  38. </dependencies>
  39. </project>