pom.xml 6.9 KB

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