pom.xml 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <artifactId>alarmNew</artifactId>
  5. <groupId>com.gyee</groupId>
  6. <version>1.0-SNAPSHOT</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>alarm-web</artifactId>
  10. <packaging>jar</packaging>
  11. <name>alarm-web</name>
  12. <!-- 统一管理jar包版本 -->
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <maven.compiler.source>1.8</maven.compiler.source>
  16. <maven.compiler.target>1.8</maven.compiler.target>
  17. <junit.version>4.12</junit.version>
  18. <log4j.version>2.15.0</log4j.version>
  19. <lombok.version>1.18.16</lombok.version>
  20. <mysql.version>5.1.45</mysql.version>
  21. <druid.version>1.2.5</druid.version>
  22. <mybatis.spring.boot.version>1.3.2</mybatis.spring.boot.version>
  23. <mybatis-plus.boot.starter.version>3.2.0</mybatis-plus.boot.starter.version>
  24. <mybatis-plus.generator.version>3.3.2</mybatis-plus.generator.version>
  25. <pgsql.version>42.2.5</pgsql.version>
  26. <groovy.version>3.0.8</groovy.version>
  27. <springframework.boot.version>2.2.2.RELEASE</springframework.boot.version>
  28. </properties>
  29. <dependencies>
  30. <dependency>
  31. <groupId>com.opencsv</groupId>
  32. <artifactId>opencsv</artifactId>
  33. <version>4.4</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-web</artifactId>
  38. <version>${springframework.boot.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-actuator</artifactId>
  43. <version>${springframework.boot.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-test</artifactId>
  48. <version>${springframework.boot.version}</version>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-data-redis</artifactId>
  54. <version>${springframework.boot.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-autoconfigure</artifactId>
  59. <version>${springframework.boot.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.projectlombok</groupId>
  63. <artifactId>lombok</artifactId>
  64. <optional>true</optional>
  65. <version>${lombok.version}</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.alibaba</groupId>
  69. <artifactId>druid</artifactId>
  70. <version>1.1.10</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.oracle</groupId>
  74. <artifactId>ojdbc6</artifactId>
  75. <version>11.2.0.3</version>
  76. <scope>compile</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework.data</groupId>
  80. <artifactId>spring-data-redis</artifactId>
  81. <version>2.3.6.RELEASE</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.baomidou</groupId>
  85. <artifactId>mybatis-plus-boot-starter</artifactId>
  86. <version>${mybatis-plus.boot.starter.version}</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.baomidou</groupId>
  90. <artifactId>mybatis-plus-generator</artifactId>
  91. <version>${mybatis-plus.generator.version}</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.baomidou</groupId>
  95. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  96. <version>3.5.0</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.freemarker</groupId>
  100. <artifactId>freemarker</artifactId>
  101. <version>2.3.28</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.gyee</groupId>
  105. <artifactId>common</artifactId>
  106. <version>1.0-SNAPSHOT</version>
  107. <scope>compile</scope>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.alibaba</groupId>
  111. <artifactId>fastjson</artifactId>
  112. <version>1.2.17</version>
  113. <scope>compile</scope>
  114. </dependency>
  115. <!-- ********************** plugin ********************** -->
  116. <!-- groovy-all -->
  117. <dependency>
  118. <groupId>org.codehaus.groovy</groupId>
  119. <artifactId>groovy</artifactId>
  120. <version>${groovy.version}</version>
  121. </dependency>
  122. <!-- xxl-job-core -->
  123. <dependency>
  124. <groupId>com.xuxueli</groupId>
  125. <artifactId>xxl-job-core</artifactId>
  126. <version>2.3.1-SNAPSHOT</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>com.google.code.gson</groupId>
  130. <artifactId>gson</artifactId>
  131. <version>2.8.6</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>io.netty</groupId>
  135. <artifactId>netty-all</artifactId>
  136. <version>4.1.55.Final</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.postgresql</groupId>
  140. <artifactId>postgresql</artifactId>
  141. <version>${pgsql.version}</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.apache.poi</groupId>
  145. <artifactId>poi</artifactId>
  146. <version>3.17</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>com.taosdata.jdbc</groupId>
  150. <artifactId>taos-jdbcdriver</artifactId>
  151. <version>3.2.2</version>
  152. </dependency>
  153. <!-- 工具类相关 -->
  154. <dependency>
  155. <groupId>com.alibaba</groupId>
  156. <artifactId>easyexcel</artifactId>
  157. <version>3.2.0</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>cn.hutool</groupId>
  161. <artifactId>hutool-all</artifactId>
  162. <version>5.1.1</version>
  163. </dependency>
  164. <!-- 添加swagger2 -->
  165. <dependency>
  166. <groupId>io.springfox</groupId>
  167. <artifactId>springfox-swagger2</artifactId>
  168. <version>2.9.2</version>
  169. <exclusions>
  170. <exclusion>
  171. <groupId>io.swagger</groupId>
  172. <artifactId>swagger-annotations</artifactId>
  173. </exclusion>
  174. <exclusion>
  175. <groupId>io.swagger</groupId>
  176. <artifactId>swagger-models</artifactId>
  177. </exclusion>
  178. </exclusions>
  179. </dependency>
  180. <dependency>
  181. <groupId>io.springfox</groupId>
  182. <artifactId>springfox-swagger-ui</artifactId>
  183. <version>2.9.2</version>
  184. </dependency>
  185. <dependency>
  186. <groupId>io.swagger</groupId>
  187. <artifactId>swagger-annotations</artifactId>
  188. <version>1.5.21</version>
  189. </dependency>
  190. <dependency>
  191. <groupId>io.swagger</groupId>
  192. <artifactId>swagger-models</artifactId>
  193. <version>1.5.21</version>
  194. </dependency>
  195. <dependency>
  196. <groupId>org.apache.poi</groupId>
  197. <artifactId>poi-ooxml</artifactId>
  198. <version>4.1.2</version>
  199. </dependency>
  200. <dependency>
  201. <groupId>org.apache.poi</groupId>
  202. <artifactId>poi</artifactId>
  203. <version>4.1.2</version>
  204. </dependency>
  205. </dependencies>
  206. <build>
  207. <plugins>
  208. <plugin>
  209. <groupId>org.springframework.boot</groupId>
  210. <artifactId>spring-boot-maven-plugin</artifactId>
  211. <version>2.7.1</version>
  212. <configuration>
  213. <!--maven编译时将本地引用的jar包一起打包-->
  214. <includeSystemScope>true</includeSystemScope>
  215. </configuration>
  216. <executions>
  217. <execution>
  218. <goals>
  219. <goal>repackage</goal>
  220. </goals>
  221. </execution>
  222. </executions>
  223. </plugin>
  224. </plugins>
  225. </build>
  226. </project>