pom.xml 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  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>2.1.1.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>com.google.guava</groupId>
  106. <artifactId>guava</artifactId>
  107. <version>19.0</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.springframework.boot</groupId>
  111. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  112. </dependency>
  113. <!-- 基本依赖,仅操作 xls 格式只需引入此依赖 -->
  114. <dependency>
  115. <groupId>org.apache.poi</groupId>
  116. <artifactId>poi</artifactId>
  117. <version>3.14</version>
  118. </dependency>
  119. <!-- 使用 xlsx 格式需要额外引入此依赖 -->
  120. <dependency>
  121. <groupId>org.apache.poi</groupId>
  122. <artifactId>poi-ooxml</artifactId>
  123. <version>3.14</version>
  124. </dependency>
  125. <!--从2开始 layout不再是starter的一部分-->
  126. <dependency>
  127. <groupId>nz.net.ultraq.thymeleaf</groupId>
  128. <artifactId>thymeleaf-layout-dialect</artifactId>
  129. <version>2.3.0</version>
  130. </dependency>
  131. <!-- https://mvnrepository.com/artifact/org.apache.zookeeper/zookeeper -->
  132. <!-- <dependency>-->
  133. <!-- <groupId>org.apache.zookeeper</groupId>-->
  134. <!-- <artifactId>zookeeper</artifactId>-->
  135. <!-- <version>${zookeeper-version}</version>-->
  136. <!-- <exclusions>-->
  137. <!-- <exclusion>-->
  138. <!-- <artifactId>log4j</artifactId>-->
  139. <!-- <groupId>log4j</groupId>-->
  140. <!-- </exclusion>-->
  141. <!-- <exclusion>-->
  142. <!-- <groupId>org.slf4j</groupId>-->
  143. <!-- <artifactId>slf4j-api</artifactId>-->
  144. <!-- </exclusion>-->
  145. <!-- <exclusion>-->
  146. <!-- <groupId>org.slf4j</groupId>-->
  147. <!-- <artifactId>slf4j-log4j12</artifactId>-->
  148. <!-- </exclusion>-->
  149. <!-- </exclusions>-->
  150. <!-- </dependency>-->
  151. <!-- <dependency>-->
  152. <!-- <groupId>org.springframework.cloud</groupId>-->
  153. <!-- <artifactId>spring-cloud-starter-zookeeper-config</artifactId>-->
  154. <!-- </dependency>-->
  155. <!-- Aliyun OSS -->
  156. <dependency>
  157. <groupId>com.aliyun.oss</groupId>
  158. <artifactId>aliyun-sdk-oss</artifactId>
  159. <version>3.10.2</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>com.aliyun</groupId>
  163. <artifactId>aliyun-java-sdk-sts</artifactId>
  164. <version>2.1.6</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>com.aliyun</groupId>
  168. <artifactId>aliyun-java-sdk-core</artifactId>
  169. <version>2.1.7</version>
  170. </dependency>
  171. <!-- OSS END -->
  172. <dependency>
  173. <groupId>io.github.yedaxia</groupId>
  174. <artifactId>japidocs</artifactId>
  175. <version>1.4.4</version>
  176. </dependency>
  177. </dependencies>
  178. <dependencyManagement>
  179. <dependencies>
  180. <dependency>
  181. <groupId>org.springframework.cloud</groupId>
  182. <artifactId>spring-cloud-dependencies</artifactId>
  183. <version>Greenwich.SR2</version>
  184. <type>pom</type>
  185. <scope>import</scope>
  186. </dependency>
  187. </dependencies>
  188. </dependencyManagement>
  189. <build>
  190. <plugins>
  191. <plugin>
  192. <groupId>org.springframework.boot</groupId>
  193. <artifactId>spring-boot-maven-plugin</artifactId>
  194. <!--<configuration>-->
  195. <!--<fork>-->
  196. <!--true-->
  197. <!--</fork> &lt;!&ndash;如果没有这个配置的话,,devtools 不会生效&ndash;&gt;-->
  198. <!--</configuration>-->
  199. </plugin>
  200. <plugin>
  201. <groupId>org.apache.maven.plugins</groupId>
  202. <artifactId>maven-compiler-plugin</artifactId>
  203. <configuration>
  204. <source>1.8</source>
  205. <target>1.8</target>
  206. </configuration>
  207. </plugin>
  208. <plugin>
  209. <groupId>org.apache.maven.plugins</groupId>
  210. <artifactId>maven-deploy-plugin</artifactId>
  211. <configuration>
  212. <skip>true</skip>
  213. </configuration>
  214. </plugin>
  215. <plugin>
  216. <groupId>org.apache.maven.plugins</groupId>
  217. <artifactId>maven-surefire-plugin</artifactId>
  218. </plugin>
  219. </plugins>
  220. </build>
  221. </project>