pom.xml 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  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.RELEASE</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.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-security</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.apache.commons</groupId>
  53. <artifactId>commons-lang3</artifactId>
  54. <version>3.7</version>
  55. </dependency>
  56. <!-- <dependency>
  57. <groupId>org.activiti</groupId>
  58. <artifactId>activiti-spring-boot-starter-basic</artifactId>
  59. <version>6.0.0</version>
  60. </dependency> -->
  61. <!-- swagger2 -->
  62. <dependency>
  63. <groupId>io.springfox</groupId>
  64. <artifactId>springfox-swagger2</artifactId>
  65. <version>2.6.1</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>io.springfox</groupId>
  69. <artifactId>springfox-swagger-ui</artifactId>
  70. <version>2.6.1</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>mysql</groupId>
  74. <artifactId>mysql-connector-java</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-starter-data-redis</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework.session</groupId>
  82. <artifactId>spring-session-data-redis</artifactId>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework.boot</groupId>
  86. <artifactId>spring-boot-starter-test</artifactId>
  87. <scope>test</scope>
  88. </dependency>
  89. <!--发送短信jar包-->
  90. <dependency>
  91. <groupId>org.smslib</groupId>
  92. <artifactId>smslib</artifactId>
  93. <version>3.5.4</version>
  94. <scope>system</scope>
  95. <systemPath>${project.basedir}/src/main/resources/smslib-3.5.4.jar</systemPath>
  96. </dependency>
  97. <dependency>
  98. <groupId>gun.RXTXcomm</groupId>
  99. <artifactId>RXTXcomm</artifactId>
  100. <version>2.0.1</version>
  101. <scope>system</scope>
  102. <systemPath>${project.basedir}/src/main/resources/RXTXcomm-2.0.1.jar</systemPath>
  103. </dependency>
  104. <!--短信发送平台jar包-->
  105. <dependency>
  106. <groupId>org.projectlombok</groupId>
  107. <artifactId>lombok</artifactId>
  108. <optional>true</optional>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.apache.poi</groupId>
  112. <artifactId>poi-ooxml</artifactId>
  113. <version>3.9</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>com.google.code.gson</groupId>
  117. <artifactId>gson</artifactId>
  118. <version>2.8.2</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.alibaba</groupId>
  122. <artifactId>fastjson</artifactId>
  123. <version>1.2.37</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.springframework.boot</groupId>
  127. <artifactId>spring-boot-starter-tomcat</artifactId>
  128. <scope>provided</scope>
  129. </dependency>
  130. <!-- 定时需要的jar包 -->
  131. <dependency><!-- 该依赖必加,里面有sping对schedule的支持 -->
  132. <groupId>org.springframework</groupId>
  133. <artifactId>spring-context-support</artifactId>
  134. </dependency>
  135. <!-- 定时需要的jar包 end -->
  136. <!-- https://mvnrepository.com/artifact/log4j/log4j -->
  137. <dependency>
  138. <groupId>log4j</groupId>
  139. <artifactId>log4j</artifactId>
  140. <version>1.2.17</version>
  141. </dependency>
  142. <!-- gbase依赖包 -->
  143. <dependency>
  144. <groupId>com.gbase8s</groupId>
  145. <artifactId>ifxjdbc</artifactId>
  146. <version>1.0</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>com.gbase</groupId>
  150. <artifactId>druid</artifactId>
  151. <version>1.0.28</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.quartz-scheduler</groupId>
  155. <artifactId>quartz</artifactId>
  156. </dependency>
  157. <dependency>
  158. <groupId>com.squareup.okhttp3</groupId>
  159. <artifactId>okhttp</artifactId>
  160. <version>3.14.9</version>
  161. </dependency>
  162. <!-- 加载mybatis逆向生成工具包 -->
  163. <dependency>
  164. <groupId>org.mybatis.generator</groupId>
  165. <artifactId>mybatis-generator-core</artifactId>
  166. <!-- 注意版本.这里我使用的是1.3.2 -->
  167. <version>1.3.2</version>
  168. </dependency>
  169. </dependencies>
  170. <dependencyManagement>
  171. <dependencies>
  172. <dependency>
  173. <groupId>org.springframework.cloud</groupId>
  174. <artifactId>spring-cloud-dependencies</artifactId>
  175. <version>${spring-cloud.version}</version>
  176. <type>pom</type>
  177. <scope>import</scope>
  178. </dependency>
  179. </dependencies>
  180. </dependencyManagement>
  181. <build>
  182. <finalName>${project.artifactId}</finalName>
  183. <plugins>
  184. <plugin>
  185. <groupId>org.springframework.boot</groupId>
  186. <artifactId>spring-boot-maven-plugin</artifactId>
  187. </plugin>
  188. <plugin>
  189. <groupId>org.apache.maven.plugins</groupId>
  190. <artifactId>maven-surefire-plugin</artifactId>
  191. <configuration>
  192. <skip>true</skip>
  193. </configuration>
  194. </plugin>
  195. </plugins>
  196. <!-- 如果不添加此节点mybatis的mapper.xml文件都会被漏掉。 -->
  197. <resources>
  198. <resource>
  199. <directory>src/main/java</directory>
  200. <includes>
  201. <include>**/*.properties</include>
  202. <include>**/*.xml</include>
  203. <include>**/*.store</include>
  204. </includes>
  205. <filtering>false</filtering>
  206. </resource>
  207. <resource>
  208. <directory>src/main/resources</directory>
  209. </resource>
  210. </resources>
  211. </build>
  212. <repositories>
  213. <repository>
  214. <id>spring-milestones</id>
  215. <name>Spring Milestones</name>
  216. <url>https://repo.spring.io/milestone</url>
  217. <snapshots>
  218. <enabled>false</enabled>
  219. </snapshots>
  220. </repository>
  221. </repositories>
  222. </project>