pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. <dependency>
  15. <groupId>org.jeecgframework.boot</groupId>
  16. <artifactId>jeecg-boot-base-core</artifactId>
  17. </dependency>
  18. <!-- 引入jeecg-boot-starter-cloud依赖 -->
  19. <dependency>
  20. <groupId>org.jeecgframework.boot</groupId>
  21. <artifactId>jeecg-boot-starter-cloud</artifactId>
  22. <!--system模块需要排除jeecg-system-cloud-api-->
  23. <exclusions>
  24. <exclusion>
  25. <groupId>org.jeecgframework.boot</groupId>
  26. <artifactId>jeecg-system-cloud-api</artifactId>
  27. </exclusion>
  28. </exclusions>
  29. </dependency>
  30. <!-- 引入jeecg-boot-module-system依赖 -->
  31. <dependency>
  32. <groupId>org.jeecgframework.boot</groupId>
  33. <artifactId>jeecg-boot-module-system</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.cloud</groupId>
  37. <artifactId>spring-cloud-openfeign-core</artifactId>
  38. <version>2.2.5.RELEASE</version>
  39. <scope>compile</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>io.github.openfeign</groupId>
  43. <artifactId>feign-hystrix</artifactId>
  44. <version>10.10.1</version>
  45. <scope>compile</scope>
  46. </dependency>
  47. <!--rabbitmq消息队列-->
  48. <!-- <dependency>-->
  49. <!-- <groupId>org.jeecgframework.boot</groupId>-->
  50. <!-- <artifactId>jeecg-boot-starter-rabbitmq</artifactId>-->
  51. <!-- </dependency>-->
  52. <!--xxl-job定时任务-->
  53. <!-- <dependency>-->
  54. <!-- <groupId>org.jeecgframework.boot</groupId>-->
  55. <!-- <artifactId>jeecg-boot-starter-job</artifactId>-->
  56. <!-- </dependency>-->
  57. <!-- 分布式锁依赖 -->
  58. <!-- <dependency>-->
  59. <!-- <groupId>org.jeecgframework.boot</groupId>-->
  60. <!-- <artifactId>jeecg-boot-starter-lock</artifactId>-->
  61. <!-- </dependency>-->
  62. </dependencies>
  63. <build>
  64. <plugins>
  65. <plugin>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-maven-plugin</artifactId>
  68. </plugin>
  69. </plugins>
  70. </build>
  71. </project>