pom.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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-module</artifactId>
  7. <groupId>org.jeecgframework.boot</groupId>
  8. <version>2.4.6</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>jeecg-cloud-system-start</artifactId>
  12. <description>System项目微服务启动</description>
  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. <!-- 引入jeecg-boot-module-system依赖 -->
  27. <dependency>
  28. <groupId>org.jeecgframework.boot</groupId>
  29. <artifactId>jeecg-boot-module-system</artifactId>
  30. </dependency>
  31. <!--rabbitmq消息队列-->
  32. <dependency>
  33. <groupId>org.jeecgframework.boot</groupId>
  34. <artifactId>jeecg-boot-starter-rabbitmq</artifactId>
  35. </dependency>
  36. <!--xxl-job定时任务-->
  37. <dependency>
  38. <groupId>org.jeecgframework.boot</groupId>
  39. <artifactId>jeecg-boot-starter-job</artifactId>
  40. </dependency>
  41. <!-- 分布式锁依赖 -->
  42. <dependency>
  43. <groupId>org.jeecgframework.boot</groupId>
  44. <artifactId>jeecg-boot-starter-lock</artifactId>
  45. </dependency>
  46. </dependencies>
  47. <build>
  48. <plugins>
  49. <plugin>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-maven-plugin</artifactId>
  52. </plugin>
  53. </plugins>
  54. </build>
  55. </project>