pom.xml 12 KB

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