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-module-system</artifactId>
  7. <groupId>org.jeecgframework.boot</groupId>
  8. <version>3.7.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>jeecg-system-start</artifactId>
  12. <dependencies>
  13. <!-- SYSTEM 系统管理模块 -->
  14. <dependency>
  15. <groupId>org.jeecgframework.boot</groupId>
  16. <artifactId>jeecg-system-biz</artifactId>
  17. <version>${jeecgboot.version}</version>
  18. </dependency>
  19. <!-- DEMO 示例模块 -->
  20. <dependency>
  21. <groupId>org.jeecgframework.boot</groupId>
  22. <artifactId>jeecg-module-demo</artifactId>
  23. <version>${jeecgboot.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.cuidian.srm</groupId>
  27. <artifactId>srm-module-code</artifactId>
  28. <version>1.0.0</version>
  29. </dependency>
  30. <!-- flyway 数据库自动升级 -->
  31. <dependency>
  32. <groupId>org.flywaydb</groupId>
  33. <artifactId>flyway-core</artifactId>
  34. </dependency>
  35. </dependencies>
  36. <build>
  37. <plugins>
  38. <plugin>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-maven-plugin</artifactId>
  41. </plugin>
  42. </plugins>
  43. </build>
  44. </project>