pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>cn.superdesk.uniorder</groupId>
  7. <artifactId>superdesk-operation-center</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>superdesk-uniorder-service</artifactId>
  11. <!-- <version>0.0.1-SNAPSHOT</version>-->
  12. <!-- <packaging>jar</packaging>-->
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.projectlombok</groupId>
  16. <artifactId>lombok</artifactId>
  17. <version>${lombok.version}</version>
  18. <scope>provided</scope>
  19. </dependency>
  20. <!-- <dependency>-->
  21. <!-- <groupId>org.springframework.boot</groupId>-->
  22. <!-- <artifactId>spring-boot-starter-web</artifactId>-->
  23. <!-- </dependency>-->
  24. <!-- Spring Boot Dubbo 依赖 -->
  25. <!-- <dependency>-->
  26. <!-- <groupId>io.dubbo.springboot</groupId>-->
  27. <!-- <artifactId>spring-boot-starter-dubbo</artifactId>-->
  28. <!-- <version>${dubbo-spring-boot}</version>-->
  29. <!-- </dependency>-->
  30. <!-- Dubbo Spring Boot Starter -->
  31. <!-- Dubbo Spring Boot Starter -->
  32. <!-- <dependency>-->
  33. <!-- <groupId>com.alibaba.boot</groupId>-->
  34. <!-- <artifactId>dubbo-spring-boot-starter</artifactId>-->
  35. <!-- <version>0.2.1.RELEASE</version>-->
  36. <!-- </dependency>-->
  37. <dependency>
  38. <groupId>com.alibaba</groupId>
  39. <artifactId>dubbo</artifactId>
  40. <version>${dubbo.version}</version>
  41. </dependency>
  42. <!-- <dependency>-->
  43. <!-- <groupId>org.apache.curator</groupId>-->
  44. <!-- <artifactId>curator-recipes</artifactId>-->
  45. <!-- <version>2.13.0</version>-->
  46. <!-- </dependency>-->
  47. <dependency>
  48. <groupId>io.netty</groupId>
  49. <artifactId>netty-all</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.mybatis.spring.boot</groupId>
  53. <artifactId>mybatis-spring-boot-starter</artifactId>
  54. <!-- <version>1.3.0</version>-->
  55. <version>2.1.2</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-data-jpa</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>mysql</groupId>
  63. <artifactId>mysql-connector-java</artifactId>
  64. <!--<scope>runtime</scope>-->
  65. <version>${mysql.version}</version>
  66. </dependency>
  67. <!--mapper -->
  68. <!-- <dependency>-->
  69. <!-- <groupId>tk.mybatis</groupId>-->
  70. <!-- <artifactId>mapper-spring-boot-starter</artifactId>-->
  71. <!-- <version>1.2.4</version>-->
  72. <!-- </dependency>-->
  73. <dependency>
  74. <groupId>com.alibaba</groupId>
  75. <artifactId>druid</artifactId>
  76. <version>${druid.version}</version>
  77. <!-- <exclusions>-->
  78. <!-- <exclusion>-->
  79. <!-- <groupId>com.alibaba</groupId>-->
  80. <!-- <artifactId>tools</artifactId>-->
  81. <!-- </exclusion>-->
  82. <!-- </exclusions>-->
  83. </dependency>
  84. <!-- druid -->
  85. <dependency>
  86. <groupId>com.alibaba</groupId>
  87. <artifactId>druid-spring-boot-starter</artifactId>
  88. <version>1.1.21</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-starter-test</artifactId>
  93. <scope>test</scope>
  94. </dependency>
  95. <!--pagehelper -->
  96. <dependency>
  97. <groupId>com.github.pagehelper</groupId>
  98. <artifactId>pagehelper-spring-boot-starter</artifactId>
  99. <version>1.2.3</version>
  100. </dependency>
  101. <!-- <dependency>-->
  102. <!-- <groupId>org.slf4j</groupId>-->
  103. <!-- <artifactId>log4j-over-slf4j</artifactId>-->
  104. <!-- <version>1.7.25</version>-->
  105. <!-- </dependency>-->
  106. <!-- <dependency>-->
  107. <!-- <groupId>cn.superdesk.libs</groupId>-->
  108. <!-- <artifactId>superdesk-libs-common</artifactId>-->
  109. <!-- <version>${superdesk.libs.version}</version>-->
  110. <!-- </dependency>-->
  111. <dependency>
  112. <groupId>cn.superdesk.uniorder</groupId>
  113. <artifactId>superdesk-uniorder-common</artifactId>
  114. <version>${project.parent.version}</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>cn.superdesk.uniorder</groupId>
  118. <artifactId>superdesk-uniorder-common-mq-redis</artifactId>
  119. <version>${project.parent.version}</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>cn.superdesk.uniorder</groupId>
  123. <artifactId>superdesk-uniorder-common-queue</artifactId>
  124. <version>${project.parent.version}</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>cn.superdesk.uniorder</groupId>
  128. <artifactId>superdesk-uniorder-openapicall</artifactId>
  129. <version>${project.parent.version}</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>cn.superdesk.uniorder</groupId>
  133. <artifactId>superdesk-uniorder-dto</artifactId>
  134. <version>${project.parent.version}</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>cn.superdesk.uniorder</groupId>
  138. <artifactId>superdesk-uniorder-dao</artifactId>
  139. <version>${project.parent.version}</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>cn.superdesk.uniorder</groupId>
  143. <artifactId>superdesk-uniorder-dubbo-facade</artifactId>
  144. <version>${project.parent.version}</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>cn.superdesk.uniorder</groupId>
  148. <artifactId>superdesk-uniorder-dubbo-consumer</artifactId>
  149. <version>${project.parent.version}</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>cn.superdesk.app.transfer</groupId>
  153. <artifactId>superdesk-transfer-supercloud-dto-receive</artifactId>
  154. <version>0.0.1-SNAPSHOT</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>cn.superdesk.uniorder.libs</groupId>
  158. <artifactId>superdesk-uniorder-lib-algorithm</artifactId>
  159. <version>${project.parent.version}</version>
  160. </dependency>
  161. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-data-redis -->
  162. <dependency>
  163. <groupId>org.springframework.boot</groupId>
  164. <artifactId>spring-boot-starter-data-redis</artifactId>
  165. <version>${spring-boot.version}</version>
  166. <exclusions>
  167. <exclusion>
  168. <groupId>redis.clients</groupId>
  169. <artifactId>jedis</artifactId>
  170. </exclusion>
  171. <exclusion>
  172. <groupId>io.lettuce</groupId>
  173. <artifactId>lettuce-core</artifactId>
  174. </exclusion>
  175. </exclusions>
  176. </dependency>
  177. <!-- jedis -->
  178. <dependency>
  179. <groupId>redis.clients</groupId>
  180. <artifactId>jedis</artifactId>
  181. <!-- <version>2.9.0</version>-->
  182. <!-- <version>2.9.1</version>-->
  183. <!-- <version>2.9.3</version>-->
  184. <!-- <version>3.1.0</version>-->
  185. </dependency>
  186. <!-- https://mvnrepository.com/artifact/com.google.collections/google-collections -->
  187. <dependency>
  188. <groupId>com.google.collections</groupId>
  189. <artifactId>google-collections</artifactId>
  190. <version>1.0</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>com.google.code.gson</groupId>
  194. <artifactId>gson</artifactId>
  195. </dependency>
  196. <!-- kafka -->
  197. <dependency>
  198. <groupId>org.springframework.kafka</groupId>
  199. <artifactId>spring-kafka</artifactId>
  200. <!-- <version>2.1.6.RELEASE</version>-->
  201. </dependency>
  202. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi -->
  203. <dependency>
  204. <groupId>org.apache.poi</groupId>
  205. <artifactId>poi</artifactId>
  206. <version>3.17</version>
  207. </dependency>
  208. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
  209. <dependency>
  210. <groupId>org.apache.poi</groupId>
  211. <artifactId>poi-ooxml</artifactId>
  212. <version>3.17</version>
  213. </dependency>
  214. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml-schemas -->
  215. <dependency>
  216. <groupId>org.apache.poi</groupId>
  217. <artifactId>poi-ooxml-schemas</artifactId>
  218. <version>3.17</version>
  219. </dependency>
  220. <!-- https://mvnrepository.com/artifact/com.alibaba/easyexcel -->
  221. <dependency>
  222. <groupId>com.alibaba</groupId>
  223. <artifactId>easyexcel</artifactId>
  224. <version>2.2.7</version>
  225. </dependency>
  226. <!-- https://mvnrepository.com/artifact/dom4j/dom4j -->
  227. <dependency>
  228. <groupId>dom4j</groupId>
  229. <artifactId>dom4j</artifactId>
  230. <version>1.6.1</version>
  231. </dependency>
  232. </dependencies>
  233. <!-- <profiles>-->
  234. <!-- <profile>-->
  235. <!-- &lt;!&ndash; 本地开发环境 &ndash;&gt;-->
  236. <!-- <id>dev</id>-->
  237. <!-- <properties>-->
  238. <!-- <profiles.active>dev</profiles.active>-->
  239. <!-- </properties>-->
  240. <!-- &lt;!&ndash;默认启用的是dev环境配置&ndash;&gt;-->
  241. <!-- <activation>-->
  242. <!-- <activeByDefault>true</activeByDefault>-->
  243. <!-- </activation>-->
  244. <!-- </profile>-->
  245. <!-- <profile>-->
  246. <!-- &lt;!&ndash; 测试环境 &ndash;&gt;-->
  247. <!-- <id>test</id>-->
  248. <!-- <properties>-->
  249. <!-- <profiles.active>test</profiles.active>-->
  250. <!-- </properties>-->
  251. <!-- </profile>-->
  252. <!-- <profile>-->
  253. <!-- &lt;!&ndash; UAT环境 &ndash;&gt;-->
  254. <!-- <id>uat</id>-->
  255. <!-- <properties>-->
  256. <!-- <profiles.active>uat</profiles.active>-->
  257. <!-- </properties>-->
  258. <!-- </profile>-->
  259. <!-- <profile>-->
  260. <!-- &lt;!&ndash; 生产环境 &ndash;&gt;-->
  261. <!-- <id>prod</id>-->
  262. <!-- <properties>-->
  263. <!-- <profiles.active>prod</profiles.active>-->
  264. <!-- </properties>-->
  265. <!-- </profile>-->
  266. <!-- <profile>-->
  267. <!-- &lt;!&ndash; 生产环境 侨城汇 &ndash;&gt;-->
  268. <!-- <id>qch</id>-->
  269. <!-- <properties>-->
  270. <!-- <profiles.active>qch</profiles.active>-->
  271. <!-- </properties>-->
  272. <!-- </profile>-->
  273. <!-- </profiles>-->
  274. <!-- <build>-->
  275. <!-- <plugins>-->
  276. <!-- <plugin>-->
  277. <!-- <groupId>org.springframework.boot</groupId>-->
  278. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  279. <!-- </plugin>-->
  280. <!-- </plugins>-->
  281. <!-- </build>-->
  282. </project>