pom.xml 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>1.5.7.RELEASE</version>
  10. </parent>
  11. <groupId>com.mooctest</groupId>
  12. <artifactId>crowd_review</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. <properties>
  15. <jackson.version>2.9.5</jackson.version>
  16. <maven.compiler.source>1.8</maven.compiler.source>
  17. <maven.compiler.target>1.8</maven.compiler.target>
  18. <maven.compiler.encoding>UTF-8</maven.compiler.encoding>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. <project.build.locales>zh_CN</project.build.locales>
  21. <zookeeper-version>3.4.10</zookeeper-version>
  22. </properties>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.json</groupId>
  26. <artifactId>json</artifactId>
  27. <version>20180130</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-web</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.thymeleaf.extras</groupId>
  39. <artifactId>thymeleaf-extras-java8time</artifactId>
  40. </dependency>
  41. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-devtools -->
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-devtools</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.github.haifengl</groupId>
  48. <artifactId>smile-core</artifactId>
  49. <version>1.5.2</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.github.haifengl</groupId>
  53. <artifactId>smile-netlib</artifactId>
  54. <version>1.5.2</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.alibaba</groupId>
  58. <artifactId>fastjson</artifactId>
  59. <version>1.2.47</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-configuration-processor</artifactId>
  64. <optional>true</optional>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.projectlombok</groupId>
  68. <artifactId>lombok</artifactId>
  69. <version>1.18.6</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.fasterxml.jackson.dataformat</groupId>
  73. <artifactId>jackson-dataformat-yaml</artifactId>
  74. <version>2.6.3</version>
  75. </dependency>
  76. <!-- https://mvnrepository.com/artifact/org.jgrapht/jgrapht-core -->
  77. <dependency>
  78. <groupId>org.jgrapht</groupId>
  79. <artifactId>jgrapht-core</artifactId>
  80. <version>1.3.0</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.hankcs</groupId>
  84. <artifactId>hanlp</artifactId>
  85. <version>portable-1.7.0</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.ansj</groupId>
  89. <artifactId>ansj_seg</artifactId>
  90. <version>5.1.1</version>
  91. </dependency>
  92. <!-- https://mvnrepository.com/artifact/com.github.zengde/lire -->
  93. <dependency>
  94. <groupId>com.github.zengde</groupId>
  95. <artifactId>lire</artifactId>
  96. <version>1.0b2</version>
  97. </dependency>
  98. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-collections4 -->
  99. <dependency>
  100. <groupId>org.apache.commons</groupId>
  101. <artifactId>commons-collections4</artifactId>
  102. <version>4.2</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.springframework.boot</groupId>
  110. <artifactId>spring-boot-configuration-processor</artifactId>
  111. <optional>true</optional>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.google.guava</groupId>
  115. <artifactId>guava</artifactId>
  116. <version>19.0</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.springframework.boot</groupId>
  120. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  121. </dependency>
  122. <!-- 基本依赖,仅操作 xls 格式只需引入此依赖 -->
  123. <dependency>
  124. <groupId>org.apache.poi</groupId>
  125. <artifactId>poi</artifactId>
  126. <version>3.14</version>
  127. </dependency>
  128. <!-- 使用 xlsx 格式需要额外引入此依赖 -->
  129. <dependency>
  130. <groupId>org.apache.poi</groupId>
  131. <artifactId>poi-ooxml</artifactId>
  132. <version>3.14</version>
  133. </dependency>
  134. <!-- https://mvnrepository.com/artifact/org.apache.zookeeper/zookeeper -->
  135. <!-- <dependency>-->
  136. <!-- <groupId>org.apache.zookeeper</groupId>-->
  137. <!-- <artifactId>zookeeper</artifactId>-->
  138. <!-- <version>${zookeeper-version}</version>-->
  139. <!-- <exclusions>-->
  140. <!-- <exclusion>-->
  141. <!-- <artifactId>log4j</artifactId>-->
  142. <!-- <groupId>log4j</groupId>-->
  143. <!-- </exclusion>-->
  144. <!-- <exclusion>-->
  145. <!-- <groupId>org.slf4j</groupId>-->
  146. <!-- <artifactId>slf4j-api</artifactId>-->
  147. <!-- </exclusion>-->
  148. <!-- <exclusion>-->
  149. <!-- <groupId>org.slf4j</groupId>-->
  150. <!-- <artifactId>slf4j-log4j12</artifactId>-->
  151. <!-- </exclusion>-->
  152. <!-- </exclusions>-->
  153. <!-- </dependency>-->
  154. <dependency>
  155. <groupId>org.springframework.cloud</groupId>
  156. <artifactId>spring-cloud-starter-zookeeper-config</artifactId>
  157. </dependency>
  158. </dependencies>
  159. <dependencyManagement>
  160. <dependencies>
  161. <dependency>
  162. <groupId>org.springframework.cloud</groupId>
  163. <artifactId>spring-cloud-dependencies</artifactId>
  164. <version>Edgware.RELEASE</version>
  165. <type>pom</type>
  166. <scope>import</scope>
  167. </dependency>
  168. </dependencies>
  169. </dependencyManagement>
  170. <build>
  171. <plugins>
  172. <plugin>
  173. <groupId>org.springframework.boot</groupId>
  174. <artifactId>spring-boot-maven-plugin</artifactId>
  175. <!--<configuration>-->
  176. <!--<fork>-->
  177. <!--true-->
  178. <!--</fork> &lt;!&ndash;如果没有这个配置的话,,devtools 不会生效&ndash;&gt;-->
  179. <!--</configuration>-->
  180. </plugin>
  181. <plugin>
  182. <groupId>org.apache.maven.plugins</groupId>
  183. <artifactId>maven-compiler-plugin</artifactId>
  184. <configuration>
  185. <source>1.8</source>
  186. <target>1.8</target>
  187. </configuration>
  188. </plugin>
  189. <plugin>
  190. <groupId>org.apache.maven.plugins</groupId>
  191. <artifactId>maven-deploy-plugin</artifactId>
  192. <configuration>
  193. <skip>true</skip>
  194. </configuration>
  195. </plugin>
  196. <plugin>
  197. <groupId>org.apache.maven.plugins</groupId>
  198. <artifactId>maven-surefire-plugin</artifactId>
  199. </plugin>
  200. </plugins>
  201. </build>
  202. </project>