pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.yuxin</groupId>
  5. <artifactId>yuxin-school-manage</artifactId>
  6. <version>private-6.8.4</version>
  7. <packaging>pom</packaging>
  8. <name>yuxin-school-manage</name>
  9. <modules>
  10. <module>yuxin-school-common</module>
  11. <module>yuxin-school-api</module>
  12. <module>yuxin-school-model</module>
  13. <module>yuxin-school-core</module>
  14. <module>yuxin-school-web</module>
  15. </modules>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <spring.framework.version>4.3.20.RELEASE</spring.framework.version>
  19. <dispatching-center-client.version>private-1.0.0</dispatching-center-client.version>
  20. <common-utils.version>private-1.0.12</common-utils.version>
  21. <feign.version>9.7.0</feign.version>
  22. <fast.json.version>1.2.0</fast.json.version>
  23. <lombok.version>1.16.18</lombok.version>
  24. <guava.version>20.0</guava.version>
  25. <slf4j.version>1.7.25</slf4j.version>
  26. <log4j.version>2.11.1</log4j.version>
  27. <skywalking-log4j2.version>6.4.0</skywalking-log4j2.version>
  28. </properties>
  29. <dependencyManagement>
  30. <dependencies>
  31. <!-- Spring framework -->
  32. <dependency>
  33. <groupId>org.springframework</groupId>
  34. <artifactId>spring-core</artifactId>
  35. <version>${spring.framework.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework</groupId>
  39. <artifactId>spring-beans</artifactId>
  40. <version>${spring.framework.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework</groupId>
  44. <artifactId>spring-tx</artifactId>
  45. <version>${spring.framework.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>javassist</groupId>
  49. <artifactId>javassist</artifactId>
  50. <version>3.12.1.GA</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>cglib</groupId>
  54. <artifactId>cglib-nodep</artifactId>
  55. <version>2.2.2</version>
  56. </dependency>
  57. <!-- apache & commons -->
  58. <dependency>
  59. <groupId>commons-beanutils</groupId>
  60. <artifactId>commons-beanutils-core</artifactId>
  61. <version>1.8.3</version>
  62. <exclusions>
  63. <exclusion>
  64. <artifactId>commons-logging</artifactId>
  65. <groupId>commons-logging</groupId>
  66. </exclusion>
  67. </exclusions>
  68. </dependency>
  69. <dependency>
  70. <groupId>commons-lang</groupId>
  71. <artifactId>commons-lang</artifactId>
  72. <version>2.5</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.poi</groupId>
  76. <artifactId>poi</artifactId>
  77. <version>3.7</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.apache.commons</groupId>
  81. <artifactId>commons-email</artifactId>
  82. <version>1.2</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>commons-net</groupId>
  86. <artifactId>commons-net</artifactId>
  87. <version>2.2</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>commons-codec</groupId>
  91. <artifactId>commons-codec</artifactId>
  92. <version>1.4</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>commons-io</groupId>
  96. <artifactId>commons-io</artifactId>
  97. <version>2.0</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>commons-collections</groupId>
  101. <artifactId>commons-collections</artifactId>
  102. <version>3.2.1</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>commons-discovery</groupId>
  106. <artifactId>commons-discovery</artifactId>
  107. <version>0.5</version>
  108. </dependency>
  109. <!-- web -->
  110. <dependency>
  111. <groupId>javax.servlet</groupId>
  112. <artifactId>servlet-api</artifactId>
  113. <version>2.5</version>
  114. <scope>provided</scope>
  115. </dependency>
  116. <dependency>
  117. <groupId>javax.servlet.jsp</groupId>
  118. <artifactId>jsp-api</artifactId>
  119. <version>2.1</version>
  120. <scope>provided</scope>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.freemarker</groupId>
  124. <artifactId>freemarker</artifactId>
  125. <version>2.3.16</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>net.sf.json-lib</groupId>
  129. <artifactId>json-lib</artifactId>
  130. <version>2.1</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>net.sf.ezmorph</groupId>
  134. <artifactId>ezmorph</artifactId>
  135. <version>1.0.6</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.htmlparser</groupId>
  139. <artifactId>htmlparser</artifactId>
  140. <version>1.6</version>
  141. <exclusions>
  142. <exclusion>
  143. <groupId>sun.jdk</groupId>
  144. <artifactId>tools</artifactId>
  145. </exclusion>
  146. </exclusions>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.tuckey</groupId>
  150. <artifactId>urlrewrite</artifactId>
  151. <version>3.2.0</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>jstl</groupId>
  155. <artifactId>jstl</artifactId>
  156. <version>1.1.2</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>javax.validation</groupId>
  160. <artifactId>validation-api</artifactId>
  161. <version>1.0.0.GA</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>xfire</groupId>
  165. <artifactId>xfire-jsr181-api</artifactId>
  166. <version>1.0-M1</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.codehaus.xfire</groupId>
  170. <artifactId>xfire-java5</artifactId>
  171. <version>1.2.6</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>org.apache.axis</groupId>
  175. <artifactId>axis</artifactId>
  176. <version>1.4</version>
  177. </dependency>
  178. <!-- other -->
  179. <dependency>
  180. <groupId>dom4j</groupId>
  181. <artifactId>dom4j</artifactId>
  182. <version>1.6.1</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>jaxen</groupId>
  186. <artifactId>jaxen</artifactId>
  187. <version>1.1.1</version>
  188. </dependency>
  189. <dependency>
  190. <groupId>org.ostermiller</groupId>
  191. <artifactId>utils</artifactId>
  192. <version>1.07.00</version>
  193. </dependency>
  194. <dependency>
  195. <groupId>org.apache.ant</groupId>
  196. <artifactId>ant</artifactId>
  197. <version>1.9.6</version>
  198. </dependency>
  199. <dependency>
  200. <groupId>jexcelapi</groupId>
  201. <artifactId>jxl</artifactId>
  202. <version>2.6</version>
  203. </dependency>
  204. <dependency>
  205. <groupId>com.thoughtworks.xstream</groupId>
  206. <artifactId>xstream</artifactId>
  207. <version>1.4.2</version>
  208. </dependency>
  209. <dependency>
  210. <groupId>org.quartz-scheduler</groupId>
  211. <artifactId>quartz</artifactId>
  212. <version>2.1.6</version>
  213. <exclusions>
  214. <exclusion>
  215. <artifactId>slf4j-api</artifactId>
  216. <groupId>org.slf4j</groupId>
  217. </exclusion>
  218. <exclusion>
  219. <artifactId>jta</artifactId>
  220. <groupId>javax.transaction</groupId>
  221. </exclusion>
  222. </exclusions>
  223. </dependency>
  224. <dependency>
  225. <groupId>org.apache.solr</groupId>
  226. <artifactId>solr-core</artifactId>
  227. <version>1.4.1</version>
  228. <exclusions>
  229. <exclusion>
  230. <artifactId>slf4j-api</artifactId>
  231. <groupId>org.slf4j</groupId>
  232. </exclusion>
  233. <exclusion>
  234. <groupId>org.apache.solr</groupId>
  235. <artifactId>solr-solrj</artifactId>
  236. </exclusion>
  237. <exclusion>
  238. <artifactId>wstx-asl</artifactId>
  239. <groupId>woodstox</groupId>
  240. </exclusion>
  241. </exclusions>
  242. </dependency>
  243. <dependency>
  244. <groupId>org.apache.solr</groupId>
  245. <artifactId>solr-solrj</artifactId>
  246. <version>1.4.1</version>
  247. </dependency>
  248. <!-- JMS -->
  249. <dependency>
  250. <groupId>stax</groupId>
  251. <artifactId>stax-api</artifactId>
  252. <version>1.0.1</version>
  253. </dependency>
  254. <dependency>
  255. <artifactId>mybatis</artifactId>
  256. <groupId>org.mybatis</groupId>
  257. <version>3.1.1</version>
  258. </dependency>
  259. <dependency>
  260. <groupId>org.mybatis</groupId>
  261. <artifactId>mybatis-spring</artifactId>
  262. <version>1.2.0</version>
  263. </dependency>
  264. <dependency>
  265. <groupId>junit</groupId>
  266. <artifactId>junit</artifactId>
  267. <version>4.8.2</version>
  268. <scope>test</scope>
  269. </dependency>
  270. <dependency>
  271. <groupId>org.springframework</groupId>
  272. <artifactId>spring-test</artifactId>
  273. <version>${spring.framework.version}</version>
  274. <scope>test</scope>
  275. </dependency>
  276. <!-- logging -->
  277. <dependency>
  278. <groupId>log4j</groupId>
  279. <artifactId>log4j</artifactId>
  280. <version>1.2.16</version>
  281. </dependency>
  282. <dependency>
  283. <groupId>org.slf4j</groupId>
  284. <artifactId>slf4j-log4j12</artifactId>
  285. <version>1.7.25</version>
  286. </dependency>
  287. <dependency>
  288. <groupId>org.slf4j</groupId>
  289. <artifactId>slf4j-api</artifactId>
  290. <version>1.7.25</version>
  291. </dependency>
  292. <dependency>
  293. <groupId>io.github.openfeign</groupId>
  294. <artifactId>feign-core</artifactId>
  295. <version>${feign.version}</version>
  296. </dependency>
  297. <dependency>
  298. <groupId>io.github.openfeign</groupId>
  299. <artifactId>feign-gson</artifactId>
  300. <version>${feign.version}</version>
  301. </dependency>
  302. <!--内部api引用 start-->
  303. <dependency>
  304. <groupId>com.yunduo</groupId>
  305. <artifactId>dispatching-center-client</artifactId>
  306. <version>${dispatching-center-client.version}</version>
  307. </dependency>
  308. <dependency>
  309. <groupId>com.yunduo</groupId>
  310. <artifactId>common-utils</artifactId>
  311. <version>${common-utils.version}</version>
  312. </dependency>
  313. <!--内部api引用 end-->
  314. <dependency>
  315. <groupId>org.projectlombok</groupId>
  316. <artifactId>lombok</artifactId>
  317. <version>${lombok.version}</version>
  318. </dependency>
  319. <!-- pageHelper -->
  320. <dependency>
  321. <groupId>com.google.guava</groupId>
  322. <artifactId>guava</artifactId>
  323. <version>${guava.version}</version>
  324. </dependency>
  325. <dependency>
  326. <groupId>org.apache.skywalking</groupId>
  327. <artifactId>apm-toolkit-log4j-2.x</artifactId>
  328. <version>${skywalking-log4j2.version}</version>
  329. </dependency>
  330. </dependencies>
  331. </dependencyManagement>
  332. <build>
  333. <plugins>
  334. <plugin>
  335. <groupId>org.apache.maven.plugins</groupId>
  336. <artifactId>maven-compiler-plugin</artifactId>
  337. <version>3.6.1</version>
  338. <configuration>
  339. <source>1.8</source>
  340. <target>1.8</target>
  341. <encoding>UTF-8</encoding>
  342. </configuration>
  343. </plugin>
  344. <!-- <plugin> -->
  345. <!-- <groupId>org.codehaus.mojo</groupId> -->
  346. <!-- <artifactId>versions-maven-plugin</artifactId> -->
  347. <!-- <version>2.3</version> -->
  348. <!-- <configuration> -->
  349. <!-- <newVersion>5.9-SNAPSHOT</newVersion> -->
  350. <!-- <processAllModules>true</processAllModules> -->
  351. <!-- <allowSnapshots>true</allowSnapshots> -->
  352. <!-- </configuration> -->
  353. <!-- </plugin> -->
  354. </plugins>
  355. <!--<resources>-->
  356. <!--<resource>-->
  357. <!--<directory>src/main/java</directory>-->
  358. <!--<includes>-->
  359. <!--<include>**/*.*</include>-->
  360. <!--</includes>-->
  361. <!--<excludes>-->
  362. <!--<exclude>**/*.java</exclude>-->
  363. <!--</excludes>-->
  364. <!--</resource>-->
  365. <!--</resources>-->
  366. </build>
  367. <distributionManagement>
  368. <repository>
  369. <id>alimaven</id>
  370. <name>Nexus aliyun</name>
  371. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  372. </repository>
  373. </distributionManagement>
  374. </project>