pom.xml 8.3 KB

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