pom.xml 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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.7.0</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. <!-- <dependency>-->
  39. <!-- <groupId>cn.lttc</groupId>-->
  40. <!-- <artifactId>lttc-module-appmanage</artifactId>-->
  41. <!-- <version>3.7.0</version>-->
  42. <!-- </dependency>-->
  43. <!-- feign 熔断限流、分布式锁、xxljob示例
  44. <dependency>
  45. <groupId>org.jeecgframework.boot</groupId>
  46. <artifactId>jeecg-cloud-test-more</artifactId>
  47. <version>${jeecgboot.version}</version>
  48. </dependency>-->
  49. <!-- rocketmq例子-->
  50. <!--<dependency>
  51. <groupId>org.jeecgframework.boot</groupId>
  52. <artifactId>jeecg-cloud-test-rocketmq</artifactId>
  53. <version>${jeecgboot.version}</version>
  54. </dependency>-->
  55. <!-- 分布式事务例子
  56. <dependency>
  57. <groupId>org.jeecgframework.boot</groupId>
  58. <artifactId>jeecg-cloud-test-seata</artifactId>
  59. <version>${jeecgboot.version}</version>
  60. </dependency>-->
  61. <!-- 分库分表例子
  62. <dependency>
  63. <groupId>org.jeecgframework.boot</groupId>
  64. <artifactId>jeecg-cloud-test-shardingsphere</artifactId>
  65. <version>${jeecgboot.version}</version>
  66. </dependency>-->
  67. </dependencies>
  68. <build>
  69. <plugins>
  70. <plugin>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-maven-plugin</artifactId>
  73. </plugin>
  74. </plugins>
  75. </build>
  76. </project>