pom.xml 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  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. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.json</groupId>
  25. <artifactId>json</artifactId>
  26. <version>20180130</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-web</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  35. </dependency>
  36. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-devtools -->
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-devtools</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.github.haifengl</groupId>
  43. <artifactId>smile-core</artifactId>
  44. <version>1.5.2</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.github.haifengl</groupId>
  48. <artifactId>smile-netlib</artifactId>
  49. <version>1.5.2</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.alibaba</groupId>
  53. <artifactId>fastjson</artifactId>
  54. <version>1.2.47</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-configuration-processor</artifactId>
  59. <optional>true</optional>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.projectlombok</groupId>
  63. <artifactId>lombok</artifactId>
  64. <version>1.18.6</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.fasterxml.jackson.dataformat</groupId>
  68. <artifactId>jackson-dataformat-yaml</artifactId>
  69. <version>2.6.3</version>
  70. </dependency>
  71. <!-- https://mvnrepository.com/artifact/org.jgrapht/jgrapht-core -->
  72. <dependency>
  73. <groupId>org.jgrapht</groupId>
  74. <artifactId>jgrapht-core</artifactId>
  75. <version>1.3.0</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.hankcs</groupId>
  79. <artifactId>hanlp</artifactId>
  80. <version>portable-1.7.0</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.ansj</groupId>
  84. <artifactId>ansj_seg</artifactId>
  85. <version>5.1.1</version>
  86. </dependency>
  87. <!-- https://mvnrepository.com/artifact/com.github.zengde/lire -->
  88. <dependency>
  89. <groupId>com.github.zengde</groupId>
  90. <artifactId>lire</artifactId>
  91. <version>1.0b2</version>
  92. </dependency>
  93. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-collections4 -->
  94. <dependency>
  95. <groupId>org.apache.commons</groupId>
  96. <artifactId>commons-collections4</artifactId>
  97. <version>4.2</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.springframework.boot</groupId>
  101. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.springframework.boot</groupId>
  105. <artifactId>spring-boot-configuration-processor</artifactId>
  106. <optional>true</optional>
  107. </dependency>
  108. <dependency>
  109. <groupId>com.google.guava</groupId>
  110. <artifactId>guava</artifactId>
  111. <version>19.0</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.springframework.boot</groupId>
  115. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  116. </dependency>
  117. <!-- 基本依赖,仅操作 xls 格式只需引入此依赖 -->
  118. <dependency>
  119. <groupId>org.apache.poi</groupId>
  120. <artifactId>poi</artifactId>
  121. <version>3.14</version>
  122. </dependency>
  123. <!-- 使用 xlsx 格式需要额外引入此依赖 -->
  124. <dependency>
  125. <groupId>org.apache.poi</groupId>
  126. <artifactId>poi-ooxml</artifactId>
  127. <version>3.14</version>
  128. </dependency>
  129. </dependencies>
  130. <build>
  131. <plugins>
  132. <plugin>
  133. <groupId>org.springframework.boot</groupId>
  134. <artifactId>spring-boot-maven-plugin</artifactId>
  135. </plugin>
  136. <plugin>
  137. <groupId>org.apache.maven.plugins</groupId>
  138. <artifactId>maven-compiler-plugin</artifactId>
  139. <configuration>
  140. <source>1.8</source>
  141. <target>1.8</target>
  142. </configuration>
  143. </plugin>
  144. <plugin>
  145. <groupId>org.apache.maven.plugins</groupId>
  146. <artifactId>maven-deploy-plugin</artifactId>
  147. <configuration>
  148. <skip>true</skip>
  149. </configuration>
  150. </plugin>
  151. <plugin>
  152. <groupId>org.apache.maven.plugins</groupId>
  153. <artifactId>maven-surefire-plugin</artifactId>
  154. </plugin>
  155. </plugins>
  156. </build>
  157. </project>