pom.xml 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  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>cn.hutool</groupId>
  150. <artifactId>hutool-all</artifactId>
  151. <version>5.1.1</version>
  152. <scope>test</scope>
  153. </dependency>
  154. <dependency>
  155. <groupId>com.taosdata.jdbc</groupId>
  156. <artifactId>taos-jdbcdriver</artifactId>
  157. <version>3.2.2</version>
  158. </dependency>
  159. <!-- 工具类相关 -->
  160. <dependency>
  161. <groupId>com.alibaba</groupId>
  162. <artifactId>easyexcel</artifactId>
  163. <version>3.2.0</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>cn.hutool</groupId>
  167. <artifactId>hutool-all</artifactId>
  168. <version>5.1.1</version>
  169. </dependency>
  170. </dependencies>
  171. <build>
  172. <plugins>
  173. <plugin>
  174. <groupId>org.springframework.boot</groupId>
  175. <artifactId>spring-boot-maven-plugin</artifactId>
  176. <version>2.7.1</version>
  177. <configuration>
  178. <!--maven编译时将本地引用的jar包一起打包-->
  179. <includeSystemScope>true</includeSystemScope>
  180. </configuration>
  181. <executions>
  182. <execution>
  183. <goals>
  184. <goal>repackage</goal>
  185. </goals>
  186. </execution>
  187. </executions>
  188. </plugin>
  189. </plugins>
  190. </build>
  191. </project>