pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. <!-- Http 请求工具 -->
  24. <dependency>
  25. <groupId>com.dtflys.forest</groupId>
  26. <artifactId>forest-spring-boot-starter</artifactId>
  27. <version>1.5.26</version>
  28. </dependency>
  29. </dependencies>
  30. <build>
  31. <plugins>
  32. <plugin>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-maven-plugin</artifactId>
  35. </plugin>
  36. <!-- mybatis generator自动生成代码 -->
  37. <plugin>
  38. <groupId>org.mybatis.generator</groupId>
  39. <artifactId>mybatis-generator-maven-plugin</artifactId>
  40. <version>1.3.2</version>
  41. <configuration>
  42. <verbose>true</verbose>
  43. <overwrite>true</overwrite>
  44. </configuration>
  45. <dependencies>
  46. <!-- <dependency>
  47. <groupId>mysql</groupId>
  48. <artifactId>mysql-connector-java</artifactId>
  49. <version>5.1.29</version>
  50. </dependency>-->
  51. <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
  52. <dependency>
  53. <groupId>mysql</groupId>
  54. <artifactId>mysql-connector-java</artifactId>
  55. <version>8.0.20</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>tk.mybatis</groupId>
  59. <artifactId>mapper</artifactId>
  60. <version>4.0.0</version>
  61. </dependency>
  62. </dependencies>
  63. </plugin>
  64. </plugins>
  65. </build>
  66. </project>