pom.xml 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  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.17</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</artifactId>
  49. <version>${spring.boot.version}</version>
  50. <exclusions>
  51. <exclusion>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-logging</artifactId>
  54. </exclusion>
  55. </exclusions>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.apache.logging.log4j</groupId>
  59. <artifactId>log4j-web</artifactId>
  60. <version>2.4.1</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-log4j2</artifactId>
  65. <version>${spring.boot.version}</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-configuration-processor</artifactId>
  70. <version>${spring.boot.version}</version>
  71. <optional>true</optional>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter-test</artifactId>
  76. <version>${spring.boot.version}</version>
  77. <scope>test</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-starter-data-jpa</artifactId>
  82. <version>${spring.boot.version}</version>
  83. <exclusions>
  84. <exclusion>
  85. <groupId>org.springframework</groupId>
  86. <artifactId>spring-context</artifactId>
  87. </exclusion>
  88. <exclusion>
  89. <groupId>org.springframework</groupId>
  90. <artifactId>spring-beans</artifactId>
  91. </exclusion>
  92. <exclusion>
  93. <groupId>org.jboss.logging</groupId>
  94. <artifactId>jboss-logging</artifactId>
  95. </exclusion>
  96. <exclusion>
  97. <groupId>org.jboss.logging</groupId>
  98. <artifactId>jboss-logging-annotations</artifactId>
  99. </exclusion>
  100. </exclusions>
  101. </dependency>
  102. <!--<dependency>-->
  103. <!--<groupId>org.springframework.boot</groupId>-->
  104. <!--<artifactId>spring-boot-devtools</artifactId>-->
  105. <!--<version>${spring.boot.version}</version>-->
  106. <!--<optional>true</optional>-->
  107. <!--</dependency>-->
  108. <dependency>
  109. <groupId>org.jboss.spec.javax.servlet</groupId>
  110. <artifactId>jboss-servlet-api_3.1_spec</artifactId>
  111. <version>1.0.0.Final</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>io.dubbo.springboot</groupId>
  115. <artifactId>spring-boot-starter-dubbo</artifactId>
  116. <version>1.0.0</version>
  117. <exclusions>
  118. <exclusion>
  119. <groupId>org.javassist</groupId>
  120. <artifactId>javassist</artifactId>
  121. </exclusion>
  122. <exclusion>
  123. <groupId>org.slf4j</groupId>
  124. <artifactId>slf4j-log4j12</artifactId>
  125. </exclusion>
  126. </exclusions>
  127. </dependency>
  128. <dependency>
  129. <groupId>com.101tec</groupId>
  130. <artifactId>zkclient</artifactId>
  131. <version>0.10</version>
  132. <exclusions>
  133. <exclusion>
  134. <groupId>org.slf4j</groupId>
  135. <artifactId>slf4j-log4j12</artifactId>
  136. </exclusion>
  137. </exclusions>
  138. </dependency>
  139. <dependency>
  140. <groupId>mysql</groupId>
  141. <artifactId>mysql-connector-java</artifactId>
  142. <version>5.1.38</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.projectlombok</groupId>
  146. <artifactId>lombok</artifactId>
  147. <version>1.16.6</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>com.fasterxml.jackson.core</groupId>
  151. <artifactId>jackson-databind</artifactId>
  152. <version>2.6.3</version>
  153. <exclusions>
  154. <exclusion>
  155. <groupId>com.fasterxml.jackson.core</groupId>
  156. <artifactId>jackson-annotations</artifactId>
  157. </exclusion>
  158. </exclusions>
  159. </dependency>
  160. <dependency>
  161. <groupId>com.fasterxml.jackson.dataformat</groupId>
  162. <artifactId>jackson-dataformat-yaml</artifactId>
  163. <version>2.6.3</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>com.lmax</groupId>
  167. <artifactId>disruptor</artifactId>
  168. <version>3.3.2</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>net.dongliu</groupId>
  172. <artifactId>requests</artifactId>
  173. <version>4.7.3</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>cn.iselab</groupId>
  177. <artifactId>ronglian-sms</artifactId>
  178. <version>1.0.0</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>org.apache.httpcomponents</groupId>
  182. <artifactId>httpclient</artifactId>
  183. <version>4.4.1</version>
  184. </dependency>
  185. </dependencies>
  186. <build>
  187. <finalName>${project.artifactId}</finalName>
  188. <plugins>
  189. <plugin>
  190. <groupId>org.springframework.boot</groupId>
  191. <artifactId>spring-boot-maven-plugin</artifactId>
  192. <version>${spring.boot.version}</version>
  193. <executions>
  194. <execution>
  195. <goals>
  196. <goal>repackage</goal>
  197. </goals>
  198. </execution>
  199. </executions>
  200. </plugin>
  201. <plugin>
  202. <groupId>org.apache.maven.plugins</groupId>
  203. <artifactId>maven-deploy-plugin</artifactId>
  204. <version>2.7</version>
  205. <configuration>
  206. <skip>true</skip>
  207. </configuration>
  208. </plugin>
  209. <plugin>
  210. <groupId>org.apache.maven.plugins</groupId>
  211. <artifactId>maven-compiler-plugin</artifactId>
  212. <version>3.6.0</version>
  213. <configuration>
  214. <source>1.8</source>
  215. <target>1.8</target>
  216. </configuration>
  217. </plugin>
  218. </plugins>
  219. </build>
  220. </project>