pom.xml 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.sunwin.netty</groupId>
  5. <artifactId>bmp-netty</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <properties>
  8. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  9. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  10. <!-- <project.basedir>E:\IDEAWorkSpace\ROBOT-APP\code\SW_BIRD_MS\02.Development\bmp-netty</project.basedir>-->
  11. <java.version>1.8</java.version>
  12. <skipTests>true</skipTests>
  13. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  14. <spring.cloud-version>2020.0.3</spring.cloud-version>
  15. <spring-cloud-alibaba-version>2021.1</spring-cloud-alibaba-version>
  16. <log4j2.version>2.17.2</log4j2.version>
  17. </properties>
  18. <parent>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-parent</artifactId>
  21. <version>2.5.4</version>
  22. <relativePath/> <!-- lookup parent from repository -->
  23. </parent>
  24. <dependencyManagement>
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.springframework.cloud</groupId>
  28. <artifactId>spring-cloud-dependencies</artifactId>
  29. <version>${spring.cloud-version}</version>
  30. <type>pom</type>
  31. <scope>import</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.alibaba.cloud</groupId>
  35. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  36. <version>${spring-cloud-alibaba-version}</version>
  37. <type>pom</type>
  38. <scope>import</scope>
  39. </dependency>
  40. </dependencies>
  41. </dependencyManagement>
  42. <dependencies>
  43. <dependency>
  44. <groupId>com.sunwin.common</groupId>
  45. <artifactId>bmp-common</artifactId>
  46. <version>0.0.1-SNAPSHOT</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.yaml</groupId>
  50. <artifactId>snakeyaml</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-devtools</artifactId>
  55. <optional>true</optional>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.cloud</groupId>
  59. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-test</artifactId>
  64. <scope>test</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>junit</groupId>
  68. <artifactId>junit</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-web</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-starter-actuator</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-starter-data-redis</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.springframework.cloud</groupId>
  88. <artifactId>spring-cloud-loadbalancer</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.springframework.cloud</groupId>
  92. <artifactId>spring-cloud-starter-openfeign</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.alibaba.cloud</groupId>
  96. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.alibaba.cloud</groupId>
  100. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  101. </dependency>
  102. <!-- jwtToken -->
  103. <dependency>
  104. <groupId>io.jsonwebtoken</groupId>
  105. <artifactId>jjwt</artifactId>
  106. <version>0.9.0</version>
  107. </dependency>
  108. <!-- 使@DateTimeFormat注解将字符串转日期 -->
  109. <dependency>
  110. <groupId>joda-time</groupId>
  111. <artifactId>joda-time</artifactId>
  112. <version>2.10.10</version>
  113. </dependency>
  114. <!--swagger用于定义API文档 -->
  115. <dependency>
  116. <groupId>io.springfox</groupId>
  117. <artifactId>springfox-swagger2</artifactId>
  118. <version>2.9.2</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>io.springfox</groupId>
  122. <artifactId>springfox-swagger-ui</artifactId>
  123. <version>2.9.2</version>
  124. </dependency>
  125. <!--美化swagger -->
  126. <dependency>
  127. <groupId>com.github.xiaoymin</groupId>
  128. <artifactId>swagger-bootstrap-ui</artifactId>
  129. <version>1.7</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>redis.clients</groupId>
  133. <artifactId>jedis</artifactId>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.redisson</groupId>
  137. <artifactId>redisson</artifactId>
  138. <version>3.9.1</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>mysql</groupId>
  142. <artifactId>mysql-connector-java</artifactId>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.springframework.boot</groupId>
  146. <artifactId>spring-boot-starter-jdbc</artifactId>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.mybatis.spring.boot</groupId>
  150. <artifactId>mybatis-spring-boot-starter</artifactId>
  151. <version>1.3.2</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>com.alibaba</groupId>
  155. <artifactId>druid</artifactId>
  156. <version>1.1.10</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>com.github.pagehelper</groupId>
  160. <artifactId>pagehelper-spring-boot-starter</artifactId>
  161. <version>1.2.5</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>com.google.zxing</groupId>
  165. <artifactId>core</artifactId>
  166. <version>3.3.3</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>com.google.zxing</groupId>
  170. <artifactId>javase</artifactId>
  171. <version>3.3.3</version>
  172. </dependency>
  173. <!--fastdfs -->
  174. <dependency>
  175. <groupId>org.csource</groupId>
  176. <artifactId>fastdfs-client-java</artifactId>
  177. <version>1.27-SNAPSHOT</version>
  178. <scope>system</scope>
  179. <systemPath>${project.basedir}/lib/fastdfs-client-java-1.27-SNAPSHOT.jar</systemPath>
  180. </dependency>
  181. <!--ROMA空侧业务系统 -->
  182. <dependency>
  183. <groupId>com.alibaba</groupId>
  184. <artifactId>fastjson</artifactId>
  185. <version>2.0.9</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>com.huawei.</groupId>
  189. <artifactId>mqs-client</artifactId>
  190. <version>20.0.0.SPC9-SNAPSHOT</version>
  191. <scope>system</scope>
  192. <systemPath>${project.basedir}/lib/mqs-client-20.0.0.SPC9-SNAPSHOT.jar</systemPath>
  193. </dependency>
  194. <dependency>
  195. <groupId>com.huawei.</groupId>
  196. <artifactId>mqs-common</artifactId>
  197. <version>20.0.0.SPC9</version>
  198. <scope>system</scope>
  199. <systemPath>${project.basedir}/lib/mqs-common-20.0.0.SPC9.jar</systemPath>
  200. </dependency>
  201. <dependency>
  202. <groupId>com.huawei.</groupId>
  203. <artifactId>rocketmq-common</artifactId>
  204. <version>4.2.0</version>
  205. <scope>system</scope>
  206. <systemPath>${project.basedir}/lib/rocketmq-common-4.2.0.jar</systemPath>
  207. </dependency>
  208. <dependency>
  209. <groupId>com.huawei.</groupId>
  210. <artifactId>rocketmq-remoting</artifactId>
  211. <version>4.2.0</version>
  212. <scope>system</scope>
  213. <systemPath>${project.basedir}/lib/rocketmq-remoting-4.2.0.jar</systemPath>
  214. </dependency>
  215. <!--websocket -->
  216. <dependency>
  217. <groupId>org.springframework.boot</groupId>
  218. <artifactId>spring-boot-starter-websocket</artifactId>
  219. </dependency>
  220. <dependency>
  221. <groupId>io.netty</groupId>
  222. <artifactId>netty-all</artifactId>
  223. </dependency>
  224. <!-- Google开源的一种数据传输协议 -->
  225. <!-- <dependency> -->
  226. <!-- <groupId>io.protostuff</groupId> -->
  227. <!-- <artifactId>protostuff-core</artifactId> -->
  228. <!-- <version>1.7.2</version> -->
  229. <!-- </dependency> -->
  230. <!-- <dependency> -->
  231. <!-- <groupId>io.protostuff</groupId> -->
  232. <!-- <artifactId>protostuff-runtime</artifactId> -->
  233. <!-- <version>1.7.2</version> -->
  234. <!-- </dependency> -->
  235. </dependencies>
  236. <build>
  237. <plugins>
  238. <plugin>
  239. <groupId>org.springframework.boot</groupId>
  240. <artifactId>spring-boot-maven-plugin</artifactId>
  241. <configuration>
  242. <!-- <source>1.8</source>-->
  243. <!-- <target>1.8</target>-->
  244. <!-- <encoding>UTF-8</encoding>-->
  245. <includeSystemScope>true</includeSystemScope>
  246. </configuration>
  247. </plugin>
  248. </plugins>
  249. </build>
  250. </project>