pom.xml 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  1. <?xml version="1.0"?>
  2. <project
  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" xmlns="http://maven.apache.org/POM/4.0.0">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <artifactId>yuxin-school-manage</artifactId>
  8. <groupId>com.yuxin</groupId>
  9. <version>private-6.8.4</version>
  10. </parent>
  11. <artifactId>yuxin-school-web</artifactId>
  12. <packaging>war</packaging>
  13. <name>yuxin-school-web</name>
  14. <url>http://maven.apache.org</url>
  15. <dependencies>
  16. <!-- sftp上传依赖包 -->
  17. <dependency>
  18. <groupId>com.jcraft</groupId>
  19. <artifactId>jsch</artifactId>
  20. <version>0.1.53</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>junit</groupId>
  24. <artifactId>junit</artifactId>
  25. <scope>test</scope>
  26. </dependency>
  27. <!-- Spring framework -->
  28. <dependency>
  29. <groupId>org.springframework</groupId>
  30. <artifactId>spring-core</artifactId>
  31. <version>${spring.framework.version}</version>
  32. <exclusions>
  33. <exclusion>
  34. <groupId>commons-logging</groupId>
  35. <artifactId>commons-logging</artifactId>
  36. </exclusion>
  37. </exclusions>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework</groupId>
  41. <artifactId>spring-beans</artifactId>
  42. <version>${spring.framework.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework</groupId>
  46. <artifactId>spring-tx</artifactId>
  47. <version>${spring.framework.version}</version>
  48. </dependency>
  49. <!-- fastjson -->
  50. <dependency>
  51. <groupId>com.alibaba</groupId>
  52. <artifactId>fastjson</artifactId>
  53. <version>1.2.0</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.apache.commons</groupId>
  57. <artifactId>commons-email</artifactId>
  58. <version>1.2</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework</groupId>
  62. <artifactId>spring-test</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>commons-io</groupId>
  66. <artifactId>commons-io</artifactId>
  67. <version>2.4</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.thoughtworks.xstream</groupId>
  71. <artifactId>xstream</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.yuxin</groupId>
  75. <artifactId>yuxin-school-core</artifactId>
  76. <version>private-6.8.4</version>
  77. <exclusions>
  78. <exclusion>
  79. <groupId>commons-logging</groupId>
  80. <artifactId>commons-logging</artifactId>
  81. </exclusion>
  82. </exclusions>
  83. </dependency>
  84. <!-- web -->
  85. <dependency>
  86. <groupId>javax.servlet</groupId>
  87. <artifactId>servlet-api</artifactId>
  88. <version>2.5</version>
  89. <scope>provided</scope>
  90. </dependency>
  91. <!-- <dependency> -->
  92. <!-- <groupId>javax.servlet.jsp</groupId> -->
  93. <!-- <artifactId>jsp-api</artifactId> -->
  94. <!-- <version>2.1</version> -->
  95. <!-- <scope>provided</scope> -->
  96. <!-- </dependency> -->
  97. <!-- <dependency> <groupId>com.caucho</groupId> <artifactId>hessian</artifactId>
  98. <version>4.0.7</version> </dependency> -->
  99. <!-- 上传文件 -->
  100. <dependency>
  101. <groupId>commons-fileupload</groupId>
  102. <artifactId>commons-fileupload</artifactId>
  103. <version>1.2.2</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>opensymphony</groupId>
  107. <artifactId>sitemesh</artifactId>
  108. <version>2.4.2</version>
  109. </dependency>
  110. <!-- jstl标签jar包 -->
  111. <dependency>
  112. <groupId>jstl</groupId>
  113. <artifactId>jstl</artifactId>
  114. <version>1.1.2</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>taglibs</groupId>
  118. <artifactId>standard</artifactId>
  119. <version>1.1.2</version>
  120. </dependency>
  121. <!-- jstl标签jar包 -->
  122. <!-- excle导出 -->
  123. <dependency>
  124. <groupId>org.apache.poi</groupId>
  125. <artifactId>poi</artifactId>
  126. <version>3.15</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.apache.poi</groupId>
  130. <artifactId>poi-excelant</artifactId>
  131. <version>3.15</version>
  132. <exclusions>
  133. <exclusion>
  134. <groupId>org.apache.poi</groupId>
  135. <artifactId>poi</artifactId>
  136. </exclusion>
  137. </exclusions>
  138. </dependency>
  139. <!-- shiro -->
  140. <dependency>
  141. <groupId>org.apache.shiro</groupId>
  142. <artifactId>shiro-spring</artifactId>
  143. <version>1.2.3</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>com.alibaba</groupId>
  147. <artifactId>druid</artifactId>
  148. <version>1.1.16</version>
  149. </dependency>
  150. <!-- ckEditor上传图片需要的jar包 -->
  151. <dependency>
  152. <groupId>com.ckeditor</groupId>
  153. <artifactId>ckeditor-java-core</artifactId>
  154. <version>3.5.3</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>com.aliyun.oss</groupId>
  158. <artifactId>aliyun-sdk-oss</artifactId>
  159. <version>3.8.0</version>
  160. <exclusions>
  161. <exclusion>
  162. <groupId>commons-logging</groupId>
  163. <artifactId>commons-logging</artifactId>
  164. </exclusion>
  165. </exclusions>
  166. </dependency>
  167. <!--阿里云内容检测jar
  168. <dependency>
  169. <groupId>com.aliyun</groupId>
  170. <artifactId>aliyun-java-sdk-core</artifactId>
  171. <version>3.0.7</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>com.aliyun</groupId>
  175. <artifactId>aliyun-java-sdk-green</artifactId>
  176. <version>3.0.0</version>
  177. </dependency>-->
  178. <!-- 验证码 -->
  179. <dependency>
  180. <groupId>com.yuxin</groupId>
  181. <artifactId>yuxin-school-captcha</artifactId>
  182. <version>0.0.1-SNAPSHOT</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>commons-httpclient</groupId>
  186. <artifactId>commons-httpclient</artifactId>
  187. <version>3.0</version>
  188. <exclusions>
  189. <exclusion>
  190. <groupId>commons-logging</groupId>
  191. <artifactId>commons-logging</artifactId>
  192. </exclusion>
  193. </exclusions>
  194. </dependency>
  195. <dependency>
  196. <groupId>com.sun.star</groupId>
  197. <artifactId>unoil</artifactId>
  198. <version>3.2.1</version>
  199. </dependency>
  200. <dependency>
  201. <groupId>com.sun.star</groupId>
  202. <artifactId>ridl</artifactId>
  203. <version>3.2.1</version>
  204. </dependency>
  205. <dependency>
  206. <groupId>org.artofsolving.jodconverter</groupId>
  207. <artifactId>jodconverter-core</artifactId>
  208. <version>3.0</version>
  209. </dependency>
  210. <dependency>
  211. <groupId>com.sun.star</groupId>
  212. <artifactId>juh</artifactId>
  213. <version>3.2.1</version>
  214. </dependency>
  215. <dependency>
  216. <groupId>com.sun.star</groupId>
  217. <artifactId>jurt</artifactId>
  218. <version>3.2.1</version>
  219. </dependency>
  220. <dependency>
  221. <groupId>com.qiniu</groupId>
  222. <artifactId>qiniu-java-sdk</artifactId>
  223. <version>7.2.6</version>
  224. </dependency>
  225. <dependency>
  226. <groupId>org.mongodb</groupId>
  227. <artifactId>mongo-java-driver</artifactId>
  228. <version>2.14.0</version>
  229. </dependency>
  230. <dependency>
  231. <groupId>com.yuxin</groupId>
  232. <artifactId>MTCloud_java</artifactId>
  233. <version>1.0.0-SNAPSHOT</version>
  234. <exclusions>
  235. <exclusion>
  236. <groupId>commons-logging</groupId>
  237. <artifactId>commons-logging</artifactId>
  238. </exclusion>
  239. </exclusions>
  240. </dependency>
  241. <dependency>
  242. <groupId>com.aliyun</groupId>
  243. <artifactId>aliyun-java-sdk-core</artifactId>
  244. <version>3.0.7</version>
  245. </dependency>
  246. <dependency>
  247. <groupId>com.aliyun</groupId>
  248. <artifactId>aliyun-java-sdk-green</artifactId>
  249. <version>3.0.0</version>
  250. </dependency>
  251. <dependency>
  252. <groupId>com.aliyun</groupId>
  253. <artifactId>aliyun-java-sdk-vod</artifactId>
  254. <version>2.7.0</version>
  255. </dependency>
  256. <!-- httppost请求 -->
  257. <dependency>
  258. <groupId>com.mashape.unirest</groupId>
  259. <artifactId>unirest-java</artifactId>
  260. <version>1.4.9</version>
  261. <exclusions>
  262. <exclusion>
  263. <groupId>commons-logging</groupId>
  264. <artifactId>commons-logging</artifactId>
  265. </exclusion>
  266. </exclusions>
  267. </dependency>
  268. <dependency>
  269. <groupId>com.itextpdf</groupId>
  270. <artifactId>itextpdf</artifactId>
  271. <version>5.5.13</version>
  272. </dependency>
  273. <dependency>
  274. <groupId>com.itextpdf.tool</groupId>
  275. <artifactId>xmlworker</artifactId>
  276. <version>5.5.13</version>
  277. </dependency>
  278. <!--csv -->
  279. <dependency>
  280. <groupId>org.apache.commons</groupId>
  281. <artifactId>commons-csv</artifactId>
  282. <version>1.5</version>
  283. </dependency>
  284. <dependency>
  285. <groupId>io.github.openfeign</groupId>
  286. <artifactId>feign-core</artifactId>
  287. </dependency>
  288. <dependency>
  289. <groupId>io.github.openfeign</groupId>
  290. <artifactId>feign-gson</artifactId>
  291. </dependency>
  292. <!--内部api引用 start-->
  293. <dependency>
  294. <groupId>com.yunduo</groupId>
  295. <artifactId>dispatching-center-client</artifactId>
  296. <exclusions>
  297. <exclusion>
  298. <groupId>org.apache.logging.log4j</groupId>
  299. <artifactId>log4j-to-slf4j</artifactId>
  300. </exclusion>
  301. <exclusion>
  302. <groupId>ch.qos.logback</groupId>
  303. <artifactId>logback-classic</artifactId>
  304. </exclusion>
  305. </exclusions>
  306. </dependency>
  307. <dependency>
  308. <groupId>com.yunduo</groupId>
  309. <artifactId>common-utils</artifactId>
  310. </dependency>
  311. <dependency>
  312. <groupId>net.coobird</groupId>
  313. <artifactId>thumbnailator</artifactId>
  314. <version>0.4.8</version>
  315. </dependency>
  316. <dependency>
  317. <groupId>com.vdurmont</groupId>
  318. <artifactId>emoji-java</artifactId>
  319. <version>5.1.1</version>
  320. </dependency>
  321. <!--内部api引用 end-->
  322. <dependency>
  323. <groupId>org.apache.skywalking</groupId>
  324. <artifactId>apm-toolkit-log4j-2.x</artifactId>
  325. </dependency>
  326. <dependency>
  327. <groupId>eu.bitwalker</groupId>
  328. <artifactId>UserAgentUtils</artifactId>
  329. <version>1.21</version>
  330. </dependency>
  331. </dependencies>
  332. <build>
  333. <finalName>backstage-onlischool-manage</finalName>
  334. </build>
  335. <repositories>
  336. <repository>
  337. <id>alimaven</id>
  338. <name>Nexus aliyun</name>
  339. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  340. </repository>
  341. </repositories>
  342. </project>