pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. <groupId>org.jeecgframework.boot</groupId>
  7. <artifactId>jeecg-server-cloud</artifactId>
  8. <version>3.7.3</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>jeecg-cloud-lifecycle</artifactId>
  12. <dependencies>
  13. <!--引入微服务启动依赖 starter-->
  14. <dependency>
  15. <groupId>org.jeecgframework.boot</groupId>
  16. <artifactId>jeecg-boot-starter-cloud</artifactId>
  17. </dependency>
  18. <!--system cloud api-->
  19. <dependency>
  20. <groupId>org.jeecgframework.boot</groupId>
  21. <artifactId>jeecg-system-cloud-api</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.jeecgframework.boot</groupId>
  25. <artifactId>jeecg-boot-starter-job</artifactId>
  26. </dependency>
  27. <!-- 引入demo模块 -->
  28. <dependency>
  29. <groupId>org.jeecgframework.boot</groupId>
  30. <artifactId>jeecg-module-lifecycle</artifactId>
  31. <version>${jeecgboot.version}</version>
  32. </dependency>
  33. <!-- jeecg-system-biz依赖 -->
  34. <dependency>
  35. <groupId>org.jeecgframework.boot</groupId>
  36. <artifactId>jeecg-system-biz</artifactId>
  37. <!-- 排除demo模块,demo模块采用微服务独立启动 -->
  38. <exclusions>
  39. <exclusion>
  40. <groupId>org.jeecgframework.boot</groupId>
  41. <artifactId>jeecg-module-demo</artifactId>
  42. </exclusion>
  43. </exclusions>
  44. </dependency>
  45. </dependencies>
  46. <build>
  47. <plugins>
  48. <plugin>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-maven-plugin</artifactId>
  51. </plugin>
  52. </plugins>
  53. </build>
  54. </project>