pom.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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>3.1.0</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. <!-- 排除demo模块,demo模块采用微服务方式独立启动 -->
  31. <exclusions>
  32. <exclusion>
  33. <groupId>org.jeecgframework.boot</groupId>
  34. <artifactId>jeecg-boot-module-demo</artifactId>
  35. </exclusion>
  36. </exclusions>
  37. </dependency>
  38. <!-- 测试模块依赖 -->
  39. <!--rabbitmq消息队列
  40. <dependency>
  41. <groupId>org.jeecgframework.boot</groupId>
  42. <artifactId>jeecg-cloud-test-rabbitmq</artifactId>
  43. <version>3.1.0</version>
  44. </dependency>-->
  45. <!--XxlJob、分布式锁
  46. <dependency>
  47. <groupId>org.jeecgframework.boot</groupId>
  48. <artifactId>jeecg-cloud-test-more</artifactId>
  49. <version>3.1.0</version>
  50. </dependency>-->
  51. <!-- 分布式事务
  52. <dependency>
  53. <groupId>org.jeecgframework.boot</groupId>
  54. <artifactId>jeecg-cloud-test-seata</artifactId>
  55. <version>3.1.0</version>
  56. </dependency>-->
  57. <!-- 分库分表
  58. <dependency>
  59. <groupId>org.jeecgframework.boot</groupId>
  60. <artifactId>jeecg-cloud-test-shardingsphere</artifactId>
  61. <version>3.1.0</version>
  62. </dependency> -->
  63. <!-- 测试模块依赖 -->
  64. </dependencies>
  65. <build>
  66. <plugins>
  67. <plugin>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-maven-plugin</artifactId>
  70. </plugin>
  71. </plugins>
  72. </build>
  73. </project>