pom.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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-server-cloud</artifactId>
  7. <groupId>org.jeecgframework.boot</groupId>
  8. <version>3.4.3</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>jeecg-system-cloud-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. <!-- 3.2版本号后,可选择是否排除jeecg-system-cloud-api,不排除会优先通过fegin调用接口
  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-system-biz依赖 -->
  27. <dependency>
  28. <groupId>org.jeecgframework.boot</groupId>
  29. <artifactId>jeecg-system-biz</artifactId>
  30. <!-- 排除demo模块,demo模块采用微服务独立启动 -->
  31. <exclusions>
  32. <exclusion>
  33. <groupId>org.jeecgframework.boot</groupId>
  34. <artifactId>jeecg-module-demo</artifactId>
  35. </exclusion>
  36. </exclusions>
  37. </dependency>
  38. <!-- feign 熔断限流、分布式锁、xxljob示例
  39. <dependency>
  40. <groupId>org.jeecgframework.boot</groupId>
  41. <artifactId>jeecg-cloud-test-more</artifactId>
  42. <version>${jeecgboot.version}</version>
  43. </dependency>-->
  44. <!-- rabbitmq例子
  45. <dependency>
  46. <groupId>org.jeecgframework.boot</groupId>
  47. <artifactId>jeecg-cloud-test-rabbitmq</artifactId>
  48. <version>${jeecgboot.version}</version>
  49. </dependency>-->
  50. <!-- 分布式事务例子
  51. <dependency>
  52. <groupId>org.jeecgframework.boot</groupId>
  53. <artifactId>jeecg-cloud-test-seata</artifactId>
  54. <version>${jeecgboot.version}</version>
  55. </dependency>-->
  56. <!-- 分库分表例子
  57. <dependency>
  58. <groupId>org.jeecgframework.boot</groupId>
  59. <artifactId>jeecg-cloud-test-shardingsphere</artifactId>
  60. <version>${jeecgboot.version}</version>
  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>