.flattened-pom.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.aivfo</groupId>
  7. <artifactId>aivfo-model-parent</artifactId>
  8. <version>1.2.0-SNAPSHOT</version>
  9. <relativePath>../../ability/aivfo-framework-build/aivfo-project-build/aivfo-model-parent/pom.xml</relativePath>
  10. </parent>
  11. <groupId>com.aivfo</groupId>
  12. <artifactId>aivfo-mybatis-plus-spring-boot</artifactId>
  13. <version>1.1.0-SNAPSHOT</version>
  14. <packaging>pom</packaging>
  15. <modules>
  16. <module>aivfo-mybatis-plus-spring-boot-autoconfigure</module>
  17. <module>aivfo-mybatis-plus-spring-boot-core</module>
  18. <module>aivfo-mybatis-plus-spring-boot-starter</module>
  19. </modules>
  20. <properties>
  21. <p6spy.version>3.9.1</p6spy.version>
  22. </properties>
  23. <dependencyManagement>
  24. <dependencies>
  25. <dependency>
  26. <groupId>com.aivfo</groupId>
  27. <artifactId>aivfo-mybatis-plus-spring-boot-autoconfigure</artifactId>
  28. <version>${revision}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.aivfo</groupId>
  32. <artifactId>aivfo-mybatis-plus-spring-boot-core</artifactId>
  33. <version>${revision}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.aivfo</groupId>
  37. <artifactId>aivfo-mybatis-plus-spring-boot-starter</artifactId>
  38. <version>${revision}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>p6spy</groupId>
  42. <artifactId>p6spy</artifactId>
  43. <version>${p6spy.version}</version>
  44. </dependency>
  45. </dependencies>
  46. </dependencyManagement>
  47. </project>