pom.xml 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  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. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.2.5.RELEASE</version>
  9. </parent>
  10. <groupId>com.example</groupId>
  11. <artifactId>boat</artifactId>
  12. <version>1.0-SNAPSHOT</version>
  13. <packaging>jar</packaging>
  14. <properties>
  15. <maven.compiler.source>8</maven.compiler.source>
  16. <maven.compiler.target>8</maven.compiler.target>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <!-- spring boot -->
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-parent</artifactId>
  24. <version>2.2.5.RELEASE</version>
  25. <type>pom</type>
  26. <scope>import</scope>
  27. </dependency>
  28. <!-- lombok -->
  29. <dependency>
  30. <groupId>org.projectlombok</groupId>
  31. <artifactId>lombok</artifactId>
  32. <version>1.18.20</version>
  33. <optional>true</optional>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.postgresql</groupId>
  37. <artifactId>postgresql</artifactId>
  38. </dependency>
  39. <!-- 阿里数据库连接池 -->
  40. <dependency>
  41. <groupId>com.alibaba</groupId>
  42. <artifactId>druid-spring-boot-starter</artifactId>
  43. <version>1.2.20</version>
  44. </dependency>
  45. <!--fastjson-->
  46. <dependency>
  47. <groupId>com.alibaba</groupId>
  48. <artifactId>fastjson</artifactId>
  49. <version>1.2.76</version>
  50. </dependency>
  51. <!--mybatis-->
  52. <dependency>
  53. <groupId>com.baomidou</groupId>
  54. <artifactId>mybatis-plus-boot-starter</artifactId>
  55. <version>3.4.3.1</version>
  56. </dependency>
  57. <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
  58. <dependency>
  59. <groupId>mysql</groupId>
  60. <artifactId>mysql-connector-java</artifactId>
  61. <version>8.0.26</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.github.xiaoymin</groupId>
  65. <artifactId>knife4j-spring-ui</artifactId>
  66. <version>2.0.7</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.hibernate.validator</groupId>
  70. <artifactId>hibernate-validator</artifactId>
  71. <version>6.0.0.Final</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter-data-redis</artifactId>
  76. <version>2.3.5.RELEASE</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>redis.clients</groupId>
  80. <artifactId>jedis</artifactId>
  81. <version>3.6.0</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.alibaba.fastjson2</groupId>
  85. <artifactId>fastjson2</artifactId>
  86. <version>2.0.43</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.apache.commons</groupId>
  90. <artifactId>commons-lang3</artifactId>
  91. </dependency>
  92. <!-- io常用工具类 -->
  93. <dependency>
  94. <groupId>commons-io</groupId>
  95. <artifactId>commons-io</artifactId>
  96. <version>2.13.0</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.apache.commons</groupId>
  100. <artifactId>commons-pool2</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>commons-collections</groupId>
  104. <artifactId>commons-collections</artifactId>
  105. <version>3.2.2</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.shanghaigeography</groupId>
  109. <artifactId>Infrastructure</artifactId>
  110. <version>1.0-SNAPSHOT</version>
  111. <scope>system</scope>
  112. <systemPath>${pom.basedir}/lib/Infrastructure-1.1-SNAPSHOT.jar</systemPath>
  113. </dependency>
  114. <dependency>
  115. <groupId>commons-codec</groupId>
  116. <artifactId>commons-codec</artifactId>
  117. <version>1.14</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.springframework.boot</groupId>
  121. <artifactId>spring-boot-starter-websocket</artifactId>
  122. <version>2.5.3</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>cn.hutool</groupId>
  126. <artifactId>hutool-all</artifactId>
  127. <version>5.7.22</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.springframework.boot</groupId>
  131. <artifactId>spring-boot-starter-web</artifactId>
  132. <exclusions>
  133. <exclusion>
  134. <artifactId>spring-boot-starter</artifactId>
  135. <groupId>org.springframework.boot</groupId>
  136. </exclusion>
  137. </exclusions>
  138. </dependency>
  139. <dependency>
  140. <groupId>junit</groupId>
  141. <artifactId>junit</artifactId>
  142. <version>4.12</version>
  143. <scope>test</scope>
  144. <exclusions>
  145. <exclusion>
  146. <groupId>org.junit.vintage</groupId>
  147. <artifactId>junit-vintage-engine</artifactId>
  148. </exclusion>
  149. </exclusions>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.springframework.boot</groupId>
  153. <artifactId>spring-boot-starter-test</artifactId>
  154. <scope>test</scope>
  155. </dependency>
  156. </dependencies>
  157. <build>
  158. <plugins>
  159. <plugin>
  160. <groupId>org.springframework.boot</groupId>
  161. <artifactId>spring-boot-maven-plugin</artifactId>
  162. <configuration>
  163. <includeSystemScope>true</includeSystemScope>
  164. </configuration>
  165. </plugin>
  166. <plugin>
  167. <groupId>org.springframework.boot</groupId>
  168. <artifactId>spring-boot-maven-plugin</artifactId>
  169. <version>2.0.3.RELEASE</version>
  170. <configuration>
  171. <mainClass>com.shcd.boat.BoatApplication</mainClass>
  172. </configuration>
  173. <executions>
  174. <execution>
  175. <goals>
  176. <goal>repackage</goal>
  177. </goals>
  178. </execution>
  179. </executions>
  180. </plugin>
  181. </plugins>
  182. </build>
  183. </project>