pom.xml 11 KB

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