pom.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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>imcs-jobs</artifactId>
  7. <groupId>com.github.zuihou</groupId>
  8. <version>b.2.5-SNAPSHOT</version>
  9. <relativePath>../</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>imcs-executor</artifactId>
  13. <name>${project.artifactId}</name>
  14. <description>定时服务执行器模块</description>
  15. <dependencies>
  16. <!-- xxl-job-core -->
  17. <dependency>
  18. <groupId>com.github.zuihou</groupId>
  19. <artifactId>imcs-jobs-core</artifactId>
  20. <version>${imcs-project.version}</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.github.zuihou</groupId>
  24. <artifactId>zuihou-databases</artifactId>
  25. <version>${imcs-commons.version}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.github.zuihou</groupId>
  29. <artifactId>imcs-tenant-biz</artifactId>
  30. <version>${imcs-project.version}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.github.zuihou</groupId>
  34. <artifactId>imcs-authority-biz</artifactId>
  35. <version>${imcs-project.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.github.zuihou</groupId>
  39. <artifactId>imcs-sms-biz</artifactId>
  40. <version>${imcs-project.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.alibaba</groupId>
  44. <artifactId>druid-spring-boot-starter</artifactId>
  45. </dependency>
  46. </dependencies>
  47. </project>