pom.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  30. </dependency>
  31. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-devtools -->
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-devtools</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.github.haifengl</groupId>
  38. <artifactId>smile-core</artifactId>
  39. <version>1.5.2</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.github.haifengl</groupId>
  43. <artifactId>smile-netlib</artifactId>
  44. <version>1.5.2</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.alibaba</groupId>
  48. <artifactId>fastjson</artifactId>
  49. <version>1.2.47</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-configuration-processor</artifactId>
  54. <optional>true</optional>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.projectlombok</groupId>
  58. <artifactId>lombok</artifactId>
  59. <version>1.18.6</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.fasterxml.jackson.dataformat</groupId>
  63. <artifactId>jackson-dataformat-yaml</artifactId>
  64. <version>2.6.3</version>
  65. </dependency>
  66. <!-- https://mvnrepository.com/artifact/org.jgrapht/jgrapht-core -->
  67. <dependency>
  68. <groupId>org.jgrapht</groupId>
  69. <artifactId>jgrapht-core</artifactId>
  70. <version>1.3.0</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.hankcs</groupId>
  74. <artifactId>hanlp</artifactId>
  75. <version>portable-1.7.0</version>
  76. </dependency>
  77. <!-- https://mvnrepository.com/artifact/com.github.zengde/lire -->
  78. <dependency>
  79. <groupId>com.github.zengde</groupId>
  80. <artifactId>lire</artifactId>
  81. <version>1.0b2</version>
  82. </dependency>
  83. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-collections4 -->
  84. <dependency>
  85. <groupId>org.apache.commons</groupId>
  86. <artifactId>commons-collections4</artifactId>
  87. <version>4.2</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-configuration-processor</artifactId>
  96. <optional>true</optional>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.google.guava</groupId>
  100. <artifactId>guava</artifactId>
  101. <version>19.0</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.springframework.boot</groupId>
  105. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  106. </dependency>
  107. </dependencies>
  108. <build>
  109. <plugins>
  110. <plugin>
  111. <groupId>org.springframework.boot</groupId>
  112. <artifactId>spring-boot-maven-plugin</artifactId>
  113. </plugin>
  114. <plugin>
  115. <groupId>org.apache.maven.plugins</groupId>
  116. <artifactId>maven-compiler-plugin</artifactId>
  117. <configuration>
  118. <source>1.8</source>
  119. <target>1.8</target>
  120. </configuration>
  121. </plugin>
  122. <plugin>
  123. <groupId>org.apache.maven.plugins</groupId>
  124. <artifactId>maven-deploy-plugin</artifactId>
  125. <configuration>
  126. <skip>true</skip>
  127. </configuration>
  128. </plugin>
  129. <plugin>
  130. <groupId>org.apache.maven.plugins</groupId>
  131. <artifactId>maven-surefire-plugin</artifactId>
  132. </plugin>
  133. </plugins>
  134. </build>
  135. </project>