pom.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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>fs</artifactId>
  7. <groupId>com.fs</groupId>
  8. <version>1.1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>fs-service-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. <!-- Mysql驱动包 -->
  28. <dependency>
  29. <groupId>mysql</groupId>
  30. <artifactId>mysql-connector-java</artifactId>
  31. </dependency>
  32. <!-- 阿里数据库连接池 -->
  33. <dependency>
  34. <groupId>com.alibaba</groupId>
  35. <artifactId>druid-spring-boot-starter</artifactId>
  36. </dependency>
  37. <!-- SpringBoot 拦截器 -->
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-aop</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.fasterxml.jackson.core</groupId>
  44. <artifactId>jackson-annotations</artifactId>
  45. </dependency>
  46. <!-- 通用工具-->
  47. <dependency>
  48. <groupId>com.fs</groupId>
  49. <artifactId>fs-common</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.fs</groupId>
  53. <artifactId>fs-service-system</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-web</artifactId>
  58. </dependency>
  59. </dependencies>
  60. </project>