pom.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. <groupId>com.github.zuihou</groupId>
  7. <artifactId>imcs-jobs</artifactId>
  8. <version>b.2.5-SNAPSHOT</version>
  9. <relativePath>../</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>imcs-jobs-core</artifactId>
  13. <name>${project.artifactId}</name>
  14. <description>定时服务核心模块</description>
  15. <dependencies>
  16. <!-- xxl-rpc-core -->
  17. <dependency>
  18. <groupId>com.xuxueli</groupId>
  19. <artifactId>xxl-rpc-core</artifactId>
  20. <version>1.2.1</version>
  21. </dependency>
  22. <!-- groovy-all -->
  23. <dependency>
  24. <groupId>org.codehaus.groovy</groupId>
  25. <artifactId>groovy</artifactId>
  26. </dependency>
  27. <!-- commons-exec -->
  28. <dependency>
  29. <groupId>org.apache.commons</groupId>
  30. <artifactId>commons-exec</artifactId>
  31. </dependency>
  32. <!-- jackson -->
  33. <dependency>
  34. <groupId>com.fasterxml.jackson.core</groupId>
  35. <artifactId>jackson-databind</artifactId>
  36. </dependency>
  37. <!-- spring-context -->
  38. <dependency>
  39. <groupId>org.springframework</groupId>
  40. <artifactId>spring-context</artifactId>
  41. <scope>provided</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-websocket</artifactId>
  46. </dependency>
  47. </dependencies>
  48. </project>