pom.xml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>yos</groupId>
  7. <artifactId>yos</artifactId>
  8. <version>1.0.0</version>
  9. <build>
  10. <plugins>
  11. <plugin>
  12. <groupId>org.apache.maven.plugins</groupId>
  13. <artifactId>maven-compiler-plugin</artifactId>
  14. <configuration>
  15. <source>8</source>
  16. <target>8</target>
  17. </configuration>
  18. </plugin>
  19. </plugins>
  20. </build>
  21. <dependencies>
  22. <!-- <dependency> -->
  23. <!-- <groupId>javax.ws.rs</groupId> -->
  24. <!-- <artifactId>jsr311-api</artifactId> -->
  25. <!-- <version>1.1.1</version> -->
  26. <!-- </dependency> -->
  27. <!-- 本地jar引入 -->
  28. <dependency>
  29. <groupId>junit</groupId>
  30. <artifactId>junit</artifactId>
  31. <version>4.12</version>
  32. <scope>test</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>log4j</groupId>
  36. <artifactId>log4j</artifactId>
  37. <version>1.2.14</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.sun.jersey</groupId>
  41. <artifactId>jersey-bundle</artifactId>
  42. <version>1.19</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.codehaus.jackson</groupId>
  46. <artifactId>jackson-mapper-asl</artifactId>
  47. <version>1.9.13</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.alibaba</groupId>
  51. <artifactId>fastjson</artifactId>
  52. <version>1.2.62</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>javax.websocket</groupId>
  56. <artifactId>javax.websocket-api</artifactId>
  57. <version>1.1</version>
  58. <scope>provided</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.dom4j</groupId>
  62. <artifactId>dom4j</artifactId>
  63. <version>2.1.1</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>javax.servlet</groupId>
  67. <artifactId>javax.servlet-api</artifactId>
  68. <version>3.1.0</version>
  69. <scope>provided</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.github.wechatpay-apiv3</groupId>
  73. <artifactId>wechatpay-apache-httpclient</artifactId>
  74. <version>0.2.1</version>
  75. <exclusions>
  76. <exclusion>
  77. <artifactId>commons-codec</artifactId>
  78. <groupId>commons-codec</groupId>
  79. </exclusion>
  80. </exclusions>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.glassfish.grizzly</groupId>
  84. <artifactId>grizzly-http</artifactId>
  85. <version>2.3.23</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.google.code.gson</groupId>
  89. <artifactId>gson</artifactId>
  90. <version>2.8.5</version>
  91. </dependency>
  92. <!-- <dependency> -->
  93. <!-- <groupId>net.sourceforge.jexcelapi</groupId> -->
  94. <!-- <artifactId>jxl</artifactId> -->
  95. <!-- <version>2.6.12</version> -->
  96. <!-- </dependency> -->
  97. <dependency>
  98. <groupId>commons-lang</groupId>
  99. <artifactId>commons-lang</artifactId>
  100. <version>2.6</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.belerweb</groupId>
  104. <artifactId>pinyin4j</artifactId>
  105. <version>2.5.1</version>
  106. </dependency>
  107. <!--mysql数据库驱动 -->
  108. <dependency>
  109. <groupId>mysql</groupId>
  110. <artifactId>mysql-connector-java</artifactId>
  111. <version>8.0.27</version>
  112. </dependency>
  113. <!--sqlserver数据库驱动 -->
  114. <dependency>
  115. <groupId>com.microsoft.sqlserver</groupId>
  116. <artifactId>mssql-jdbc</artifactId>
  117. <version>8.2.2.jre8</version>
  118. </dependency>
  119. <!--oracle数据库驱动 -->
  120. <dependency>
  121. <groupId>com.oracle.ojdbc</groupId>
  122. <artifactId>ojdbc8</artifactId>
  123. <version>19.3.0.0</version>
  124. </dependency>
  125. <!--SQLite数据库驱动 -->
  126. <dependency>
  127. <groupId>org.xerial</groupId>
  128. <artifactId>sqlite-jdbc</artifactId>
  129. <version>3.21.0.1</version>
  130. </dependency>
  131. <!--email发送 -->
  132. <dependency>
  133. <groupId>org.apache.commons</groupId>
  134. <artifactId>commons-email</artifactId>
  135. <version>1.5</version>
  136. </dependency>
  137. <!--诺诺开票 -->
  138. <dependency>
  139. <groupId>com.nuonuo</groupId>
  140. <artifactId>open-sdk</artifactId>
  141. <version>1.0.5.2</version>
  142. <exclusions>
  143. <exclusion>
  144. <artifactId>httpclient</artifactId>
  145. <groupId>org.apache.httpcomponents</groupId>
  146. </exclusion>
  147. </exclusions>
  148. </dependency>
  149. <dependency>
  150. <groupId>org.javassist</groupId>
  151. <artifactId>javassist</artifactId>
  152. <version>3.28.0-GA</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>commons-fileupload</groupId>
  156. <artifactId>commons-fileupload</artifactId>
  157. <version>1.4</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>org.reflections</groupId>
  161. <artifactId>reflections</artifactId>
  162. <version>0.10.2</version>
  163. <exclusions>
  164. <exclusion>
  165. <artifactId>slf4j-api</artifactId>
  166. <groupId>org.slf4j</groupId>
  167. </exclusion>
  168. </exclusions>
  169. </dependency>
  170. <dependency>
  171. <groupId>com.mchange</groupId>
  172. <artifactId>mchange-commons-java</artifactId>
  173. <version>0.2.15</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>com.squareup.okhttp3</groupId>
  177. <artifactId>okhttp</artifactId>
  178. <version>3.14.2</version>
  179. </dependency>
  180. <!-- <dependency> -->
  181. <!-- <groupId>org.apache.poi</groupId> -->
  182. <!-- <artifactId>poi</artifactId> -->
  183. <!-- <version>3.17</version> -->
  184. <!-- <exclusions> -->
  185. <!-- <exclusion> -->
  186. <!-- <artifactId>commons-codec</artifactId> -->
  187. <!-- <groupId>commons-codec</groupId> -->
  188. <!-- </exclusion> -->
  189. <!-- </exclusions> -->
  190. <!-- </dependency> -->
  191. <!-- <dependency> -->
  192. <!-- <groupId>org.apache.poi</groupId> -->
  193. <!-- <artifactId>poi</artifactId> -->
  194. <!-- <version>4.1.2</version> -->
  195. <!-- <exclusions> -->
  196. <!-- <exclusion> -->
  197. <!-- <artifactId>commons-codec</artifactId> -->
  198. <!-- <groupId>commons-codec</groupId> -->
  199. <!-- </exclusion> -->
  200. <!-- </exclusions> -->
  201. <!-- </dependency> -->
  202. <dependency>
  203. <groupId>org.apache.poi</groupId>
  204. <artifactId>poi-scratchpad</artifactId>
  205. <version>4.1.2</version>
  206. </dependency>
  207. <dependency>
  208. <groupId>org.apache.poi</groupId>
  209. <artifactId>poi-ooxml</artifactId>
  210. <version>4.1.2</version>
  211. </dependency>
  212. <dependency>
  213. <groupId>com.huaweicloud.sdk</groupId>
  214. <artifactId>huaweicloud-sdk-bundle</artifactId>
  215. <version>3.0.83</version>
  216. <exclusions>
  217. <exclusion>
  218. <groupId>com.fasterxml.jackson.core</groupId>
  219. <artifactId>jackson-databind</artifactId>
  220. </exclusion>
  221. <exclusion>
  222. <groupId>com.fasterxml.jackson.core</groupId>
  223. <artifactId>jackson-core</artifactId>
  224. </exclusion>
  225. <exclusion>
  226. <groupId>com.fasterxml.jackson.core</groupId>
  227. <artifactId>jackson-annotations</artifactId>
  228. </exclusion>
  229. <exclusion>
  230. <groupId>com.fasterxml.jackson.datatype</groupId>
  231. <artifactId>jackson-datatype-jdk8</artifactId>
  232. </exclusion>
  233. <exclusion>
  234. <groupId>com.fasterxml.jackson.datatype</groupId>
  235. <artifactId>jackson-datatype-jsr310</artifactId>
  236. </exclusion>
  237. <exclusion>
  238. <groupId>com.fasterxml.jackson.dataformat</groupId>
  239. <artifactId>jackson-dataformat-yaml</artifactId>
  240. </exclusion>
  241. <exclusion>
  242. <artifactId>slf4j-api</artifactId>
  243. <groupId>org.slf4j</groupId>
  244. </exclusion>
  245. </exclusions>
  246. </dependency>
  247. <dependency>
  248. <groupId>com.huaweicloud</groupId>
  249. <artifactId>esdk-obs-java-bundle</artifactId>
  250. <version>3.21.8</version>
  251. <exclusions>
  252. <exclusion>
  253. <groupId>org.apache.logging.log4j</groupId>
  254. <artifactId>log4j-core</artifactId>
  255. </exclusion>
  256. <exclusion>
  257. <groupId>org.apache.logging.log4j</groupId>
  258. <artifactId>log4j-api</artifactId>
  259. </exclusion>
  260. </exclusions>
  261. </dependency>
  262. <!--webservice相关 -->
  263. <dependency>
  264. <groupId>org.apache.cxf</groupId>
  265. <artifactId>cxf</artifactId>
  266. <version>2.7.7</version>
  267. <type>pom</type>
  268. </dependency>
  269. <dependency>
  270. <groupId>org.apache.cxf</groupId>
  271. <artifactId>cxf-rt-frontend-jaxws</artifactId>
  272. <version>2.7.7</version>
  273. </dependency>
  274. <dependency>
  275. <groupId>org.apache.cxf</groupId>
  276. <artifactId>cxf-rt-transports-http</artifactId>
  277. <version>2.7.7</version>
  278. </dependency>
  279. <dependency>
  280. <groupId>org.apache.cxf</groupId>
  281. <artifactId>cxf-rt-frontend-simple</artifactId>
  282. <version>2.7.7</version>
  283. </dependency>
  284. </dependencies>
  285. </project>