pom.xml 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  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</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>depot-monitor</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.M8</spring-cloud.version>
  22. </properties>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.cloud</groupId>
  30. <artifactId>spring-cloud-starter-config</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.mybatis.spring.boot</groupId>
  34. <artifactId>mybatis-spring-boot-starter</artifactId>
  35. <version>1.3.1</version>
  36. </dependency>
  37. <!-- 引入spring boot自带的pagehelper插件 -->
  38. <dependency>
  39. <groupId>com.github.pagehelper</groupId>
  40. <artifactId>pagehelper-spring-boot-starter</artifactId>
  41. <version>1.2.3</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.cloud</groupId>
  45. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.commons</groupId>
  49. <artifactId>commons-lang3</artifactId>
  50. <version>3.7</version>
  51. </dependency>
  52. <!-- <dependency>
  53. <groupId>org.activiti</groupId>
  54. <artifactId>activiti-spring-boot-starter-basic</artifactId>
  55. <version>6.0.0</version>
  56. </dependency> -->
  57. <!-- swagger2 -->
  58. <dependency>
  59. <groupId>io.springfox</groupId>
  60. <artifactId>springfox-swagger2</artifactId>
  61. <version>2.6.1</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>io.springfox</groupId>
  65. <artifactId>springfox-swagger-ui</artifactId>
  66. <version>2.6.1</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>mysql</groupId>
  70. <artifactId>mysql-connector-java</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-data-redis</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework.session</groupId>
  78. <artifactId>spring-session-data-redis</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework.boot</groupId>
  82. <artifactId>spring-boot-starter-test</artifactId>
  83. <scope>test</scope>
  84. </dependency>
  85. <!--发送短信jar包-->
  86. <dependency>
  87. <groupId>org.smslib</groupId>
  88. <artifactId>smslib</artifactId>
  89. <version>3.5.4</version>
  90. <scope>system</scope>
  91. <systemPath>${project.basedir}/src/main/resources/smslib-3.5.4.jar</systemPath>
  92. </dependency>
  93. <dependency>
  94. <groupId>gun.RXTXcomm</groupId>
  95. <artifactId>RXTXcomm</artifactId>
  96. <version>2.0.1</version>
  97. <scope>system</scope>
  98. <systemPath>${project.basedir}/src/main/resources/RXTXcomm-2.0.1.jar</systemPath>
  99. </dependency>
  100. <!--短信发送平台jar包-->
  101. <!--海康插件包-->
  102. <dependency>
  103. <groupId>org.artemis</groupId>
  104. <artifactId>artemis</artifactId>
  105. <version>1.2.0</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.projectlombok</groupId>
  109. <artifactId>lombok</artifactId>
  110. <optional>true</optional>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.apache.poi</groupId>
  114. <artifactId>poi-ooxml</artifactId>
  115. <version>3.9</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>com.google.code.gson</groupId>
  119. <artifactId>gson</artifactId>
  120. <version>2.8.2</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.springframework.boot</groupId>
  124. <artifactId>spring-boot-starter-tomcat</artifactId>
  125. <scope>provided</scope>
  126. </dependency>
  127. <!-- 定时需要的jar包 -->
  128. <dependency>
  129. <groupId>org.quartz-scheduler</groupId>
  130. <artifactId>quartz</artifactId>
  131. <version>2.2.1</version>
  132. <exclusions>
  133. <exclusion>
  134. <artifactId>slf4j-api</artifactId>
  135. <groupId>org.slf4j</groupId>
  136. </exclusion>
  137. </exclusions>
  138. </dependency>
  139. <dependency><!-- 该依赖必加,里面有sping对schedule的支持 -->
  140. <groupId>org.springframework</groupId>
  141. <artifactId>spring-context-support</artifactId>
  142. </dependency>
  143. <!-- 定时需要的jar包 end -->
  144. <!-- https://mvnrepository.com/artifact/log4j/log4j -->
  145. <dependency>
  146. <groupId>log4j</groupId>
  147. <artifactId>log4j</artifactId>
  148. <version>1.2.17</version>
  149. </dependency>
  150. <!-- 阿里巴巴json -->
  151. <!-- <dependency>
  152. <groupId>com.alibaba</groupId>
  153. <artifactId>fastjson</artifactId>
  154. <version>1.2.37</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.apache.httpcomponents</groupId>
  158. <artifactId>httpclient</artifactId>
  159. <version>4.5.6</version>
  160. </dependency> -->
  161. <dependency>
  162. <groupId>com.yiyou</groupId>
  163. <artifactId>artemis-http-client-1.2-SNAPSHOT-CL</artifactId>
  164. <version>1.0</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>com.yiyou</groupId>
  168. <artifactId>artemis-http-client-1.2-SNAPSHOT</artifactId>
  169. <version>1.0</version>
  170. </dependency>
  171. </dependencies>
  172. <dependencyManagement>
  173. <dependencies>
  174. <dependency>
  175. <groupId>org.springframework.cloud</groupId>
  176. <artifactId>spring-cloud-dependencies</artifactId>
  177. <version>${spring-cloud.version}</version>
  178. <type>pom</type>
  179. <scope>import</scope>
  180. </dependency>
  181. </dependencies>
  182. </dependencyManagement>
  183. <build>
  184. <finalName>${project.artifactId}</finalName>
  185. <plugins>
  186. <plugin>
  187. <groupId>org.springframework.boot</groupId>
  188. <artifactId>spring-boot-maven-plugin</artifactId>
  189. </plugin>
  190. <plugin>
  191. <groupId>org.apache.maven.plugins</groupId>
  192. <artifactId>maven-surefire-plugin</artifactId>
  193. <configuration>
  194. <skip>true</skip>
  195. </configuration>
  196. </plugin>
  197. </plugins>
  198. <!-- 如果不添加此节点mybatis的mapper.xml文件都会被漏掉。 -->
  199. <resources>
  200. <resource>
  201. <directory>src/main/java</directory>
  202. <includes>
  203. <include>**/*.properties</include>
  204. <include>**/*.xml</include>
  205. <include>**/*.store</include>
  206. </includes>
  207. <filtering>false</filtering>
  208. </resource>
  209. <resource>
  210. <directory>src/main/resources</directory>
  211. </resource>
  212. </resources>
  213. </build>
  214. <repositories>
  215. <repository>
  216. <id>spring-milestones</id>
  217. <name>Spring Milestones</name>
  218. <url>https://repo.spring.io/milestone</url>
  219. <snapshots>
  220. <enabled>false</enabled>
  221. </snapshots>
  222. </repository>
  223. </repositories>
  224. </project>