pom.xml 13 KB

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