pom.xml 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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. <dependency>
  118. <groupId>com.alibaba.cloud</groupId>
  119. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  120. <version>2.1.0.RELEASE</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>com.aliyun.oss</groupId>
  124. <artifactId>aliyun-sdk-oss</artifactId>
  125. <version>3.8.0</version>
  126. </dependency>
  127. <!-- actuator -->
  128. <!-- <dependency>-->
  129. <!-- <groupId>org.springframework.boot</groupId>-->
  130. <!-- <artifactId>spring-boot-starter-actuator</artifactId>-->
  131. <!-- </dependency>-->
  132. <!--引入AOP依赖-->
  133. <dependency>
  134. <groupId>org.springframework.boot</groupId>
  135. <artifactId>spring-boot-starter-aop</artifactId>
  136. </dependency>
  137. <dependency>
  138. <groupId>com.google.guava</groupId>
  139. <artifactId>guava</artifactId>
  140. <version>25.0-jre</version>
  141. </dependency>
  142. </dependencies>
  143. <dependencyManagement>
  144. <dependencies>
  145. <dependency>
  146. <groupId>org.springframework.cloud</groupId>
  147. <artifactId>spring-cloud-dependencies</artifactId>
  148. <version>Greenwich.SR2</version>
  149. <type>pom</type>
  150. <scope>import</scope>
  151. </dependency>
  152. </dependencies>
  153. </dependencyManagement>
  154. <build>
  155. <plugins>
  156. <plugin>
  157. <groupId>org.springframework.boot</groupId>
  158. <artifactId>spring-boot-maven-plugin</artifactId>
  159. <configuration>
  160. <jvmArguments>-Dfile.encoding=UTF-8</jvmArguments>
  161. </configuration>
  162. <executions>
  163. <execution>
  164. <goals>
  165. <goal>repackage</goal>
  166. </goals>
  167. </execution>
  168. </executions>
  169. </plugin>
  170. </plugins>
  171. </build>
  172. </project>