pom.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>com.ssj</groupId>
  5. <artifactId>ssj</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. </parent>
  8. <artifactId>ssj-timer-task</artifactId>
  9. <packaging>war</packaging>
  10. <name>ssj-timer-task</name>
  11. <description>私塾家定时器</description>
  12. <properties>
  13. <java.version>1.8</java.version>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.ssj</groupId>
  18. <artifactId>ssj-kmt-exercise-service</artifactId>
  19. <version>0.0.1-SNAPSHOT</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.ssj</groupId>
  23. <artifactId>ssj-common-service</artifactId>
  24. <version>0.0.1-SNAPSHOT</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.ssj</groupId>
  28. <artifactId>ssj-sys-service</artifactId>
  29. <version>0.0.1-SNAPSHOT</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.ssj</groupId>
  33. <artifactId>ssj-common-weixin</artifactId>
  34. <version>0.0.1-SNAPSHOT</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.ssj</groupId>
  38. <artifactId>ssj-common-rabbitmq</artifactId>
  39. <version>0.0.1-SNAPSHOT</version>
  40. </dependency>
  41. <!-- 任务调度quartz -->
  42. <dependency>
  43. <groupId>org.quartz-scheduler</groupId>
  44. <artifactId>quartz</artifactId>
  45. <version>2.2.3</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.quartz-scheduler</groupId>
  49. <artifactId>quartz-jobs</artifactId>
  50. <version>2.2.3</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-mail</artifactId>
  55. </dependency>
  56. </dependencies>
  57. </project>