pom.xml 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399
  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"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <artifactId>mooctest-site</artifactId>
  6. <groupId>cn.iselab.mooctest</groupId>
  7. <version>0.0.1</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>mooctest-site-server</artifactId>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.apache.httpcomponents</groupId>
  14. <artifactId>httpclient</artifactId>
  15. <version>4.4.1</version>
  16. </dependency>
  17. <!--dubbo-service-api-->
  18. <dependency>
  19. <groupId>cn.iselab.mooctest</groupId>
  20. <artifactId>user-dubbo-api</artifactId>
  21. <version>1.0.27</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>cn.iselab.mooctest</groupId>
  25. <artifactId>dev-dubbo-api</artifactId>
  26. <version>2.7.2</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>cn.iselab.mooctest</groupId>
  30. <artifactId>kibug-dubbo-api</artifactId>
  31. <version>1.4</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>cn.iselab.mooctest</groupId>
  35. <artifactId>oauth2-dubbo-api</artifactId>
  36. <version>1.0.21</version>
  37. </dependency>
  38. <!--dubbo-service-api-->
  39. <!--dubbo-dependency-->
  40. <!-- https://mvnrepository.com/artifact/io.dubbo.springboot/spring-boot-starter-dubbo -->
  41. <dependency>
  42. <groupId>io.dubbo.springboot</groupId>
  43. <artifactId>spring-boot-starter-dubbo</artifactId>
  44. <version>1.0.0</version>
  45. <exclusions>
  46. <exclusion>
  47. <groupId>org.javassist</groupId>
  48. <artifactId>javassist</artifactId>
  49. </exclusion>
  50. <exclusion>
  51. <groupId>org.slf4j</groupId>
  52. <artifactId>slf4j-log4j12</artifactId>
  53. </exclusion>
  54. </exclusions>
  55. </dependency>
  56. <!-- https://mvnrepository.com/artifact/org.apache.zookeeper/zookeeper -->
  57. <dependency>
  58. <groupId>org.apache.zookeeper</groupId>
  59. <artifactId>zookeeper</artifactId>
  60. <version>3.4.9</version>
  61. <exclusions>
  62. <exclusion>
  63. <groupId>org.slf4j</groupId>
  64. <artifactId>slf4j-log4j12</artifactId>
  65. </exclusion>
  66. </exclusions>
  67. </dependency>
  68. <!-- https://mvnrepository.com/artifact/com.101tec/zkclient -->
  69. <dependency>
  70. <groupId>com.101tec</groupId>
  71. <artifactId>zkclient</artifactId>
  72. <version>0.10</version>
  73. <exclusions>
  74. <exclusion>
  75. <groupId>org.slf4j</groupId>
  76. <artifactId>slf4j-log4j12</artifactId>
  77. </exclusion>
  78. </exclusions>
  79. </dependency>
  80. <!--dubbo-dependency-->
  81. <dependency>
  82. <groupId>cn.iselab.mooctest</groupId>
  83. <artifactId>mooctest-site-common</artifactId>
  84. <version>0.0.1</version>
  85. </dependency>
  86. <!-- MS framework dependencies start -->
  87. <dependency>
  88. <groupId>org.jboss.spec.javax.servlet</groupId>
  89. <artifactId>jboss-servlet-api_3.1_spec</artifactId>
  90. <version>1.0.0.Final</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.springframework.boot</groupId>
  94. <artifactId>spring-boot-starter-web</artifactId>
  95. <version>${spring.boot.version}</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-starter</artifactId>
  100. <version>${spring.boot.version}</version>
  101. <exclusions>
  102. <exclusion>
  103. <groupId>org.springframework.boot</groupId>
  104. <artifactId>spring-boot-starter-logging</artifactId>
  105. </exclusion>
  106. </exclusions>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.apache.logging.log4j</groupId>
  110. <artifactId>log4j-web</artifactId>
  111. <version>2.4.1</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.springframework.boot</groupId>
  115. <artifactId>spring-boot-starter-log4j2</artifactId>
  116. <version>${spring.boot.version}</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.springframework.boot</groupId>
  120. <artifactId>spring-boot-starter-aop</artifactId>
  121. <version>${spring.boot.version}</version>
  122. </dependency>
  123. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-amqp -->
  124. <dependency>
  125. <groupId>org.springframework.boot</groupId>
  126. <artifactId>spring-boot-starter-amqp</artifactId>
  127. <version>${spring.boot.version}</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.springframework.boot</groupId>
  131. <artifactId>spring-boot-starter-redis</artifactId>
  132. <version>${spring.boot.version}</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.springframework.session</groupId>
  136. <artifactId>spring-session-data-redis</artifactId>
  137. <version>1.1.1.RELEASE</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.springframework.boot</groupId>
  141. <artifactId>spring-boot-configuration-processor</artifactId>
  142. <version>${spring.boot.version}</version>
  143. <optional>true</optional>
  144. </dependency>
  145. <dependency>
  146. <groupId>com.fasterxml.jackson.core</groupId>
  147. <artifactId>jackson-databind</artifactId>
  148. <version>2.6.3</version>
  149. <exclusions>
  150. <exclusion>
  151. <groupId>com.fasterxml.jackson.core</groupId>
  152. <artifactId>jackson-annotations</artifactId>
  153. </exclusion>
  154. </exclusions>
  155. </dependency>
  156. <dependency>
  157. <groupId>com.fasterxml.jackson.dataformat</groupId>
  158. <artifactId>jackson-dataformat-yaml</artifactId>
  159. <version>2.6.3</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>com.lmax</groupId>
  163. <artifactId>disruptor</artifactId>
  164. <version>3.3.2</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.springframework.boot</groupId>
  168. <artifactId>spring-boot-starter-cache</artifactId>
  169. <version>${spring.boot.version}</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>org.springframework.boot</groupId>
  173. <artifactId>spring-boot-starter-data-jpa</artifactId>
  174. <version>${spring.boot.version}</version>
  175. <exclusions>
  176. <exclusion>
  177. <groupId>org.springframework</groupId>
  178. <artifactId>spring-context</artifactId>
  179. </exclusion>
  180. <exclusion>
  181. <groupId>org.springframework</groupId>
  182. <artifactId>spring-beans</artifactId>
  183. </exclusion>
  184. <exclusion>
  185. <groupId>org.jboss.logging</groupId>
  186. <artifactId>jboss-logging</artifactId>
  187. </exclusion>
  188. <exclusion>
  189. <groupId>org.jboss.logging</groupId>
  190. <artifactId>jboss-logging-annotations</artifactId>
  191. </exclusion>
  192. </exclusions>
  193. </dependency>
  194. <dependency>
  195. <groupId>org.springframework.cloud</groupId>
  196. <artifactId>spring-cloud-starter-zookeeper-config</artifactId>
  197. </dependency>
  198. <!-- zookeeper 依赖的健康检查的jar,所以需要引入actuator这个依赖 -->
  199. <dependency>
  200. <groupId>org.springframework.boot</groupId>
  201. <artifactId>spring-boot-starter-actuator</artifactId>
  202. <version>${spring.boot.version}</version>
  203. </dependency>
  204. <dependency>
  205. <groupId>mysql</groupId>
  206. <artifactId>mysql-connector-java</artifactId>
  207. <version>5.1.38</version>
  208. </dependency>
  209. <!-- MS framework dependencies end -->
  210. <!--EasyExcel dependencies-->
  211. <dependency>
  212. <groupId>cn.afterturn</groupId>
  213. <artifactId>easypoi-base</artifactId>
  214. <version>3.0.1</version>
  215. </dependency>
  216. <dependency>
  217. <groupId>cn.afterturn</groupId>
  218. <artifactId>easypoi-web</artifactId>
  219. <version>3.0.1</version>
  220. </dependency>
  221. <dependency>
  222. <groupId>cn.afterturn</groupId>
  223. <artifactId>easypoi-annotation</artifactId>
  224. <version>3.0.1</version>
  225. </dependency>
  226. <!--EasyExcel END-->
  227. <!-- SMS dependency -->
  228. <dependency>
  229. <groupId>cn.iselab</groupId>
  230. <artifactId>ronglian-sms</artifactId>
  231. <version>1.0.0</version>
  232. </dependency>
  233. <!-- SMS dependency end -->
  234. <!-- Mail dependency -->
  235. <dependency>
  236. <groupId>javax.mail</groupId>
  237. <artifactId>mail</artifactId>
  238. <version>1.4.1</version>
  239. </dependency>
  240. <!-- Mail dependency end -->
  241. <!-- kaptcha verification code -->
  242. <dependency>
  243. <groupId>com.github.penggle</groupId>
  244. <artifactId>kaptcha</artifactId>
  245. <version>2.3.2</version>
  246. </dependency>
  247. <!-- Apache commons validator -->
  248. <dependency>
  249. <groupId>commons-validator</groupId>
  250. <artifactId>commons-validator</artifactId>
  251. <version>1.4.1</version>
  252. </dependency>
  253. <!-- validator end -->
  254. <!-- Velocity engine -->
  255. <dependency>
  256. <groupId>org.apache.velocity</groupId>
  257. <artifactId>velocity</artifactId>
  258. <version>1.7</version>
  259. </dependency>
  260. <!-- Velocity engine -->
  261. <!-- Aliyun OSS -->
  262. <dependency>
  263. <groupId>com.aliyun.oss</groupId>
  264. <artifactId>aliyun-sdk-oss</artifactId>
  265. <version>2.5.0</version>
  266. </dependency>
  267. <dependency>
  268. <groupId>com.aliyun</groupId>
  269. <artifactId>aliyun-java-sdk-sts</artifactId>
  270. <version>2.1.6</version>
  271. </dependency>
  272. <dependency>
  273. <groupId>com.aliyun</groupId>
  274. <artifactId>aliyun-java-sdk-core</artifactId>
  275. <version>2.1.7</version>
  276. </dependency>
  277. <!-- OSS end -->
  278. <dependency>
  279. <groupId>org.projectlombok</groupId>
  280. <artifactId>lombok</artifactId>
  281. <version>1.16.6</version>
  282. </dependency>
  283. <!-- Shiro -->
  284. <dependency>
  285. <groupId>org.apache.shiro</groupId>
  286. <artifactId>shiro-spring</artifactId>
  287. <version>1.3.2</version>
  288. </dependency>
  289. <dependency>
  290. <groupId>org.apache.shiro</groupId>
  291. <artifactId>shiro-ehcache</artifactId>
  292. <version>1.3.2</version>
  293. </dependency>
  294. <!-- Shiro End -->
  295. <dependency>
  296. <groupId>net.dongliu</groupId>
  297. <artifactId>requests</artifactId>
  298. <version>4.7.3</version>
  299. </dependency>
  300. <!-- ZIP -->
  301. <dependency>
  302. <groupId>net.lingala.zip4j</groupId>
  303. <artifactId>zip4j</artifactId>
  304. <version>1.3.2</version>
  305. </dependency>
  306. <!-- PDF -->
  307. <dependency>
  308. <groupId>com.itextpdf</groupId>
  309. <artifactId>itext-asian</artifactId>
  310. <version>5.2.0</version>
  311. </dependency>
  312. <dependency>
  313. <groupId>com.itextpdf</groupId>
  314. <artifactId>itextpdf</artifactId>
  315. <version>5.5.10</version>
  316. </dependency>
  317. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-math3 -->
  318. <dependency>
  319. <groupId>org.apache.commons</groupId>
  320. <artifactId>commons-math3</artifactId>
  321. <version>3.6</version>
  322. </dependency>
  323. <dependency>
  324. <groupId>io.springfox</groupId>
  325. <artifactId>springfox-swagger2</artifactId>
  326. <version>2.4.0</version>
  327. </dependency>
  328. <dependency>
  329. <groupId>io.springfox</groupId>
  330. <artifactId>springfox-swagger-ui</artifactId>
  331. <version>2.4.0</version>
  332. </dependency>
  333. <!--<dependency>-->
  334. <!--<groupId>org.springframework.boot</groupId>-->
  335. <!--<artifactId>spring-boot-devtools</artifactId>-->
  336. <!--<version>1.3.5.RELEASE</version>-->
  337. <!--<optional>true</optional>-->
  338. <!--</dependency>-->
  339. </dependencies>
  340. <build>
  341. <finalName>${project.artifactId}</finalName>
  342. <plugins>
  343. <plugin>
  344. <groupId>org.springframework.boot</groupId>
  345. <artifactId>spring-boot-maven-plugin</artifactId>
  346. <version>${spring.boot.version}</version>
  347. <executions>
  348. <execution>
  349. <goals>
  350. <goal>repackage</goal>
  351. </goals>
  352. </execution>
  353. </executions>
  354. </plugin>
  355. <plugin>
  356. <groupId>org.apache.maven.plugins</groupId>
  357. <artifactId>maven-deploy-plugin</artifactId>
  358. <version>2.7</version>
  359. <configuration>
  360. <skip>true</skip>
  361. </configuration>
  362. </plugin>
  363. <plugin>
  364. <groupId>org.apache.maven.plugins</groupId>
  365. <artifactId>maven-compiler-plugin</artifactId>
  366. <version>3.6.0</version>
  367. <configuration>
  368. <source>1.8</source>
  369. <target>1.8</target>
  370. </configuration>
  371. </plugin>
  372. </plugins>
  373. </build>
  374. </project>