pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.hw</groupId>
  7. <artifactId>pull-openpricedata</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>2.2.10.RELEASE</version>
  14. </parent>
  15. <dependencies>
  16. <!--<dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starters</artifactId>
  19. <version>2.2.11.RELEASE</version>
  20. </dependency>-->
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. <version>2.2.10.RELEASE</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>mysql</groupId>
  28. <artifactId>mysql-connector-java</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.alibaba</groupId>
  32. <artifactId>druid</artifactId>
  33. <version>1.2.2</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.github.pagehelper</groupId>
  37. <artifactId>pagehelper-spring-boot-starter</artifactId>
  38. <version>1.3.0</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.mybatis.spring.boot</groupId>
  42. <artifactId>mybatis-spring-boot-starter</artifactId>
  43. <version>2.1.3</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.mybatis</groupId>
  47. <artifactId>mybatis</artifactId>
  48. <version>3.5.5</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.projectlombok</groupId>
  52. <artifactId>lombok</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.alibaba</groupId>
  56. <artifactId>fastjson</artifactId>
  57. <version>1.2.74</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.apache.httpcomponents</groupId>
  61. <artifactId>httpclient</artifactId>
  62. </dependency>
  63. <!-- swagger2 -->
  64. <dependency>
  65. <groupId>io.springfox</groupId>
  66. <artifactId>springfox-swagger2</artifactId>
  67. <version>2.9.2</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>io.springfox</groupId>
  71. <artifactId>springfox-swagger-ui</artifactId>
  72. <version>2.9.2</version>
  73. </dependency>
  74. </dependencies>
  75. <build>
  76. <plugins>
  77. <!-- 自生产代码配置 -->
  78. <plugin>
  79. <groupId>org.mybatis.generator</groupId>
  80. <artifactId>mybatis-generator-maven-plugin</artifactId>
  81. <version>1.3.5</version>
  82. <dependencies>
  83. <dependency>
  84. <groupId> mysql</groupId>
  85. <artifactId> mysql-connector-java</artifactId>
  86. <version>5.1.39</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.mybatis.generator</groupId>
  90. <artifactId>mybatis-generator-core</artifactId>
  91. <version>1.3.5</version>
  92. </dependency>
  93. </dependencies>
  94. <executions>
  95. <execution>
  96. <id>Generate MyBatis Artifacts</id>
  97. <phase>deploy</phase>
  98. <goals>
  99. <goal>generate</goal>
  100. </goals>
  101. </execution>
  102. </executions>
  103. <configuration>
  104. <!--允许移动生成的文件 -->
  105. <verbose>true</verbose>
  106. <!-- 是否覆盖 -->
  107. <overwrite>true</overwrite>
  108. <!-- 自动生成的配置 -->
  109. <configurationFile>src/main/resources/generatorConfig.xml</configurationFile>
  110. </configuration>
  111. </plugin>
  112. <!-- 打包方式 -->
  113. <plugin>
  114. <groupId>org.springframework.boot</groupId>
  115. <artifactId>spring-boot-maven-plugin</artifactId>
  116. <executions>
  117. <execution>
  118. <goals>
  119. <goal>repackage</goal>
  120. </goals>
  121. </execution>
  122. </executions>
  123. </plugin>
  124. </plugins>
  125. </build>
  126. </project>