pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306
  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/maven-v4_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-web</artifactId>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.springframework.boot</groupId>
  14. <artifactId>spring-boot-starter-web</artifactId>
  15. </dependency>
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  19. </dependency>
  20. <!-- <dependency>-->
  21. <!-- <groupId>io.dubbo.springboot</groupId>-->
  22. <!-- <artifactId>spring-boot-starter-dubbo</artifactId>-->
  23. <!-- <version>${dubbo-spring-boot}</version>-->
  24. <!-- </dependency>-->
  25. <!-- Dubbo Spring Boot Starter -->
  26. <!-- <dependency>-->
  27. <!-- <groupId>org.apache.dubbo</groupId>-->
  28. <!-- <artifactId>dubbo-spring-boot-starter</artifactId>-->
  29. <!-- <version>2.7.6</version>-->
  30. <!-- </dependency>-->
  31. <dependency>
  32. <groupId>com.alibaba.boot</groupId>
  33. <artifactId>dubbo-spring-boot-starter</artifactId>
  34. <version>0.2.1.RELEASE</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.alibaba</groupId>
  38. <artifactId>dubbo</artifactId>
  39. <version>2.6.5</version>
  40. <scope>compile</scope>
  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>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-test</artifactId>
  50. <scope>test</scope>
  51. </dependency>
  52. <!-- kafka -->
  53. <dependency>
  54. <groupId>org.springframework.kafka</groupId>
  55. <artifactId>spring-kafka</artifactId>
  56. <!-- <version>2.1.6.RELEASE</version>-->
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-mail</artifactId>
  61. </dependency>
  62. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi -->
  63. <dependency>
  64. <groupId>org.apache.poi</groupId>
  65. <artifactId>poi</artifactId>
  66. <!-- <version>3.17</version>-->
  67. <version>4.1.2</version>
  68. </dependency>
  69. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
  70. <dependency>
  71. <groupId>org.apache.poi</groupId>
  72. <artifactId>poi-ooxml</artifactId>
  73. <!-- <version>3.17</version>-->
  74. <version>4.1.2</version>
  75. </dependency>
  76. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml-schemas -->
  77. <dependency>
  78. <groupId>org.apache.poi</groupId>
  79. <artifactId>poi-ooxml-schemas</artifactId>
  80. <!-- <version>3.17</version>-->
  81. <version>4.1.2</version>
  82. </dependency>
  83. <!-- https://mvnrepository.com/artifact/dom4j/dom4j -->
  84. <dependency>
  85. <groupId>dom4j</groupId>
  86. <artifactId>dom4j</artifactId>
  87. <version>1.6.1</version>
  88. </dependency>
  89. <!-- https://mvnrepository.com/artifact/org.quartz-scheduler/quartz -->
  90. <dependency>
  91. <groupId>org.quartz-scheduler</groupId>
  92. <artifactId>quartz</artifactId>
  93. <version>2.3.2</version>
  94. </dependency>
  95. <!-- 2.9.2-->
  96. <!-- &lt;!&ndash; https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 &ndash;&gt;-->
  97. <!-- <dependency>-->
  98. <!-- <groupId>io.springfox</groupId>-->
  99. <!-- <artifactId>springfox-swagger2</artifactId>-->
  100. <!-- <version>3.0.0</version>-->
  101. <!-- </dependency>-->
  102. <!-- &lt;!&ndash; https://mvnrepository.com/artifact/io.springfox/springfox-swagger-ui &ndash;&gt;-->
  103. <!-- <dependency>-->
  104. <!-- <groupId>io.springfox</groupId>-->
  105. <!-- <artifactId>springfox-swagger-ui</artifactId>-->
  106. <!-- <version>3.0.0</version>-->
  107. <!-- </dependency>-->
  108. <!-- &lt;!&ndash; https://mvnrepository.com/artifact/io.springfox/springfox-bean-validators &ndash;&gt;-->
  109. <!-- <dependency>-->
  110. <!-- <groupId>io.springfox</groupId>-->
  111. <!-- <artifactId>springfox-bean-validators</artifactId>-->
  112. <!-- <version>3.0.0</version>-->
  113. <!-- </dependency>-->
  114. <dependency>
  115. <groupId>com.github.xiaoymin</groupId>
  116. <artifactId>knife4j-spring-boot-starter</artifactId>
  117. <version>${knife4j.version}</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>redis.clients</groupId>
  121. <artifactId>jedis</artifactId>
  122. </dependency>
  123. <dependency>
  124. <groupId>cn.superdesk.libs</groupId>
  125. <artifactId>superdesk-libs-common</artifactId>
  126. <version>${superdesk.libs.version}</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>cn.superdesk.uniorder</groupId>
  130. <artifactId>superdesk-uniorder-common</artifactId>
  131. <version>${project.parent.version}</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>cn.superdesk.uniorder</groupId>
  135. <artifactId>superdesk-uniorder-common-mq-kafka</artifactId>
  136. <version>${project.parent.version}</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>cn.superdesk.uniorder</groupId>
  140. <artifactId>superdesk-uniorder-common-queue</artifactId>
  141. <version>${project.parent.version}</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>cn.superdesk.uniorder</groupId>
  145. <artifactId>superdesk-uniorder-dao</artifactId>
  146. <version>${project.parent.version}</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>cn.superdesk.uniorder</groupId>
  150. <artifactId>superdesk-uniorder-dto</artifactId>
  151. <version>${project.parent.version}</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>cn.superdesk.uniorder</groupId>
  155. <artifactId>superdesk-uniorder-dubbo-facade</artifactId>
  156. <version>${project.parent.version}</version>
  157. </dependency>
  158. <!-- 什么鬼 -->
  159. <dependency>
  160. <groupId>cn.superdesk.uniorder.libs</groupId>
  161. <artifactId>superdesk-uniorder-lib-thread</artifactId>
  162. <version>${project.parent.version}</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>cn.superdesk.uniorder</groupId>
  166. <artifactId>superdesk-uniorder-dubbo-consumer</artifactId>
  167. <version>${project.parent.version}</version>
  168. </dependency>
  169. <!-- 屏蔽 -->
  170. <!-- <dependency>-->
  171. <!-- <groupId>cn.superdesk.uniorder</groupId>-->
  172. <!-- <artifactId>superdesk-uniorder-openapi</artifactId>-->
  173. <!-- <version>${project.parent.version}</version>-->
  174. <!-- </dependency>-->
  175. <!-- 新系统 -> 各系统 接收 -->
  176. <dependency>
  177. <groupId>cn.superdesk.app.transfer</groupId>
  178. <artifactId>superdesk-app-transfer-constants-receive</artifactId>
  179. <version>1.2.1-SNAPSHOT</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>cn.superdesk.app.transfer</groupId>
  183. <artifactId>superdesk-transfer-supercloud-dto-receive</artifactId>
  184. <version>0.0.1-SNAPSHOT</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.springframework.data</groupId>
  188. <artifactId>spring-data-redis</artifactId>
  189. </dependency>
  190. <dependency>
  191. <groupId>cn.superdesk.uniorder</groupId>
  192. <artifactId>superdesk-uniorder-openapicall-thirdpart-szhtxx-electronicInvoice-dto</artifactId>
  193. <version>${project.parent.version}</version>
  194. </dependency>
  195. <dependency>
  196. <groupId>cn.superdesk.uniorder</groupId>
  197. <artifactId>superdesk-uniorder-openapicall-thirdpart-szhtxx-paperInvoice-dto</artifactId>
  198. <version>${project.parent.version}</version>
  199. </dependency>
  200. </dependencies>
  201. <profiles>
  202. <profile>
  203. <!-- 本地开发环境 -->
  204. <id>dev</id>
  205. <properties>
  206. <profiles.active>dev</profiles.active>
  207. </properties>
  208. <!--默认启用的是dev环境配置-->
  209. <activation>
  210. <activeByDefault>true</activeByDefault>
  211. </activation>
  212. </profile>
  213. <profile>
  214. <!-- 测试环境 -->
  215. <id>test</id>
  216. <properties>
  217. <profiles.active>test</profiles.active>
  218. </properties>
  219. </profile>
  220. <profile>
  221. <!-- UAT环境 -->
  222. <id>uat</id>
  223. <properties>
  224. <profiles.active>uat</profiles.active>
  225. </properties>
  226. </profile>
  227. <profile>
  228. <!-- 生产环境 -->
  229. <id>prod</id>
  230. <properties>
  231. <profiles.active>prod</profiles.active>
  232. </properties>
  233. </profile>
  234. <profile>
  235. <!-- 生产环境 侨城汇 -->
  236. <id>qch</id>
  237. <properties>
  238. <profiles.active>qch</profiles.active>
  239. </properties>
  240. </profile>
  241. </profiles>
  242. <build>
  243. <!-- <finalName>${project.artifactId}</finalName>-->
  244. <plugins>
  245. <plugin>
  246. <groupId>org.apache.maven.plugins</groupId>
  247. <artifactId>maven-deploy-plugin</artifactId>
  248. <configuration>
  249. <skip>true</skip>
  250. </configuration>
  251. </plugin>
  252. <plugin>
  253. <groupId>org.apache.maven.plugins</groupId>
  254. <artifactId>maven-install-plugin</artifactId>
  255. <configuration>
  256. <skip>true</skip>
  257. </configuration>
  258. </plugin>
  259. <plugin>
  260. <groupId>org.springframework.boot</groupId>
  261. <artifactId>spring-boot-maven-plugin</artifactId>
  262. <executions>
  263. <execution>
  264. <goals>
  265. <goal>repackage</goal>
  266. </goals>
  267. </execution>
  268. </executions>
  269. </plugin>
  270. </plugins>
  271. </build>
  272. </project>