pom.xml 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>gw-cloud-platform-dcproj</artifactId>
  7. <groupId>cn.com.goldenwater</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>gw-cloud-platform-dcproj-aop</artifactId>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <dependency>
  15. <groupId>cn.com.goldenwater</groupId>
  16. <artifactId>gw-cloud-platform-licence</artifactId>
  17. <version>0.0.1-SNAPSHOT</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>commons-io</groupId>
  21. <artifactId>commons-io</artifactId>
  22. <version>2.5</version>
  23. </dependency>
  24. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  25. <dependency>
  26. <groupId>org.apache.httpcomponents</groupId>
  27. <artifactId>httpclient</artifactId>
  28. <version>4.5.6</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.belerweb</groupId>
  32. <artifactId>pinyin4j</artifactId>
  33. <version>2.5.0</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>commons-collections</groupId>
  37. <artifactId>commons-collections</artifactId>
  38. <version>3.2.1</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>cn.com.goldenwater</groupId>
  42. <artifactId>gw-cloud-platform-dcproj-api</artifactId>
  43. <version>0.0.1-SNAPSHOT</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>cn.com.goldenwater</groupId>
  47. <artifactId>gw-cloud-platform-dcproj-basetools</artifactId>
  48. <version>0.0.1-SNAPSHOT</version>
  49. </dependency>
  50. <!-- swagger -->
  51. <dependency>
  52. <groupId>commons-beanutils</groupId>
  53. <artifactId>commons-beanutils</artifactId>
  54. <version>1.9.3</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.google.zxing</groupId>
  58. <artifactId>javase</artifactId>
  59. <version>3.0.0</version>
  60. </dependency>
  61. <!-- https://mvnrepository.com/artifact/commons-lang/commons-lang -->
  62. <dependency>
  63. <groupId>commons-lang</groupId>
  64. <artifactId>commons-lang</artifactId>
  65. <version>2.6</version>
  66. </dependency>
  67. <!-- ant -->
  68. <dependency>
  69. <groupId>org.apache.ant</groupId>
  70. <artifactId>ant</artifactId>
  71. <version>1.9.7</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.freemarker</groupId>
  75. <artifactId>freemarker</artifactId>
  76. <version>2.3.27-incubating</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  81. <exclusions>
  82. <exclusion>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-starter-logging</artifactId>
  85. </exclusion>
  86. <exclusion>
  87. <groupId>ch.qos.logback</groupId>
  88. <artifactId>logback-classic</artifactId>
  89. </exclusion>
  90. <exclusion>
  91. <groupId>ch.qos.logback</groupId>
  92. <artifactId>logback-core</artifactId>
  93. </exclusion>
  94. <exclusion>
  95. <groupId>org.slf4j</groupId>
  96. <artifactId>slf4j-log4j12</artifactId>
  97. </exclusion>
  98. </exclusions>
  99. </dependency>
  100. <!--websocket-->
  101. <dependency>
  102. <groupId>org.springframework.boot</groupId>
  103. <artifactId>spring-boot-starter-websocket</artifactId>
  104. <version>2.1.8.RELEASE</version>
  105. <exclusions>
  106. <exclusion>
  107. <groupId>org.springframework.boot</groupId>
  108. <artifactId>spring-boot-starter-logging</artifactId>
  109. </exclusion>
  110. <exclusion>
  111. <groupId>ch.qos.logback</groupId>
  112. <artifactId>logback-classic</artifactId>
  113. </exclusion>
  114. <exclusion>
  115. <groupId>ch.qos.logback</groupId>
  116. <artifactId>logback-core</artifactId>
  117. </exclusion>
  118. <exclusion>
  119. <groupId>org.slf4j</groupId>
  120. <artifactId>slf4j-log4j12</artifactId>
  121. </exclusion>
  122. </exclusions>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.xylink</groupId>
  126. <artifactId>cloudsdk</artifactId>
  127. <version>2.24.0</version>
  128. </dependency>
  129. <!-- https://mvnrepository.com/artifact/org.codehaus.jackson/jackson-core-asl -->
  130. <dependency>
  131. <groupId>org.codehaus.jackson</groupId>
  132. <artifactId>jackson-core-asl</artifactId>
  133. <version>1.9.13</version>
  134. </dependency>
  135. <!-- https://mvnrepository.com/artifact/org.codehaus.jackson/jackson-mapper-asl -->
  136. <dependency>
  137. <groupId>org.codehaus.jackson</groupId>
  138. <artifactId>jackson-mapper-asl</artifactId>
  139. <version>1.9.13</version>
  140. </dependency>
  141. <!-- 图片缩略图 -->
  142. <dependency>
  143. <groupId>net.coobird</groupId>
  144. <artifactId>thumbnailator</artifactId>
  145. <version>0.4.8</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>commons-httpclient</groupId>
  149. <artifactId>commons-httpclient</artifactId>
  150. <version>3.0.1</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>commons-fileupload</groupId>
  154. <artifactId>commons-fileupload</artifactId>
  155. <version>1.3.3</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>cn.com.goldenwater</groupId>
  159. <artifactId>gw-cloud-platform-dcproj-dao</artifactId>
  160. <version>0.0.1-SNAPSHOT</version>
  161. <scope>compile</scope>
  162. </dependency>
  163. <!--阿里云短信服务-->
  164. <dependency>
  165. <groupId>com.aliyun</groupId>
  166. <artifactId>aliyun-java-sdk-core</artifactId>
  167. <version>4.5.16</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>com.aliyun</groupId>
  171. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  172. <version>1.1.0</version>
  173. </dependency>
  174. <!-- CXF -->
  175. <dependency>
  176. <groupId>org.apache.cxf</groupId>
  177. <artifactId>cxf-api</artifactId>
  178. <version>2.6.8</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>org.apache.cxf</groupId>
  182. <artifactId>cxf-rt-frontend-jaxws</artifactId>
  183. <version>2.6.8</version>
  184. </dependency>
  185. <dependency>
  186. <groupId>org.apache.cxf</groupId>
  187. <artifactId>cxf-rt-transports-http</artifactId>
  188. <version>2.6.8</version>
  189. </dependency>
  190. <!-- 解析客户端操作系统、浏览器等 -->
  191. <dependency>
  192. <groupId>eu.bitwalker</groupId>
  193. <artifactId>UserAgentUtils</artifactId>
  194. <version>${bitwalker.version}</version>
  195. </dependency>
  196. <!-- wsdl 服务调用依赖 -->
  197. <dependency>
  198. <groupId>javax.activation</groupId>
  199. <artifactId>activation</artifactId>
  200. <version>1.1.1</version>
  201. </dependency>
  202. <dependency>
  203. <groupId>axis</groupId>
  204. <artifactId>axis</artifactId>
  205. <version>1.4</version>
  206. </dependency>
  207. <dependency>
  208. <groupId>axis</groupId>
  209. <artifactId>axis-ant</artifactId>
  210. <version>1.4</version>
  211. </dependency>
  212. <dependency>
  213. <groupId>commons-discovery</groupId>
  214. <artifactId>commons-discovery</artifactId>
  215. <version>0.5</version>
  216. </dependency>
  217. <dependency>
  218. <groupId>commons-logging</groupId>
  219. <artifactId>commons-logging</artifactId>
  220. <version>1.3.0</version>
  221. </dependency>
  222. <dependency>
  223. <groupId>javax.xml</groupId>
  224. <artifactId>jaxrpc</artifactId>
  225. <version>1.1</version>
  226. </dependency>
  227. <dependency>
  228. <groupId>com.sun.mail</groupId>
  229. <artifactId>javax.mail</artifactId>
  230. <version>1.6.2</version>
  231. </dependency>
  232. <dependency>
  233. <groupId>org.lucee</groupId>
  234. <artifactId>saaj</artifactId>
  235. <version>1.4.0</version>
  236. </dependency>
  237. <dependency>
  238. <groupId>wsdl4j</groupId>
  239. <artifactId>wsdl4j</artifactId>
  240. <version>1.6.3</version>
  241. </dependency>
  242. <dependency>
  243. <groupId>org.dom4j</groupId>
  244. <artifactId>dom4j</artifactId>
  245. <version>2.1.4</version>
  246. </dependency>
  247. <dependency>
  248. <groupId>org.apache.poi</groupId>
  249. <artifactId>ooxml-schemas</artifactId>
  250. </dependency>
  251. </dependencies>
  252. <distributionManagement>
  253. <snapshotRepository>
  254. <id>gw-cloud</id>
  255. <url>http://nexus.goldenwater.com.cn/nexus/content/repositories/gw-cloud</url>
  256. </snapshotRepository>
  257. </distributionManagement>
  258. </project>