pom.xml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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.springframework.cloud</groupId>
  74. <artifactId>spring-cloud-starter-zookeeper-config</artifactId>
  75. </dependency>
  76. <!--需要引入该jar才能使bootstrap配置文件生效-->
  77. <dependency>
  78. <groupId>org.springframework.cloud</groupId>
  79. <artifactId>spring-cloud-context</artifactId>
  80. </dependency>
  81. <!-- nacos-->
  82. <dependency>
  83. <groupId>org.springframework.cloud</groupId>
  84. <artifactId>spring-cloud-starter-gateway</artifactId>
  85. <exclusions>
  86. <exclusion>
  87. <groupId>org.springframework.cloud</groupId>
  88. <artifactId>spring-boot-starter-web</artifactId>
  89. </exclusion>
  90. <exclusion>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-starter-web</artifactId>
  93. </exclusion>
  94. <exclusion>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-starter-webflux</artifactId>
  97. </exclusion>
  98. </exclusions>
  99. </dependency>
  100. <!-- Nacos Client -->
  101. <!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-alibaba-nacos-discovery -->
  102. <!-- <dependency>-->
  103. <!-- <groupId>org.springframework.cloud</groupId>-->
  104. <!-- <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>-->
  105. <!-- <version>0.9.0.RELEASE</version>-->
  106. <!-- </dependency>-->
  107. <!-- <dependency>-->
  108. <!-- <groupId>com.alibaba.cloud</groupId>-->
  109. <!-- <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>-->
  110. <!-- </dependency>-->
  111. <!-- https://mvnrepository.com/artifact/com.alibaba.cloud/spring-cloud-starter-alibaba-nacos-discovery -->
  112. <dependency>
  113. <groupId>com.alibaba.cloud</groupId>
  114. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  115. <version>2.1.0.RELEASE</version>
  116. </dependency>
  117. <!-- actuator -->
  118. <dependency>
  119. <groupId>org.springframework.boot</groupId>
  120. <artifactId>spring-boot-starter-actuator</artifactId>
  121. </dependency>
  122. </dependencies>
  123. <dependencyManagement>
  124. <dependencies>
  125. <dependency>
  126. <groupId>org.springframework.cloud</groupId>
  127. <artifactId>spring-cloud-dependencies</artifactId>
  128. <version>Greenwich.SR2</version>
  129. <type>pom</type>
  130. <scope>import</scope>
  131. </dependency>
  132. </dependencies>
  133. </dependencyManagement>
  134. <build>
  135. <plugins>
  136. <plugin>
  137. <groupId>org.springframework.boot</groupId>
  138. <artifactId>spring-boot-maven-plugin</artifactId>
  139. <configuration>
  140. <jvmArguments>-Dfile.encoding=UTF-8</jvmArguments>
  141. </configuration>
  142. <executions>
  143. <execution>
  144. <goals>
  145. <goal>repackage</goal>
  146. </goals>
  147. </execution>
  148. </executions>
  149. </plugin>
  150. </plugins>
  151. </build>
  152. </project>