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 9.8 kB

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

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