pom.xml 9.7 KB

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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.chinaitop</groupId>
  6. <artifactId>depot-monitor-qinghai</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>depot-monitor-qinghai</name>
  10. <description>Demo project for Spring Boot</description>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>2.0.0.RELEASE</version>
  15. <relativePath/> <!-- lookup parent from repository -->
  16. </parent>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <java.version>1.8</java.version>
  21. <spring-cloud.version>Finchley.RELEASE</spring-cloud.version>
  22. <commons-lang3.version>3.14.0</commons-lang3.version>
  23. <httpclient.version>4.5.14</httpclient.version>
  24. <artemis-http-client.version>1.1.11</artemis-http-client.version>
  25. <skipTests>true</skipTests>
  26. </properties>
  27. <dependencies>
  28. <!--海康start-->
  29. <dependency>
  30. <groupId>com.hikvision.ga</groupId>
  31. <artifactId>artemis-http-client</artifactId>
  32. <version>${artemis-http-client.version}</version>
  33. <scope>system</scope>
  34. <systemPath>${pom.basedir}/lib/artemis-http-client-1.1.11.RELEASE.jar</systemPath>
  35. </dependency>
  36. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  37. <dependency>
  38. <groupId>org.apache.commons</groupId>
  39. <artifactId>commons-lang3</artifactId>
  40. <version>${commons-lang3.version}</version>
  41. </dependency>
  42. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  43. <dependency>
  44. <groupId>org.apache.httpcomponents</groupId>
  45. <artifactId>httpclient</artifactId>
  46. <version>${httpclient.version}</version>
  47. </dependency>
  48. <!--海康end-->
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-web</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.cloud</groupId>
  55. <artifactId>spring-cloud-starter-config</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.mybatis.spring.boot</groupId>
  59. <artifactId>mybatis-spring-boot-starter</artifactId>
  60. <version>1.3.1</version>
  61. </dependency>
  62. <!-- 引入spring boot自带的pagehelper插件 -->
  63. <dependency>
  64. <groupId>com.github.pagehelper</groupId>
  65. <artifactId>pagehelper-spring-boot-starter</artifactId>
  66. <version>1.2.3</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.cloud</groupId>
  70. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  71. </dependency>
  72. <!-- <dependency>
  73. <groupId>org.activiti</groupId>
  74. <artifactId>activiti-spring-boot-starter-basic</artifactId>
  75. <version>6.0.0</version>
  76. </dependency> -->
  77. <!-- swagger2 -->
  78. <dependency>
  79. <groupId>io.springfox</groupId>
  80. <artifactId>springfox-swagger2</artifactId>
  81. <version>2.6.1</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>io.springfox</groupId>
  85. <artifactId>springfox-swagger-ui</artifactId>
  86. <version>2.6.1</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>mysql</groupId>
  90. <artifactId>mysql-connector-java</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.springframework.boot</groupId>
  94. <artifactId>spring-boot-starter-data-redis</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.springframework.session</groupId>
  98. <artifactId>spring-session-data-redis</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.springframework.boot</groupId>
  102. <artifactId>spring-boot-starter-test</artifactId>
  103. <scope>test</scope>
  104. </dependency>
  105. <dependency>
  106. <groupId>cn.hutool</groupId>
  107. <artifactId>hutool-all</artifactId>
  108. <version>5.8.12</version>
  109. </dependency>
  110. <!--发送短信jar包-->
  111. <dependency>
  112. <groupId>org.smslib</groupId>
  113. <artifactId>smslib</artifactId>
  114. <version>3.5.4</version>
  115. <scope>system</scope>
  116. <systemPath>${project.basedir}/src/main/resources/smslib-3.5.4.jar</systemPath>
  117. </dependency>
  118. <dependency>
  119. <groupId>gun.RXTXcomm</groupId>
  120. <artifactId>RXTXcomm</artifactId>
  121. <version>2.0.1</version>
  122. <scope>system</scope>
  123. <systemPath>${project.basedir}/src/main/resources/RXTXcomm-2.0.1.jar</systemPath>
  124. </dependency>
  125. <!--短信发送平台jar包-->
  126. <dependency>
  127. <groupId>org.projectlombok</groupId>
  128. <artifactId>lombok</artifactId>
  129. <optional>true</optional>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.apache.poi</groupId>
  133. <artifactId>poi-ooxml</artifactId>
  134. <version>3.9</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>com.google.code.gson</groupId>
  138. <artifactId>gson</artifactId>
  139. <version>2.8.2</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>com.alibaba</groupId>
  143. <artifactId>fastjson</artifactId>
  144. <version>1.2.37</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.springframework.boot</groupId>
  148. <artifactId>spring-boot-starter-tomcat</artifactId>
  149. <scope>provided</scope>
  150. </dependency>
  151. <!-- 定时需要的jar包 -->
  152. <dependency><!-- 该依赖必加,里面有sping对schedule的支持 -->
  153. <groupId>org.springframework</groupId>
  154. <artifactId>spring-context-support</artifactId>
  155. </dependency>
  156. <!-- 定时需要的jar包 end -->
  157. <!-- https://mvnrepository.com/artifact/log4j/log4j -->
  158. <dependency>
  159. <groupId>log4j</groupId>
  160. <artifactId>log4j</artifactId>
  161. <version>1.2.17</version>
  162. </dependency>
  163. <!-- gbase依赖包 -->
  164. <dependency>
  165. <groupId>com.gbase8s</groupId>
  166. <artifactId>ifxjdbc</artifactId>
  167. <version>1.0</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>com.gbase</groupId>
  171. <artifactId>druid</artifactId>
  172. <version>1.0.28</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>org.quartz-scheduler</groupId>
  176. <artifactId>quartz</artifactId>
  177. </dependency>
  178. <dependency>
  179. <groupId>com.squareup.okhttp3</groupId>
  180. <artifactId>okhttp</artifactId>
  181. <version>3.14.9</version>
  182. </dependency>
  183. <!-- 加载mybatis逆向生成工具包 -->
  184. <dependency>
  185. <groupId>org.mybatis.generator</groupId>
  186. <artifactId>mybatis-generator-core</artifactId>
  187. <!-- 注意版本.这里我使用的是1.3.2 -->
  188. <version>1.3.2</version>
  189. </dependency>
  190. </dependencies>
  191. <dependencyManagement>
  192. <dependencies>
  193. <dependency>
  194. <groupId>org.springframework.cloud</groupId>
  195. <artifactId>spring-cloud-dependencies</artifactId>
  196. <version>${spring-cloud.version}</version>
  197. <type>pom</type>
  198. <scope>import</scope>
  199. </dependency>
  200. </dependencies>
  201. </dependencyManagement>
  202. <build>
  203. <finalName>${project.artifactId}</finalName>
  204. <plugins>
  205. <plugin>
  206. <groupId>org.springframework.boot</groupId>
  207. <artifactId>spring-boot-maven-plugin</artifactId>
  208. <configuration>
  209. <includeSystemScope>true</includeSystemScope>
  210. </configuration>
  211. <executions>
  212. <execution>
  213. <goals>
  214. <goal>repackage</goal>
  215. </goals>
  216. </execution>
  217. </executions>
  218. </plugin>
  219. <plugin>
  220. <groupId>org.apache.maven.plugins</groupId>
  221. <artifactId>maven-surefire-plugin</artifactId>
  222. <configuration>
  223. <skip>true</skip>
  224. </configuration>
  225. </plugin>
  226. </plugins>
  227. <!-- 如果不添加此节点mybatis的mapper.xml文件都会被漏掉。 -->
  228. <resources>
  229. <resource>
  230. <directory>src/main/java</directory>
  231. <includes>
  232. <include>**/*.properties</include>
  233. <include>**/*.xml</include>
  234. <include>**/*.store</include>
  235. </includes>
  236. <filtering>false</filtering>
  237. </resource>
  238. <resource>
  239. <directory>src/main/resources</directory>
  240. </resource>
  241. </resources>
  242. </build>
  243. <repositories>
  244. <repository>
  245. <id>spring-milestones</id>
  246. <name>Spring Milestones</name>
  247. <url>https://repo.spring.io/milestone</url>
  248. <snapshots>
  249. <enabled>false</enabled>
  250. </snapshots>
  251. </repository>
  252. </repositories>
  253. </project>