pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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.4.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. <dependency>
  20. <groupId>org.jeecgframework.boot</groupId>
  21. <artifactId>jeecg-boot-starter-job</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.jeecgframework.boot</groupId>
  25. <artifactId>jeecg-boot-module-demo</artifactId>
  26. <version>${jeecgboot.version}</version>
  27. </dependency>
  28. </dependencies>
  29. <build>
  30. <plugins>
  31. <plugin>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-maven-plugin</artifactId>
  34. </plugin>
  35. </plugins>
  36. </build>
  37. </project>