pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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>jflow-cloud-start</artifactId>
  12. <description>jflow微服务启动</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. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-test</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework</groupId>
  34. <artifactId>spring-test</artifactId>
  35. <scope>compile</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>junit</groupId>
  39. <artifactId>junit</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.jeecgframework.boot</groupId>
  43. <artifactId>jflow-core</artifactId>
  44. <version>1.1.0</version>
  45. <scope>compile</scope>
  46. </dependency>
  47. </dependencies>
  48. <build>
  49. <plugins>
  50. <plugin>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-maven-plugin</artifactId>
  53. </plugin>
  54. </plugins>
  55. </build>
  56. </project>