pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. <!--继承信息-->
  6. <parent>
  7. <groupId>com.xmnk</groupId>
  8. <artifactId>springboot-parent</artifactId>
  9. <version>0.0.1-SNAPSHOT</version>
  10. </parent>
  11. <groupId>com.xmnk</groupId>
  12. <artifactId>TuPianHeCheng</artifactId>
  13. <version>1.0</version>
  14. <name>TuPianHeCheng</name>
  15. <description>Demo project for Spring Boot</description>
  16. <dependencies>
  17. <!--依赖其他子模块-->
  18. <dependency>
  19. <groupId>com.xmnk</groupId>
  20. <artifactId>springboot-base</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>5.1.29</version>
  44. </dependency>-->
  45. <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
  46. <dependency>
  47. <groupId>mysql</groupId>
  48. <artifactId>mysql-connector-java</artifactId>
  49. <version>8.0.20</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>tk.mybatis</groupId>
  53. <artifactId>mapper</artifactId>
  54. <version>4.0.0</version>
  55. </dependency>
  56. </dependencies>
  57. </plugin>
  58. </plugins>
  59. </build>
  60. </project>