pom.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.xmnk</groupId>
  6. <artifactId>springboot-base</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>springboot-base</name>
  9. <description>Demo project for Spring Boot</description>
  10. <!--继承信息-->
  11. <parent>
  12. <groupId>com.xmnk</groupId>
  13. <artifactId>springboot-parent</artifactId>
  14. <version>0.0.1-SNAPSHOT</version>
  15. </parent>
  16. <dependencies>
  17. <!--依赖其他子模块-->
  18. <!-- <dependency>-->
  19. <!-- <groupId>com.xmnk</groupId>-->
  20. <!-- <artifactId>springboot-function</artifactId>-->
  21. <!-- <version>0.0.1-SNAPSHOT</version>-->
  22. <!-- </dependency>-->
  23. </dependencies>
  24. <build>
  25. <plugins>
  26. <!-- <plugin>-->
  27. <!-- <groupId>org.springframework.boot</groupId>-->
  28. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  29. <!-- </plugin>-->
  30. <!-- mybatis generator自动生成代码 -->
  31. <plugin>
  32. <groupId>org.mybatis.generator</groupId>
  33. <artifactId>mybatis-generator-maven-plugin</artifactId>
  34. <version>1.3.2</version>
  35. <configuration>
  36. <verbose>true</verbose>
  37. <overwrite>true</overwrite>
  38. </configuration>
  39. <dependencies>
  40. <dependency>
  41. <groupId>mysql</groupId>
  42. <artifactId>mysql-connector-java</artifactId>
  43. <version>8.0.20</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>tk.mybatis</groupId>
  47. <artifactId>mapper</artifactId>
  48. <version>4.0.0</version>
  49. </dependency>
  50. </dependencies>
  51. </plugin>
  52. </plugins>
  53. </build>
  54. </project>