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

453 lines
12 KiB

  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.0.6.RELEASE</version>
  9. </parent>
  10. <groupId>com.lenovo</groupId>
  11. <artifactId>on-visitor-web</artifactId>
  12. <packaging>war</packaging>
  13. <name>奥北科技园访客系统</name>
  14. <inceptionYear>2018-Now</inceptionYear>
  15. <properties>
  16. <start-class>com.lecooai.visitor.web.Application</start-class>
  17. <resource.delimiter>#</resource.delimiter>
  18. <!-- environment setting -->
  19. <java.version>1.8</java.version>
  20. <maven.test.skip>true</maven.test.skip>
  21. <eclipse-plugin-download-sources>false</eclipse-plugin-download-sources>
  22. <eclipse-plugin-download-javadocs>false</eclipse-plugin-download-javadocs>
  23. <jeesite-framework.version>4.1.1-SNAPSHOT</jeesite-framework.version>
  24. <jeesite-common.version>4.1.1</jeesite-common.version>
  25. <commons-lang3.version>3.5</commons-lang3.version>
  26. <commons-io.version>2.5</commons-io.version>
  27. <commons-fileupload.version>1.3.1</commons-fileupload.version>
  28. <commons-text.version>1.3</commons-text.version>
  29. <ruedigermoeller-fst.version>2.56</ruedigermoeller-fst.version>
  30. <blade-patchca.version>1.1.0</blade-patchca.version>
  31. <weixin-java-mp.version>4.1.0</weixin-java-mp.version>
  32. </properties>
  33. <dependencies>
  34. <!-- jeesite 核心模块 -->
  35. <dependency>
  36. <groupId>com.jeesite</groupId>
  37. <artifactId>jeesite-framework</artifactId>
  38. <version>${jeesite-framework.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.jeesite</groupId>
  42. <artifactId>jeesite-module-core</artifactId>
  43. <version>${jeesite-framework.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.jeesite</groupId>
  47. <artifactId>jeesite-common</artifactId>
  48. <version>${jeesite-common.version}</version>
  49. </dependency>
  50. <!-- junit -->
  51. <dependency>
  52. <groupId>junit</groupId>
  53. <artifactId>junit</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-test</artifactId>
  58. <scope>test</scope>
  59. </dependency>
  60. <!-- apache common -->
  61. <dependency>
  62. <groupId>org.apache.commons</groupId>
  63. <artifactId>commons-lang3</artifactId>
  64. <version>${commons-lang3.version}</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>commons-io</groupId>
  68. <artifactId>commons-io</artifactId>
  69. <version>${commons-io.version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>commons-codec</groupId>
  73. <artifactId>commons-codec</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>commons-fileupload</groupId>
  77. <artifactId>commons-fileupload</artifactId>
  78. <version>${commons-fileupload.version}</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>commons-beanutils</groupId>
  82. <artifactId>commons-beanutils</artifactId>
  83. <version>1.9.3</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.apache.commons</groupId>
  87. <artifactId>commons-text</artifactId>
  88. <version>${commons-text.version}</version>
  89. </dependency>
  90. <!-- Java serialization -->
  91. <dependency>
  92. <groupId>de.ruedigermoeller</groupId>
  93. <artifactId>fst</artifactId>
  94. <version>${ruedigermoeller-fst.version}</version>
  95. </dependency>
  96. <!-- Jackson json -->
  97. <dependency>
  98. <groupId>com.fasterxml.jackson.core</groupId>
  99. <artifactId>jackson-core</artifactId>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.fasterxml.jackson.core</groupId>
  103. <artifactId>jackson-databind</artifactId>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.fasterxml.jackson.dataformat</groupId>
  107. <artifactId>jackson-dataformat-xml</artifactId>
  108. </dependency>
  109. <!-- dom4j -->
  110. <dependency>
  111. <groupId>dom4j</groupId>
  112. <artifactId>dom4j</artifactId>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.beust</groupId>
  116. <artifactId>jcommander</artifactId>
  117. <version>1.72</version>
  118. </dependency>
  119. <!-- User Agent -->
  120. <dependency>
  121. <groupId>eu.bitwalker</groupId>
  122. <artifactId>UserAgentUtils</artifactId>
  123. <version>1.20</version>
  124. </dependency>
  125. <!-- Snake YAML -->
  126. <dependency>
  127. <groupId>org.yaml</groupId>
  128. <artifactId>snakeyaml</artifactId>
  129. </dependency>
  130. <!-- lombok -->
  131. <dependency>
  132. <groupId>org.projectlombok</groupId>
  133. <artifactId>lombok</artifactId>
  134. <scope>provided</scope>
  135. <optional>true</optional>
  136. </dependency>
  137. <dependency>
  138. <groupId>javax.xml.bind</groupId>
  139. <artifactId>jaxb-api</artifactId>
  140. <version>2.3.0</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>com.lenovo</groupId>
  144. <artifactId>nowgo-common</artifactId>
  145. <version>0.0.2</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>com.alibaba</groupId>
  149. <artifactId>fastjson</artifactId>
  150. <version>1.2.44</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>com.google.guava</groupId>
  154. <artifactId>guava</artifactId>
  155. <version>23.6-jre</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>net.coobird</groupId>
  159. <artifactId>thumbnailator</artifactId>
  160. <version>0.4.8</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.springframework.boot</groupId>
  164. <artifactId>spring-boot-starter-websocket</artifactId>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.apache.poi</groupId>
  168. <artifactId>poi</artifactId>
  169. <version>3.14</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>org.apache.poi</groupId>
  173. <artifactId>poi-ooxml</artifactId>
  174. <version>3.14</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.apache.poi</groupId>
  178. <artifactId>poi-ooxml-schemas</artifactId>
  179. <version>3.14</version>
  180. </dependency>
  181. <!-- 图片验证码生成 -->
  182. <dependency>
  183. <groupId>com.bladejava</groupId>
  184. <artifactId>blade-patchca</artifactId>
  185. <version>${blade-patchca.version}</version>
  186. </dependency>
  187. <!-- mapUtils 工具类 -->
  188. <dependency>
  189. <groupId>org.apache.commons</groupId>
  190. <artifactId>commons-collections4</artifactId>
  191. <version>4.2</version>
  192. </dependency>
  193. <dependency>
  194. <groupId>javax.activation</groupId>
  195. <artifactId>activation</artifactId>
  196. <version>1.1.1</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>commons-net</groupId>
  200. <artifactId>commons-net</artifactId>
  201. <version>3.6</version>
  202. </dependency>
  203. <dependency>
  204. <groupId>com.github.binarywang</groupId>
  205. <artifactId>weixin-java-mp</artifactId>
  206. <version>${weixin-java-mp.version}</version>
  207. </dependency>
  208. <dependency>
  209. <groupId>redis.clients</groupId>
  210. <artifactId>jedis</artifactId>
  211. <version>3.3.0</version>
  212. </dependency>
  213. <dependency>
  214. <groupId>org.springframework.boot</groupId>
  215. <artifactId>spring-boot-configuration-processor</artifactId>
  216. <optional>true</optional>
  217. </dependency>
  218. <dependency>
  219. <groupId>com.aliyun</groupId>
  220. <artifactId>tea-openapi</artifactId>
  221. <version>0.0.19</version>
  222. </dependency>
  223. <dependency>
  224. <groupId>com.aliyun</groupId>
  225. <artifactId>dysmsapi20170525</artifactId>
  226. <version>2.0.5</version>
  227. </dependency>
  228. <!-- zxing生成二维码 -->
  229. <dependency>
  230. <groupId>com.google.zxing</groupId>
  231. <artifactId>core</artifactId>
  232. <version>3.3.3</version>
  233. </dependency>
  234. <dependency>
  235. <groupId>com.google.zxing</groupId>
  236. <artifactId>javase</artifactId>
  237. <version>3.3.3</version>
  238. </dependency>
  239. <dependency>
  240. <groupId>org.springframework.integration</groupId>
  241. <artifactId>spring-integration-mqtt</artifactId>
  242. </dependency>
  243. <dependency>
  244. <groupId>com.konghq</groupId>
  245. <artifactId>unirest-java</artifactId>
  246. <version>3.7.04</version>
  247. </dependency>
  248. <dependency>
  249. <groupId>org.springframework.boot</groupId>
  250. <artifactId>spring-boot-starter-redis</artifactId>
  251. <version>1.4.1.RELEASE</version>
  252. </dependency>
  253. <dependency>
  254. <groupId>com.alibaba</groupId>
  255. <artifactId>fastjson</artifactId>
  256. <version>1.2.44</version>
  257. </dependency>
  258. <dependency>
  259. <groupId>com.fasterxml.jackson.core</groupId>
  260. <artifactId>jackson-databind</artifactId>
  261. </dependency>
  262. <dependency>
  263. <groupId>org.springframework.boot</groupId>
  264. <artifactId>spring-boot-starter-batch</artifactId>
  265. </dependency>
  266. <dependency>
  267. <groupId>org.springframework.session</groupId>
  268. <artifactId>spring-session-data-redis</artifactId>
  269. <version>2.0.1.RELEASE</version>
  270. </dependency>
  271. <dependency>
  272. <groupId>com.squareup.okhttp3</groupId>
  273. <artifactId>okhttp</artifactId>
  274. <version>3.14.9</version>
  275. </dependency>
  276. </dependencies>
  277. <build>
  278. <finalName>${project.artifactId}</finalName>
  279. <outputDirectory>${project.basedir}/src/main/webapp/WEB-INF/classes/</outputDirectory>
  280. <plugins>
  281. <!-- Spring Boot -->
  282. <plugin>
  283. <groupId>org.springframework.boot</groupId>
  284. <artifactId>spring-boot-maven-plugin</artifactId>
  285. </plugin>
  286. <!-- Eclipse插件 -->
  287. <plugin>
  288. <groupId>org.apache.maven.plugins</groupId>
  289. <artifactId>maven-eclipse-plugin</artifactId>
  290. <configuration>
  291. <downloadSources>${eclipse-plugin-download-sources}</downloadSources>
  292. <downloadJavadocs>${eclipse-plugin-download-javadocs}</downloadJavadocs>
  293. <wtpContextName>${project.artifactId}</wtpContextName>
  294. <wtpversion>2.0</wtpversion>
  295. <jeeversion>6.0</jeeversion>
  296. </configuration>
  297. <executions>
  298. <execution>
  299. <configuration>
  300. <delimiters>
  301. <delimiter>#</delimiter>
  302. </delimiters>
  303. </configuration>
  304. </execution>
  305. </executions>
  306. </plugin>
  307. </plugins>
  308. </build>
  309. <repositories>
  310. <repository>
  311. <id>aliyun-repos</id>
  312. <name>Aliyun Repository</name>
  313. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  314. <releases>
  315. <enabled>true</enabled>
  316. </releases>
  317. <snapshots>
  318. <updatePolicy>never</updatePolicy>
  319. <enabled>false</enabled>
  320. </snapshots>
  321. </repository>
  322. <repository>
  323. <id>nowgo</id>
  324. <name>nowgo</name>
  325. <url>http://10.110.130.81:8081/repository/nowgo/</url>
  326. <releases>
  327. <enabled>true</enabled>
  328. </releases>
  329. <snapshots>
  330. <updatePolicy>never</updatePolicy>
  331. <enabled>false</enabled>
  332. </snapshots>
  333. </repository>
  334. <repository>
  335. <id>sonatype-repos</id>
  336. <name>Sonatype Repository</name>
  337. <url>https://oss.sonatype.org/content/groups/public</url>
  338. <releases>
  339. <enabled>true</enabled>
  340. </releases>
  341. <snapshots>
  342. <updatePolicy>never</updatePolicy>
  343. <enabled>false</enabled>
  344. </snapshots>
  345. </repository>
  346. <repository>
  347. <id>sonatype-repos-s</id>
  348. <name>Sonatype Repository</name>
  349. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  350. <releases>
  351. <enabled>false</enabled>
  352. </releases>
  353. <snapshots>
  354. <updatePolicy>never</updatePolicy>
  355. <enabled>true</enabled>
  356. </snapshots>
  357. </repository>
  358. </repositories>
  359. <pluginRepositories>
  360. <pluginRepository>
  361. <id>aliyun-repos</id>
  362. <name>Aliyun Repository</name>
  363. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  364. <releases>
  365. <enabled>true</enabled>
  366. </releases>
  367. <snapshots>
  368. <enabled>false</enabled>
  369. </snapshots>
  370. </pluginRepository>
  371. </pluginRepositories>
  372. <profiles>
  373. <profile>
  374. <!-- 生产环境 -->
  375. <id>prod</id>
  376. <properties>
  377. <spring.profiles.active>prod</spring.profiles.active>
  378. </properties>
  379. </profile>
  380. <profile>
  381. <!-- 本地开发环境 -->
  382. <id>dev</id>
  383. <properties>
  384. <spring.profiles.active>dev</spring.profiles.active>
  385. </properties>
  386. <activation>
  387. <activeByDefault>true</activeByDefault>
  388. </activation>
  389. </profile>
  390. <profile>
  391. <!-- 测试环境 -->
  392. <id>test</id>
  393. <properties>
  394. <spring.profiles.active>test</spring.profiles.active>
  395. </properties>
  396. </profile>
  397. <profile>
  398. <!-- docker测试环境 -->
  399. <id>docker</id>
  400. <properties>
  401. <spring.profiles.active>docker</spring.profiles.active>
  402. </properties>
  403. </profile>
  404. </profiles>
  405. </project>