pom.xml 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <parent>
  3. <groupId>org.springframework.boot</groupId>
  4. <artifactId>spring-boot-starter-parent</artifactId>
  5. <version>2.2.4.RELEASE</version>
  6. </parent>
  7. <modelVersion>4.0.0</modelVersion>
  8. <artifactId>base-api</artifactId>
  9. <packaging>jar</packaging>
  10. <description>base-api</description>
  11. <version>0.0.1-SNAPSHOT</version>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  15. <java.version>1.8</java.version>
  16. <junit.version>4.12</junit.version>
  17. <jedis.version>2.9.0</jedis.version>
  18. <druid.version>1.1.13</druid.version>
  19. <mybatisplus.version>3.1.2</mybatisplus.version>
  20. <mysql.version>8.0.16</mysql.version>
  21. <mssql.version>4.0</mssql.version>
  22. <oracle.version>11.2.0.3</oracle.version>
  23. <commons.lang.version>2.6</commons.lang.version>
  24. <commons.fileupload.version>1.3.1</commons.fileupload.version>
  25. <commons.io.version>2.5</commons.io.version>
  26. <commons.codec.version>1.10</commons.codec.version>
  27. <fastjson.version>1.2.70</fastjson.version>
  28. <joda.time.version>2.9.9</joda.time.version>
  29. <gson.version>2.8.5</gson.version>
  30. <lombok.version>1.18.4</lombok.version>
  31. <swagger.version>2.7.0</swagger.version>
  32. </properties>
  33. <dependencies>
  34. <dependency>
  35. <groupId>junit</groupId>
  36. <artifactId>junit</artifactId>
  37. <version>${junit.version}</version>
  38. <scope>test</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-test</artifactId>
  43. <scope>test</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-web</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-aop</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework</groupId>
  55. <artifactId>spring-context-support</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-data-redis</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-configuration-processor</artifactId>
  64. <optional>true</optional>
  65. </dependency>
  66. <dependency>
  67. <groupId>redis.clients</groupId>
  68. <artifactId>jedis</artifactId>
  69. <version>${jedis.version}</version>
  70. </dependency>
  71. <!-- mysql驱动 -->
  72. <dependency>
  73. <groupId>mysql</groupId>
  74. <artifactId>mysql-connector-java</artifactId>
  75. <version>${mysql.version}</version>
  76. </dependency>
  77. <!-- oracle驱动 -->
  78. <dependency>
  79. <groupId>com.oracle</groupId>
  80. <artifactId>ojdbc6</artifactId>
  81. <version>${oracle.version}</version>
  82. </dependency>
  83. <!-- mssql驱动 -->
  84. <dependency>
  85. <groupId>com.microsoft.sqlserver</groupId>
  86. <artifactId>sqljdbc4</artifactId>
  87. <version>${mssql.version}</version>
  88. </dependency>
  89. <!-- postgresql驱动 -->
  90. <dependency>
  91. <groupId>org.postgresql</groupId>
  92. <artifactId>postgresql</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.alibaba</groupId>
  96. <artifactId>druid-spring-boot-starter</artifactId>
  97. <version>${druid.version}</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.baomidou</groupId>
  101. <artifactId>mybatis-plus-boot-starter</artifactId>
  102. <version>${mybatisplus.version}</version>
  103. <exclusions>
  104. <exclusion>
  105. <groupId>com.baomidou</groupId>
  106. <artifactId>mybatis-plus-generator</artifactId>
  107. </exclusion>
  108. </exclusions>
  109. </dependency>
  110. <dependency>
  111. <groupId>com.alibaba</groupId>
  112. <artifactId>fastjson</artifactId>
  113. <version>${fastjson.version}</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>commons-lang</groupId>
  117. <artifactId>commons-lang</artifactId>
  118. <version>${commons.lang.version}</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>commons-fileupload</groupId>
  122. <artifactId>commons-fileupload</artifactId>
  123. <version>${commons.fileupload.version}</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>commons-io</groupId>
  127. <artifactId>commons-io</artifactId>
  128. <version>${commons.io.version}</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>commons-codec</groupId>
  132. <artifactId>commons-codec</artifactId>
  133. <version>${commons.codec.version}</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>joda-time</groupId>
  137. <artifactId>joda-time</artifactId>
  138. <version>${joda.time.version}</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>com.google.code.gson</groupId>
  142. <artifactId>gson</artifactId>
  143. <version>${gson.version}</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.projectlombok</groupId>
  147. <artifactId>lombok</artifactId>
  148. <version>${lombok.version}</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>io.springfox</groupId>
  152. <artifactId>springfox-swagger2</artifactId>
  153. <version>${swagger.version}</version>
  154. </dependency>
  155. <dependency>
  156. <groupId>io.springfox</groupId>
  157. <artifactId>springfox-swagger-ui</artifactId>
  158. <version>${swagger.version}</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>dou.dou</groupId>
  162. <artifactId>doudian</artifactId>
  163. <version>0.1.1</version>
  164. <scope>system</scope>
  165. <systemPath>${project.basedir}/src/main/resources/lib/doudian-sdk-java-1.0.0-20220509171318-sources.jar</systemPath>
  166. </dependency>
  167. </dependencies>
  168. <!-- 阿里云maven仓库 -->
  169. <repositories>
  170. <repository>
  171. <id>public</id>
  172. <name>aliyun nexus</name>
  173. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  174. <releases>
  175. <enabled>true</enabled>
  176. </releases>
  177. </repository>
  178. </repositories>
  179. <pluginRepositories>
  180. <pluginRepository>
  181. <id>public</id>
  182. <name>aliyun nexus</name>
  183. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  184. <releases>
  185. <enabled>true</enabled>
  186. </releases>
  187. <snapshots>
  188. <enabled>false</enabled>
  189. </snapshots>
  190. </pluginRepository>
  191. </pluginRepositories>
  192. <build>
  193. <plugins>
  194. <plugin>
  195. <groupId>org.springframework.boot</groupId>
  196. <artifactId>spring-boot-maven-plugin</artifactId>
  197. <configuration>
  198. <fork>true</fork>
  199. <includeSystemScope>true</includeSystemScope>
  200. </configuration>
  201. </plugin>
  202. </plugins>
  203. </build>
  204. </project>