pom.xml 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  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-custom</artifactId>
  10. <packaging>jar</packaging>
  11. <name>alarm-custom</name>
  12. <url>http://maven.apache.org</url>
  13. <!-- 统一管理jar包版本 -->
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <maven.compiler.source>1.8</maven.compiler.source>
  17. <maven.compiler.target>1.8</maven.compiler.target>
  18. <junit.version>4.12</junit.version>
  19. <log4j.version>2.15.0</log4j.version>
  20. <lombok.version>1.18.16</lombok.version>
  21. <mysql.version>5.1.45</mysql.version>
  22. <druid.version>1.2.5</druid.version>
  23. <mybatis.spring.boot.version>1.3.2</mybatis.spring.boot.version>
  24. <mybatis-plus.boot.starter.version>3.2.0</mybatis-plus.boot.starter.version>
  25. <mybatis-plus.generator.version>3.3.2</mybatis-plus.generator.version>
  26. <pgsql.version>42.2.5</pgsql.version>
  27. <groovy.version>3.0.8</groovy.version>
  28. <springframework.boot.version>2.2.2.RELEASE</springframework.boot.version>
  29. </properties>
  30. <dependencies>
  31. <dependency>
  32. <groupId>com.google.guava</groupId>
  33. <artifactId>guava</artifactId>
  34. <version>23.0</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>junit</groupId>
  38. <artifactId>junit</artifactId>
  39. <version>3.8.1</version>
  40. <scope>test</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.netflix.feign</groupId>
  44. <artifactId>feign-core</artifactId>
  45. <version>8.18.0</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.netflix.feign</groupId>
  49. <artifactId>feign-jackson</artifactId>
  50. <version>8.18.0</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.alibaba.fastjson2</groupId>
  54. <artifactId>fastjson2</artifactId>
  55. <version>2.0.32</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.fasterxml.jackson</groupId>
  59. <artifactId>jackson-bom</artifactId>
  60. <version>2.14.3</version>
  61. <type>pom</type>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.fasterxml.jackson.core</groupId>
  65. <artifactId>jackson-databind</artifactId>
  66. <version>2.14.3</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.opencsv</groupId>
  70. <artifactId>opencsv</artifactId>
  71. <version>4.4</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter-web</artifactId>
  76. <version>${springframework.boot.version}</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-starter-actuator</artifactId>
  81. <version>${springframework.boot.version}</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-starter-test</artifactId>
  86. <version>${springframework.boot.version}</version>
  87. <scope>test</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-starter-data-redis</artifactId>
  92. <version>${springframework.boot.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-autoconfigure</artifactId>
  97. <version>${springframework.boot.version}</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.projectlombok</groupId>
  101. <artifactId>lombok</artifactId>
  102. <optional>true</optional>
  103. <version>${lombok.version}</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.alibaba</groupId>
  107. <artifactId>druid</artifactId>
  108. <version>1.1.10</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>com.oracle</groupId>
  112. <artifactId>ojdbc6</artifactId>
  113. <version>11.2.0.3</version>
  114. <scope>compile</scope>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.springframework.data</groupId>
  118. <artifactId>spring-data-redis</artifactId>
  119. <version>2.3.6.RELEASE</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>com.baomidou</groupId>
  123. <artifactId>mybatis-plus-boot-starter</artifactId>
  124. <version>${mybatis-plus.boot.starter.version}</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>com.baomidou</groupId>
  128. <artifactId>mybatis-plus-generator</artifactId>
  129. <version>${mybatis-plus.generator.version}</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>com.baomidou</groupId>
  133. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  134. <version>3.5.0</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.freemarker</groupId>
  138. <artifactId>freemarker</artifactId>
  139. <version>2.3.28</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>com.gyee</groupId>
  143. <artifactId>common</artifactId>
  144. <version>1.0-SNAPSHOT</version>
  145. <scope>compile</scope>
  146. </dependency>
  147. <dependency>
  148. <groupId>com.alibaba</groupId>
  149. <artifactId>fastjson</artifactId>
  150. <version>1.2.17</version>
  151. <scope>compile</scope>
  152. </dependency>
  153. <!-- ********************** plugin ********************** -->
  154. <!-- groovy-all -->
  155. <dependency>
  156. <groupId>org.codehaus.groovy</groupId>
  157. <artifactId>groovy</artifactId>
  158. <version>${groovy.version}</version>
  159. </dependency>
  160. <!-- xxl-job-core -->
  161. <dependency>
  162. <groupId>com.xuxueli</groupId>
  163. <artifactId>xxl-job-core</artifactId>
  164. <version>2.3.1-SNAPSHOT</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>com.google.code.gson</groupId>
  168. <artifactId>gson</artifactId>
  169. <version>2.8.6</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>io.netty</groupId>
  173. <artifactId>netty-all</artifactId>
  174. <version>4.1.55.Final</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.postgresql</groupId>
  178. <artifactId>postgresql</artifactId>
  179. <version>${pgsql.version}</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>org.apache.poi</groupId>
  183. <artifactId>poi</artifactId>
  184. <version>3.17</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>cn.hutool</groupId>
  188. <artifactId>hutool-all</artifactId>
  189. <version>5.1.1</version>
  190. <scope>test</scope>
  191. </dependency>
  192. <dependency>
  193. <groupId>com.taosdata.jdbc</groupId>
  194. <artifactId>taos-jdbcdriver</artifactId>
  195. <version>2.0.39</version>
  196. </dependency>
  197. </dependencies>
  198. </project>