pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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>jeecg-cloud-test</artifactId>
  7. <groupId>org.jeecgframework.boot</groupId>
  8. <version>3.4.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <description>公共测试模块</description>
  12. <artifactId>jeecg-cloud-test-more</artifactId>
  13. <dependencies>
  14. <!-- 引入jeecg-boot-starter-cloud依赖 -->
  15. <dependency>
  16. <groupId>org.jeecgframework.boot</groupId>
  17. <artifactId>jeecg-boot-starter-cloud</artifactId>
  18. <!--system模块需要排除jeecg-system-cloud-api-->
  19. <exclusions>
  20. <exclusion>
  21. <groupId>org.jeecgframework.boot</groupId>
  22. <artifactId>jeecg-system-cloud-api</artifactId>
  23. </exclusion>
  24. </exclusions>
  25. </dependency>
  26. <!--定时任务-->
  27. <dependency>
  28. <groupId>org.jeecgframework.boot</groupId>
  29. <artifactId>jeecg-boot-starter-job</artifactId>
  30. </dependency>
  31. <!--rabbitmq消息队列-->
  32. <dependency>
  33. <groupId>org.jeecgframework.boot</groupId>
  34. <artifactId>jeecg-boot-starter-rabbitmq</artifactId>
  35. </dependency>
  36. <!-- 分布式锁依赖 -->
  37. <dependency>
  38. <groupId>org.jeecgframework.boot</groupId>
  39. <artifactId>jeecg-boot-starter-lock</artifactId>
  40. </dependency>
  41. </dependencies>
  42. </project>