You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 8.3 kB

3 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  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 https://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>com.stonedt</groupId>
  12. <artifactId>stonedt-portal</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>stonedt-portal</name>
  15. <description>stonedt-portal</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <fastjson.version>1.2.47</fastjson.version>
  19. <druid-spring-boot-starter.version>1.1.10</druid-spring-boot-starter.version>
  20. <mybatis-spring-boot-starter.version>1.3.2</mybatis-spring-boot-starter.version>
  21. <pagehelper-spring-boot-starter.version>1.2.3</pagehelper-spring-boot-starter.version>
  22. </properties>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-aop</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.alibaba</groupId>
  30. <artifactId>fastjson</artifactId>
  31. <version>${fastjson.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.apache.commons</groupId>
  35. <artifactId>commons-lang3</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.alibaba</groupId>
  39. <artifactId>druid-spring-boot-starter</artifactId>
  40. <version>${druid-spring-boot-starter.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>mysql</groupId>
  44. <artifactId>mysql-connector-java</artifactId>
  45. <scope>runtime</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.mybatis.spring.boot</groupId>
  49. <artifactId>mybatis-spring-boot-starter</artifactId>
  50. <version>${mybatis-spring-boot-starter.version}</version>
  51. </dependency>
  52. <!-- 分页插件 -->
  53. <dependency>
  54. <groupId>com.github.pagehelper</groupId>
  55. <artifactId>pagehelper-spring-boot-starter</artifactId>
  56. <version>${pagehelper-spring-boot-starter.version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.httpcomponents</groupId>
  60. <artifactId>httpclient</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-starter-data-redis</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-starter-web</artifactId>
  73. <exclusions>
  74. <!-- json库统一使用fastjson -->
  75. <exclusion>
  76. <groupId>com.fasterxml.jackson.core</groupId>
  77. <artifactId>jackson-databind</artifactId>
  78. </exclusion>
  79. </exclusions>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-devtools</artifactId>
  84. <scope>runtime</scope>
  85. <optional>true</optional>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-starter-test</artifactId>
  90. <scope>test</scope>
  91. </dependency>
  92. <!-- <dependency>
  93. <groupId>com.github.binarywang</groupId>
  94. <artifactId>weixin-java-mp</artifactId>
  95. <version>3.6.0</version>
  96. </dependency> -->
  97. <dependency>
  98. <groupId>javax.mail</groupId>
  99. <artifactId>mail</artifactId>
  100. <version>1.4.7</version>
  101. </dependency>
  102. <!-- 雪花算法唯一id -->
  103. <dependency>
  104. <groupId>cn.hutool</groupId>
  105. <artifactId>hutool-all</artifactId>
  106. <version>5.2.5</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.apache.poi</groupId>
  110. <artifactId>poi</artifactId>
  111. <version>3.15</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.apache.poi</groupId>
  115. <artifactId>poi-ooxml</artifactId>
  116. <version>3.15</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.apache.poi</groupId>
  120. <artifactId>poi-ooxml-schemas</artifactId>
  121. <version>3.15</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>commons-httpclient</groupId>
  125. <artifactId>commons-httpclient</artifactId>
  126. <version>3.1</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.jsoup</groupId>
  130. <artifactId>jsoup</artifactId>
  131. <version>1.11.3</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.dom4j</groupId>
  135. <artifactId>dom4j</artifactId>
  136. <version>2.1.3</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.projectlombok</groupId>
  140. <artifactId>lombok</artifactId>
  141. </dependency>
  142. <dependency>
  143. <groupId>eu.bitwalker</groupId>
  144. <artifactId>UserAgentUtils</artifactId>
  145. <version>1.20</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>com.hankcs</groupId>
  149. <artifactId>hanlp</artifactId>
  150. <version>portable-1.7.0</version>
  151. </dependency>
  152. </dependencies>
  153. <build>
  154. <finalName>stonedt-portal</finalName>
  155. <plugins>
  156. <plugin>
  157. <groupId>org.springframework.boot</groupId>
  158. <artifactId>spring-boot-maven-plugin</artifactId>
  159. <configuration>
  160. <fork>true</fork>
  161. </configuration>
  162. </plugin>
  163. <!--<plugin>-->
  164. <!--<groupId>org.springframework.boot</groupId>-->
  165. <!--<artifactId>spring-boot-maven-plugin</artifactId>-->
  166. <!--<configuration>-->
  167. <!--<source>1.8</source>-->
  168. <!--<target>1.8</target>-->
  169. <!--<encoding>UTF-8</encoding>-->
  170. <!--<compilerArguments>-->
  171. <!--<extdirs>${project.basedir}/libs</extdirs>-->
  172. <!--</compilerArguments>-->
  173. <!--<includeSystemScope>true</includeSystemScope>-->
  174. <!--</configuration>-->
  175. <!--</plugin>-->
  176. <plugin>
  177. <groupId>org.apache.maven.plugins</groupId>
  178. <artifactId>maven-resources-plugin</artifactId>
  179. <configuration>
  180. <nonFilteredFileExtensions>
  181. <nonFilteredFileExtension>woff</nonFilteredFileExtension>
  182. <nonFilteredFileExtension>woff2</nonFilteredFileExtension>
  183. <nonFilteredFileExtension>eot</nonFilteredFileExtension>
  184. <nonFilteredFileExtension>ttf</nonFilteredFileExtension>
  185. <nonFilteredFileExtension>svg</nonFilteredFileExtension>
  186. </nonFilteredFileExtensions>
  187. </configuration>
  188. </plugin>
  189. </plugins>
  190. <resources>
  191. <resource>
  192. <directory>${project.basedir}/src/main/resources</directory>
  193. <filtering>true</filtering>
  194. <excludes>
  195. <exclude>static/**</exclude>
  196. </excludes>
  197. </resource>
  198. <resource>
  199. <directory>${project.basedir}/src/main/resources</directory>
  200. <filtering>false</filtering>
  201. <includes>
  202. <include>static/**</include>
  203. </includes>
  204. </resource>
  205. </resources>
  206. </build>
  207. </project>

一款开源免费的舆情系统。 支持本地化部署,支持在线体验。 支持对海量舆情数据分析和挖掘。