bo-8.0.7.pom 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.hotent</groupId>
  7. <artifactId>eip</artifactId>
  8. <version>8.0.7</version>
  9. </parent>
  10. <artifactId>bo</artifactId>
  11. <packaging>jar</packaging>
  12. <dependencies>
  13. <!-- Spring boot 测试 -->
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-test</artifactId>
  17. <scope>test</scope>
  18. </dependency>
  19. <!-- flyway自动执行sql -->
  20. <dependency>
  21. <groupId>org.flywaydb</groupId>
  22. <artifactId>flyway-core</artifactId>
  23. <scope>test</scope>
  24. </dependency>
  25. <!-- h2数据库用于单元测试 -->
  26. <dependency>
  27. <groupId>com.h2database</groupId>
  28. <artifactId>h2</artifactId>
  29. <scope>test</scope>
  30. </dependency>
  31. <!-- table -->
  32. <dependency>
  33. <groupId>com.hotent</groupId>
  34. <artifactId>table</artifactId>
  35. <version>${parent.version}</version>
  36. </dependency>
  37. </dependencies>
  38. </project>