pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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-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. <dependency>
  35. <groupId>org.jeecgframework.boot</groupId>
  36. <artifactId>jflow-core</artifactId>
  37. <version>1.1.0</version>
  38. <scope>compile</scope>
  39. </dependency>
  40. </dependencies>
  41. <build>
  42. <plugins>
  43. <plugin>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-maven-plugin</artifactId>
  46. </plugin>
  47. </plugins>
  48. </build>
  49. </project>