pom.xml 8.1 KB

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