pom.xml 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.1.4.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>edu.nju</groupId>
  12. <artifactId>bug</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>bug</name>
  15. <description>Bug project for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.session</groupId>
  26. <artifactId>spring-session-core</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-test</artifactId>
  31. <scope>test</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.google.code.gson</groupId>
  35. <artifactId>gson</artifactId>
  36. <version>2.8.2</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.json</groupId>
  40. <artifactId>json</artifactId>
  41. <version>20160810</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.poi</groupId>
  45. <artifactId>poi</artifactId>
  46. <version>3.17</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.apache.poi</groupId>
  50. <artifactId>poi-ooxml</artifactId>
  51. <version>3.17</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>commons-fileupload</groupId>
  59. <artifactId>commons-fileupload</artifactId>
  60. <version>1.2.1</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.ansj</groupId>
  64. <artifactId>ansj_seg</artifactId>
  65. <version>5.1.1</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.hankcs</groupId>
  69. <artifactId>hanlp</artifactId>
  70. <version>portable-1.7.0</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.projectlombok</groupId>
  74. <artifactId>lombok</artifactId>
  75. <version>1.18.8</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.cloud</groupId>
  79. <artifactId>spring-cloud-starter-zookeeper-config</artifactId>
  80. </dependency>
  81. <!--需要引入该jar才能使bootstrap配置文件生效-->
  82. <dependency>
  83. <groupId>org.springframework.cloud</groupId>
  84. <artifactId>spring-cloud-context</artifactId>
  85. </dependency>
  86. <!-- nacos-->
  87. <!-- <dependency>-->
  88. <!-- <groupId>org.springframework.cloud</groupId>-->
  89. <!-- <artifactId>spring-cloud-starter-gateway</artifactId>-->
  90. <!-- <exclusions>-->
  91. <!-- <exclusion>-->
  92. <!-- <groupId>org.springframework.cloud</groupId>-->
  93. <!-- <artifactId>spring-boot-starter-web</artifactId>-->
  94. <!-- </exclusion>-->
  95. <!-- <exclusion>-->
  96. <!-- <groupId>org.springframework.boot</groupId>-->
  97. <!-- <artifactId>spring-boot-starter-web</artifactId>-->
  98. <!-- </exclusion>-->
  99. <!-- <exclusion>-->
  100. <!-- <groupId>org.springframework.boot</groupId>-->
  101. <!-- <artifactId>spring-boot-starter-webflux</artifactId>-->
  102. <!-- </exclusion>-->
  103. <!-- </exclusions>-->
  104. <!-- </dependency>-->
  105. <!-- Nacos Client -->
  106. <!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-alibaba-nacos-discovery -->
  107. <!-- <dependency>-->
  108. <!-- <groupId>org.springframework.cloud</groupId>-->
  109. <!-- <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>-->
  110. <!-- <version>0.9.0.RELEASE</version>-->
  111. <!-- </dependency>-->
  112. <!-- <dependency>-->
  113. <!-- <groupId>com.alibaba.cloud</groupId>-->
  114. <!-- <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>-->
  115. <!-- </dependency>-->
  116. <!-- https://mvnrepository.com/artifact/com.alibaba.cloud/spring-cloud-starter-alibaba-nacos-discovery -->
  117. <!--暂时注释-->
  118. <!-- <dependency>-->
  119. <!-- <groupId>com.alibaba.cloud</groupId>-->
  120. <!-- <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>-->
  121. <!-- <version>2.1.0.RELEASE</version>-->
  122. <!-- </dependency>-->
  123. <dependency>
  124. <groupId>org.apache.commons</groupId>
  125. <artifactId>commons-lang3</artifactId>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.apache.commons</groupId>
  129. <artifactId>commons-io</artifactId>
  130. <version>1.3.2</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>com.aliyun.oss</groupId>
  134. <artifactId>aliyun-sdk-oss</artifactId>
  135. <version>3.8.0</version>
  136. </dependency>
  137. <!-- actuator -->
  138. <!-- <dependency>-->
  139. <!-- <groupId>org.springframework.boot</groupId>-->
  140. <!-- <artifactId>spring-boot-starter-actuator</artifactId>-->
  141. <!-- </dependency>-->
  142. <!--引入AOP依赖-->
  143. <dependency>
  144. <groupId>org.springframework.boot</groupId>
  145. <artifactId>spring-boot-starter-aop</artifactId>
  146. </dependency>
  147. <dependency>
  148. <groupId>com.google.guava</groupId>
  149. <artifactId>guava</artifactId>
  150. <version>25.0-jre</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>io.github.yedaxia</groupId>
  154. <artifactId>japidocs</artifactId>
  155. <version>1.4.4</version>
  156. </dependency>
  157. <!-- <dependency>-->
  158. <!-- <groupId>org.springframework.boot</groupId>-->
  159. <!-- <artifactId>spring-boot-starter-data-redis</artifactId>-->
  160. <!-- </dependency>-->
  161. <!-- <dependency>-->
  162. <!-- <groupId>org.springframework.session</groupId>-->
  163. <!-- <artifactId>spring-session-data-redis</artifactId>-->
  164. <!-- </dependency>-->
  165. </dependencies>
  166. <dependencyManagement>
  167. <dependencies>
  168. <dependency>
  169. <groupId>org.springframework.cloud</groupId>
  170. <artifactId>spring-cloud-dependencies</artifactId>
  171. <version>Greenwich.SR2</version>
  172. <type>pom</type>
  173. <scope>import</scope>
  174. </dependency>
  175. </dependencies>
  176. </dependencyManagement>
  177. <build>
  178. <plugins>
  179. <plugin>
  180. <groupId>org.springframework.boot</groupId>
  181. <artifactId>spring-boot-maven-plugin</artifactId>
  182. <configuration>
  183. <jvmArguments>-Dfile.encoding=UTF-8</jvmArguments>
  184. </configuration>
  185. <executions>
  186. <execution>
  187. <goals>
  188. <goal>repackage</goal>
  189. </goals>
  190. </execution>
  191. </executions>
  192. </plugin>
  193. </plugins>
  194. </build>
  195. </project>