pom.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353
  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. <repositories>
  22. <repository>
  23. <id>groupdocs-artifacts-repository</id>
  24. <name>GroupDocs Artifacts Repository</name>
  25. <url>https://repository.groupdocs.com/repo/</url>
  26. </repository>
  27. <repository>
  28. <id>aliyun</id>
  29. <name>aliyun-central</name>
  30. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  31. </repository>
  32. </repositories>
  33. <dependencies>
  34. <!-- <dependency> -->
  35. <!-- <groupId>javax.ws.rs</groupId> -->
  36. <!-- <artifactId>jsr311-api</artifactId> -->
  37. <!-- <version>1.1.1</version> -->
  38. <!-- </dependency> -->
  39. <!-- 本地jar引入 -->
  40. <dependency>
  41. <groupId>junit</groupId>
  42. <artifactId>junit</artifactId>
  43. <version>4.12</version>
  44. <scope>test</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>log4j</groupId>
  48. <artifactId>log4j</artifactId>
  49. <version>1.2.17</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.sun.jersey</groupId>
  53. <artifactId>jersey-bundle</artifactId>
  54. <version>1.19</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.codehaus.jackson</groupId>
  58. <artifactId>jackson-mapper-asl</artifactId>
  59. <version>1.9.13</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.alibaba</groupId>
  63. <artifactId>fastjson</artifactId>
  64. <version>1.2.62</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>javax.websocket</groupId>
  68. <artifactId>javax.websocket-api</artifactId>
  69. <version>1.1</version>
  70. <scope>provided</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.dom4j</groupId>
  74. <artifactId>dom4j</artifactId>
  75. <version>2.1.1</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>javax.servlet</groupId>
  79. <artifactId>javax.servlet-api</artifactId>
  80. <version>3.1.0</version>
  81. <scope>provided</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.github.wechatpay-apiv3</groupId>
  85. <artifactId>wechatpay-apache-httpclient</artifactId>
  86. <version>0.2.1</version>
  87. <exclusions>
  88. <exclusion>
  89. <artifactId>commons-codec</artifactId>
  90. <groupId>commons-codec</groupId>
  91. </exclusion>
  92. </exclusions>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.glassfish.grizzly</groupId>
  96. <artifactId>grizzly-http</artifactId>
  97. <version>2.3.23</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.google.code.gson</groupId>
  101. <artifactId>gson</artifactId>
  102. <version>2.8.5</version>
  103. </dependency>
  104. <!-- <dependency> -->
  105. <!-- <groupId>net.sourceforge.jexcelapi</groupId> -->
  106. <!-- <artifactId>jxl</artifactId> -->
  107. <!-- <version>2.6.12</version> -->
  108. <!-- </dependency> -->
  109. <dependency>
  110. <groupId>commons-lang</groupId>
  111. <artifactId>commons-lang</artifactId>
  112. <version>2.6</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.belerweb</groupId>
  116. <artifactId>pinyin4j</artifactId>
  117. <version>2.5.1</version>
  118. </dependency>
  119. <!--mysql数据库驱动 -->
  120. <dependency>
  121. <groupId>mysql</groupId>
  122. <artifactId>mysql-connector-java</artifactId>
  123. <version>8.0.27</version>
  124. </dependency>
  125. <!--sqlserver数据库驱动 -->
  126. <dependency>
  127. <groupId>com.microsoft.sqlserver</groupId>
  128. <artifactId>mssql-jdbc</artifactId>
  129. <version>8.2.2.jre8</version>
  130. </dependency>
  131. <!--oracle数据库驱动 -->
  132. <dependency>
  133. <groupId>com.oracle.ojdbc</groupId>
  134. <artifactId>ojdbc8</artifactId>
  135. <version>19.3.0.0</version>
  136. </dependency>
  137. <!--SQLite数据库驱动 -->
  138. <dependency>
  139. <groupId>org.xerial</groupId>
  140. <artifactId>sqlite-jdbc</artifactId>
  141. <version>3.39.4.0</version>
  142. </dependency>
  143. <!--email发送 -->
  144. <dependency>
  145. <groupId>org.apache.commons</groupId>
  146. <artifactId>commons-email</artifactId>
  147. <version>1.5</version>
  148. </dependency>
  149. <!--诺诺开票 -->
  150. <dependency>
  151. <groupId>com.nuonuo</groupId>
  152. <artifactId>open-sdk</artifactId>
  153. <version>1.0.5.2</version>
  154. <exclusions>
  155. <exclusion>
  156. <artifactId>httpclient</artifactId>
  157. <groupId>org.apache.httpcomponents</groupId>
  158. </exclusion>
  159. </exclusions>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.javassist</groupId>
  163. <artifactId>javassist</artifactId>
  164. <version>3.28.0-GA</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>commons-fileupload</groupId>
  168. <artifactId>commons-fileupload</artifactId>
  169. <version>1.4</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>org.reflections</groupId>
  173. <artifactId>reflections</artifactId>
  174. <version>0.10.2</version>
  175. <exclusions>
  176. <exclusion>
  177. <artifactId>slf4j-api</artifactId>
  178. <groupId>org.slf4j</groupId>
  179. </exclusion>
  180. </exclusions>
  181. </dependency>
  182. <dependency>
  183. <groupId>com.mchange</groupId>
  184. <artifactId>mchange-commons-java</artifactId>
  185. <version>0.2.15</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>com.squareup.okhttp3</groupId>
  189. <artifactId>okhttp</artifactId>
  190. <version>3.14.2</version>
  191. </dependency>
  192. <!-- <dependency> -->
  193. <!-- <groupId>org.apache.poi</groupId> -->
  194. <!-- <artifactId>poi</artifactId> -->
  195. <!-- <version>3.17</version> -->
  196. <!-- <exclusions> -->
  197. <!-- <exclusion> -->
  198. <!-- <artifactId>commons-codec</artifactId> -->
  199. <!-- <groupId>commons-codec</groupId> -->
  200. <!-- </exclusion> -->
  201. <!-- </exclusions> -->
  202. <!-- </dependency> -->
  203. <!-- <dependency> -->
  204. <!-- <groupId>org.apache.poi</groupId> -->
  205. <!-- <artifactId>poi</artifactId> -->
  206. <!-- <version>4.1.2</version> -->
  207. <!-- <exclusions> -->
  208. <!-- <exclusion> -->
  209. <!-- <artifactId>commons-codec</artifactId> -->
  210. <!-- <groupId>commons-codec</groupId> -->
  211. <!-- </exclusion> -->
  212. <!-- </exclusions> -->
  213. <!-- </dependency> -->
  214. <dependency>
  215. <groupId>org.apache.poi</groupId>
  216. <artifactId>poi-scratchpad</artifactId>
  217. <version>4.1.2</version>
  218. </dependency>
  219. <dependency>
  220. <groupId>org.apache.poi</groupId>
  221. <artifactId>poi-ooxml</artifactId>
  222. <version>4.1.2</version>
  223. </dependency>
  224. <dependency>
  225. <groupId>com.groupdocs</groupId>
  226. <artifactId>groupdocs-conversion</artifactId>
  227. <version>22.12</version>
  228. </dependency>
  229. <dependency>
  230. <groupId>com.huaweicloud.sdk</groupId>
  231. <artifactId>huaweicloud-sdk-bundle</artifactId>
  232. <version>3.0.83</version>
  233. <exclusions>
  234. <exclusion>
  235. <groupId>com.fasterxml.jackson.core</groupId>
  236. <artifactId>jackson-databind</artifactId>
  237. </exclusion>
  238. <exclusion>
  239. <groupId>com.fasterxml.jackson.core</groupId>
  240. <artifactId>jackson-core</artifactId>
  241. </exclusion>
  242. <exclusion>
  243. <groupId>com.fasterxml.jackson.core</groupId>
  244. <artifactId>jackson-annotations</artifactId>
  245. </exclusion>
  246. <exclusion>
  247. <groupId>com.fasterxml.jackson.datatype</groupId>
  248. <artifactId>jackson-datatype-jdk8</artifactId>
  249. </exclusion>
  250. <exclusion>
  251. <groupId>com.fasterxml.jackson.datatype</groupId>
  252. <artifactId>jackson-datatype-jsr310</artifactId>
  253. </exclusion>
  254. <exclusion>
  255. <groupId>com.fasterxml.jackson.dataformat</groupId>
  256. <artifactId>jackson-dataformat-yaml</artifactId>
  257. </exclusion>
  258. <exclusion>
  259. <artifactId>slf4j-api</artifactId>
  260. <groupId>org.slf4j</groupId>
  261. </exclusion>
  262. </exclusions>
  263. </dependency>
  264. <dependency>
  265. <groupId>com.huaweicloud</groupId>
  266. <artifactId>esdk-obs-java-bundle</artifactId>
  267. <version>3.21.8</version>
  268. <exclusions>
  269. <exclusion>
  270. <groupId>org.apache.logging.log4j</groupId>
  271. <artifactId>log4j-core</artifactId>
  272. </exclusion>
  273. <exclusion>
  274. <groupId>org.apache.logging.log4j</groupId>
  275. <artifactId>log4j-api</artifactId>
  276. </exclusion>
  277. </exclusions>
  278. </dependency>
  279. <!--webservice相关 -->
  280. <dependency>
  281. <groupId>org.apache.cxf</groupId>
  282. <artifactId>cxf</artifactId>
  283. <version>2.7.7</version>
  284. <type>pom</type>
  285. </dependency>
  286. <dependency>
  287. <groupId>org.apache.cxf</groupId>
  288. <artifactId>cxf-rt-frontend-jaxws</artifactId>
  289. <version>2.7.7</version>
  290. </dependency>
  291. <dependency>
  292. <groupId>org.apache.cxf</groupId>
  293. <artifactId>cxf-rt-transports-http</artifactId>
  294. <version>2.7.7</version>
  295. </dependency>
  296. <dependency>
  297. <groupId>org.apache.cxf</groupId>
  298. <artifactId>cxf-rt-frontend-simple</artifactId>
  299. <version>2.7.7</version>
  300. </dependency>
  301. <dependency>
  302. <groupId>com.squareup</groupId>
  303. <artifactId>javapoet</artifactId>
  304. <version>1.13.0</version>
  305. </dependency>
  306. <dependency>
  307. <groupId>com.influxdb</groupId>
  308. <artifactId>influxdb-client-java</artifactId>
  309. <version>5.0.0</version>
  310. </dependency>
  311. <dependency>
  312. <groupId>org.jetbrains.kotlin</groupId>
  313. <artifactId>kotlin-stdlib-jdk8</artifactId>
  314. <version>1.3.70</version>
  315. </dependency>
  316. <dependency>
  317. <groupId>org.apache.activemq</groupId>
  318. <artifactId>activemq-all</artifactId>
  319. <version>5.16.6</version>
  320. </dependency>
  321. <dependency>
  322. <groupId>org.eclipse.paho</groupId>
  323. <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
  324. <version>1.2.5</version>
  325. </dependency>
  326. <dependency>
  327. <groupId>com.alibaba</groupId>
  328. <artifactId>easyexcel</artifactId>
  329. <version>3.2.1</version>
  330. </dependency>
  331. </dependencies>
  332. </project>