pom.xml 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  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. <parent>
  6. <artifactId>mooctest-user</artifactId>
  7. <groupId>cn.iselab.mooctest</groupId>
  8. <version>0.0.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>mooctest-user-server</artifactId>
  12. <properties>
  13. <spring.boot.version>1.3.8.RELEASE</spring.boot.version>
  14. <maven.compiler.source>1.8</maven.compiler.source>
  15. <maven.compiler.target>1.8</maven.compiler.target>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  18. <java.version>1.8</java.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>cn.iselab.mooctest</groupId>
  23. <artifactId>user-dubbo-api</artifactId>
  24. <version>1.0.27</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.mybatis.spring.boot</groupId>
  28. <artifactId>mybatis-spring-boot-starter</artifactId>
  29. <version>1.1.1</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>cn.iselab.mooctest</groupId>
  33. <artifactId>mooctest-user-common</artifactId>
  34. <version>0.0.1</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.mybatis.spring.boot</groupId>
  38. <artifactId>mybatis-spring-boot-starter</artifactId>
  39. <version>1.1.1</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-web</artifactId>
  44. <version>${spring.boot.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  49. <version>1.3.8.RELEASE</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>net.sourceforge.nekohtml</groupId>
  53. <artifactId>nekohtml</artifactId>
  54. <version>1.9.22</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter</artifactId>
  59. <version>${spring.boot.version}</version>
  60. <exclusions>
  61. <exclusion>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-logging</artifactId>
  64. </exclusion>
  65. </exclusions>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.apache.logging.log4j</groupId>
  69. <artifactId>log4j-web</artifactId>
  70. <version>2.4.1</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-log4j2</artifactId>
  75. <version>${spring.boot.version}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-configuration-processor</artifactId>
  80. <version>${spring.boot.version}</version>
  81. <optional>true</optional>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-starter-test</artifactId>
  86. <version>${spring.boot.version}</version>
  87. <scope>test</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-starter-data-jpa</artifactId>
  92. <version>${spring.boot.version}</version>
  93. <exclusions>
  94. <exclusion>
  95. <groupId>org.springframework</groupId>
  96. <artifactId>spring-context</artifactId>
  97. </exclusion>
  98. <exclusion>
  99. <groupId>org.springframework</groupId>
  100. <artifactId>spring-beans</artifactId>
  101. </exclusion>
  102. <exclusion>
  103. <groupId>org.jboss.logging</groupId>
  104. <artifactId>jboss-logging</artifactId>
  105. </exclusion>
  106. <exclusion>
  107. <groupId>org.jboss.logging</groupId>
  108. <artifactId>jboss-logging-annotations</artifactId>
  109. </exclusion>
  110. </exclusions>
  111. </dependency>
  112. <!--<dependency>-->
  113. <!--<groupId>org.springframework.boot</groupId>-->
  114. <!--<artifactId>spring-boot-devtools</artifactId>-->
  115. <!--<version>${spring.boot.version}</version>-->
  116. <!--<optional>true</optional>-->
  117. <!--</dependency>-->
  118. <dependency>
  119. <groupId>org.jboss.spec.javax.servlet</groupId>
  120. <artifactId>jboss-servlet-api_3.1_spec</artifactId>
  121. <version>1.0.0.Final</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>io.dubbo.springboot</groupId>
  125. <artifactId>spring-boot-starter-dubbo</artifactId>
  126. <version>1.0.0</version>
  127. <exclusions>
  128. <exclusion>
  129. <groupId>org.javassist</groupId>
  130. <artifactId>javassist</artifactId>
  131. </exclusion>
  132. <exclusion>
  133. <groupId>org.slf4j</groupId>
  134. <artifactId>slf4j-log4j12</artifactId>
  135. </exclusion>
  136. </exclusions>
  137. </dependency>
  138. <dependency>
  139. <groupId>com.101tec</groupId>
  140. <artifactId>zkclient</artifactId>
  141. <version>0.10</version>
  142. <exclusions>
  143. <exclusion>
  144. <groupId>org.slf4j</groupId>
  145. <artifactId>slf4j-log4j12</artifactId>
  146. </exclusion>
  147. </exclusions>
  148. </dependency>
  149. <dependency>
  150. <groupId>mysql</groupId>
  151. <artifactId>mysql-connector-java</artifactId>
  152. <version>8.0.11</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>org.projectlombok</groupId>
  156. <artifactId>lombok</artifactId>
  157. <version>1.16.6</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>com.fasterxml.jackson.core</groupId>
  161. <artifactId>jackson-databind</artifactId>
  162. <version>2.6.3</version>
  163. <exclusions>
  164. <exclusion>
  165. <groupId>com.fasterxml.jackson.core</groupId>
  166. <artifactId>jackson-annotations</artifactId>
  167. </exclusion>
  168. </exclusions>
  169. </dependency>
  170. <dependency>
  171. <groupId>com.fasterxml.jackson.dataformat</groupId>
  172. <artifactId>jackson-dataformat-yaml</artifactId>
  173. <version>2.6.3</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>com.lmax</groupId>
  177. <artifactId>disruptor</artifactId>
  178. <version>3.3.2</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>net.dongliu</groupId>
  182. <artifactId>requests</artifactId>
  183. <version>4.7.3</version>
  184. </dependency>
  185. <dependency>
  186. <groupId>cn.iselab</groupId>
  187. <artifactId>ronglian-sms</artifactId>
  188. <version>1.0.0</version>
  189. </dependency>
  190. <dependency>
  191. <groupId>org.apache.httpcomponents</groupId>
  192. <artifactId>httpclient</artifactId>
  193. <version>4.4.1</version>
  194. </dependency>
  195. </dependencies>
  196. <build>
  197. <finalName>${project.artifactId}</finalName>
  198. <plugins>
  199. <plugin>
  200. <groupId>org.springframework.boot</groupId>
  201. <artifactId>spring-boot-maven-plugin</artifactId>
  202. <version>${spring.boot.version}</version>
  203. <executions>
  204. <execution>
  205. <goals>
  206. <goal>repackage</goal>
  207. </goals>
  208. </execution>
  209. </executions>
  210. </plugin>
  211. <plugin>
  212. <groupId>org.apache.maven.plugins</groupId>
  213. <artifactId>maven-deploy-plugin</artifactId>
  214. <version>2.7</version>
  215. <configuration>
  216. <skip>true</skip>
  217. </configuration>
  218. </plugin>
  219. <plugin>
  220. <groupId>org.apache.maven.plugins</groupId>
  221. <artifactId>maven-compiler-plugin</artifactId>
  222. <version>3.6.0</version>
  223. <configuration>
  224. <source>1.8</source>
  225. <target>1.8</target>
  226. </configuration>
  227. </plugin>
  228. </plugins>
  229. </build>
  230. </project>