pom.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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>aivfo-model-parent</artifactId>
  7. <groupId>com.aivfo</groupId>
  8. <version>${revision}</version>
  9. <relativePath>
  10. ../../ability/aivfo-framework-build/aivfo-project-build/aivfo-model-parent/pom.xml
  11. </relativePath>
  12. </parent>
  13. <modelVersion>4.0.0</modelVersion>
  14. <version>1.1.0-SNAPSHOT</version>
  15. <artifactId>aivfo-mybatis-plus-spring-boot</artifactId>
  16. <packaging>pom</packaging>
  17. <modules>
  18. <module>aivfo-mybatis-plus-spring-boot-autoconfigure</module>
  19. <module>aivfo-mybatis-plus-spring-boot-core</module>
  20. <module>aivfo-mybatis-plus-spring-boot-starter</module>
  21. </modules>
  22. <properties>
  23. <p6spy.version>3.9.1</p6spy.version>
  24. </properties>
  25. <dependencyManagement>
  26. <dependencies>
  27. <dependency>
  28. <groupId>com.aivfo</groupId>
  29. <artifactId>aivfo-mybatis-plus-spring-boot-autoconfigure</artifactId>
  30. <version>${revision}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.aivfo</groupId>
  34. <artifactId>aivfo-mybatis-plus-spring-boot-core</artifactId>
  35. <version>${revision}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.aivfo</groupId>
  39. <artifactId>aivfo-mybatis-plus-spring-boot-starter</artifactId>
  40. <version>${revision}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>p6spy</groupId>
  44. <artifactId>p6spy</artifactId>
  45. <version>${p6spy.version}</version>
  46. </dependency>
  47. </dependencies>
  48. </dependencyManagement>
  49. </project>