pom.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. <!--rabbitmq消息队列-->
  36. <!-- <dependency>-->
  37. <!-- <groupId>org.jeecgframework.boot</groupId>-->
  38. <!-- <artifactId>jeecg-boot-starter-rabbitmq</artifactId>-->
  39. <!-- </dependency>-->
  40. <!--xxl-job定时任务-->
  41. <!-- <dependency>-->
  42. <!-- <groupId>org.jeecgframework.boot</groupId>-->
  43. <!-- <artifactId>jeecg-boot-starter-job</artifactId>-->
  44. <!-- </dependency>-->
  45. <!-- 分布式锁依赖 -->
  46. <!-- <dependency>-->
  47. <!-- <groupId>org.jeecgframework.boot</groupId>-->
  48. <!-- <artifactId>jeecg-boot-starter-lock</artifactId>-->
  49. <!-- </dependency>-->
  50. </dependencies>
  51. <build>
  52. <plugins>
  53. <plugin>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-maven-plugin</artifactId>
  56. </plugin>
  57. </plugins>
  58. </build>
  59. </project>