pom.xml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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.5</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. <dependency>
  32. <groupId>org.jeecgframework.boot</groupId>
  33. <artifactId>jeecg-boot-base-core</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>io.github.openfeign</groupId>
  37. <artifactId>feign-hystrix</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.cloud</groupId>
  41. <artifactId>spring-cloud-openfeign-core</artifactId>
  42. </dependency>
  43. <!--rabbitmq消息队列-->
  44. <!-- <dependency>-->
  45. <!-- <groupId>org.jeecgframework.boot</groupId>-->
  46. <!-- <artifactId>jeecg-boot-starter-rabbitmq</artifactId>-->
  47. <!-- </dependency>-->
  48. <!--xxl-job定时任务-->
  49. <!-- <dependency>-->
  50. <!-- <groupId>org.jeecgframework.boot</groupId>-->
  51. <!-- <artifactId>jeecg-boot-starter-job</artifactId>-->
  52. <!-- </dependency>-->
  53. <!-- 分布式锁依赖 -->
  54. <!-- <dependency>-->
  55. <!-- <groupId>org.jeecgframework.boot</groupId>-->
  56. <!-- <artifactId>jeecg-boot-starter-lock</artifactId>-->
  57. <!-- </dependency>-->
  58. </dependencies>
  59. <build>
  60. <plugins>
  61. <plugin>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-maven-plugin</artifactId>
  64. </plugin>
  65. </plugins>
  66. </build>
  67. </project>