pom.xml 665 B

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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>spring-boot</artifactId>
  7. <groupId>com.flyhigh</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>plugin</artifactId>
  12. <name>plugin</name>
  13. <packaging>pom</packaging>
  14. <modules>
  15. <module>apidoc</module>
  16. <module>mybatis-generate-maven-plugin</module>
  17. </modules>
  18. </project>