pom.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <parent>
  4. <artifactId>jeecg-server-cloud</artifactId>
  5. <groupId>org.jeecgframework.boot</groupId>
  6. <version>3.7.1</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>jeecg-cloud-sbm</artifactId>
  10. <dependencies>
  11. <!--引入微服务启动依赖 starter-->
  12. <dependency>
  13. <groupId>org.jeecgframework.boot</groupId>
  14. <artifactId>jeecg-boot-starter-cloud</artifactId>
  15. </dependency>
  16. <!--system cloud api-->
  17. <dependency>
  18. <groupId>org.jeecgframework.boot</groupId>
  19. <artifactId>jeecg-system-cloud-api</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.jeecgframework.boot</groupId>
  23. <artifactId>jeecg-boot-starter-job</artifactId>
  24. </dependency>
  25. <!-- 引入demo模块 -->
  26. <dependency>
  27. <groupId>org.jeecgframework.boot</groupId>
  28. <artifactId>jeecg-module-sbm</artifactId>
  29. <version>${jeecgboot.version}</version>
  30. </dependency>
  31. <!-- EasyExcel -->
  32. <dependency>
  33. <groupId>com.alibaba</groupId>
  34. <artifactId>easyexcel</artifactId>
  35. </dependency>
  36. <!-- Commons IO -->
  37. <dependency>
  38. <groupId>commons-io</groupId>
  39. <artifactId>commons-io</artifactId>
  40. </dependency>
  41. </dependencies>
  42. <build>
  43. <plugins>
  44. <plugin>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-maven-plugin</artifactId>
  47. </plugin>
  48. </plugins>
  49. </build>
  50. </project>