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

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

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