pom.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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.5.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>jeecg-demo-cloud-start</artifactId>
  12. <description>Demo微服务启动</description>
  13. <dependencies>
  14. <!--引入微服务启动依赖 starter-->
  15. <dependency>
  16. <groupId>org.jeecgframework.boot</groupId>
  17. <artifactId>jeecg-boot-starter-cloud</artifactId>
  18. </dependency>
  19. <!--system cloud api-->
  20. <dependency>
  21. <groupId>org.jeecgframework.boot</groupId>
  22. <artifactId>jeecg-system-cloud-api</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.jeecgframework.boot</groupId>
  26. <artifactId>jeecg-boot-starter-job</artifactId>
  27. </dependency>
  28. <!-- 引入demo模块 -->
  29. <dependency>
  30. <groupId>org.jeecgframework.boot</groupId>
  31. <artifactId>jeecg-module-demo</artifactId>
  32. <version>${jeecgboot.version}</version>
  33. </dependency>
  34. </dependencies>
  35. <build>
  36. <plugins>
  37. <plugin>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-maven-plugin</artifactId>
  40. </plugin>
  41. </plugins>
  42. </build>
  43. </project>