pom.xml 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  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-service</artifactId>
  10. <packaging>jar</packaging>
  11. <name>alarm-service</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. <tomcat.version>9.0.83</tomcat.version>
  29. </properties>
  30. <dependencies>
  31. <dependency>
  32. <groupId>org.apache.tomcat.embed</groupId>
  33. <artifactId>tomcat-embed-core</artifactId>
  34. <version>${tomcat.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.apache.tomcat.embed</groupId>
  38. <artifactId>tomcat-embed-websocket</artifactId>
  39. <version>${tomcat.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.apache.tomcat.embed</groupId>
  43. <artifactId>tomcat-embed-el</artifactId>
  44. <version>${tomcat.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.opencsv</groupId>
  48. <artifactId>opencsv</artifactId>
  49. <version>4.4</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-web</artifactId>
  54. <version>${springframework.boot.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-actuator</artifactId>
  59. <version>${springframework.boot.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-test</artifactId>
  64. <version>${springframework.boot.version}</version>
  65. <scope>test</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter-data-redis</artifactId>
  70. <version>${springframework.boot.version}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-autoconfigure</artifactId>
  75. <version>${springframework.boot.version}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-websocket</artifactId>
  80. <version>${springframework.boot.version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.projectlombok</groupId>
  84. <artifactId>lombok</artifactId>
  85. <optional>true</optional>
  86. <version>${lombok.version}</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.alibaba</groupId>
  90. <artifactId>druid</artifactId>
  91. <version>1.1.10</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.oracle</groupId>
  95. <artifactId>ojdbc6</artifactId>
  96. <version>11.2.0.3</version>
  97. <scope>compile</scope>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.springframework.data</groupId>
  101. <artifactId>spring-data-redis</artifactId>
  102. <version>2.3.6.RELEASE</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.baomidou</groupId>
  106. <artifactId>mybatis-plus-boot-starter</artifactId>
  107. <version>${mybatis-plus.boot.starter.version}</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.baomidou</groupId>
  111. <artifactId>mybatis-plus-generator</artifactId>
  112. <version>${mybatis-plus.generator.version}</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.baomidou</groupId>
  116. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  117. <version>3.5.0</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.freemarker</groupId>
  121. <artifactId>freemarker</artifactId>
  122. <version>2.3.28</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.gyee</groupId>
  126. <artifactId>common</artifactId>
  127. <version>1.0-SNAPSHOT</version>
  128. <scope>compile</scope>
  129. </dependency>
  130. <dependency>
  131. <groupId>com.alibaba</groupId>
  132. <artifactId>fastjson</artifactId>
  133. <version>1.2.17</version>
  134. <scope>compile</scope>
  135. </dependency>
  136. <!-- ********************** plugin ********************** -->
  137. <!-- groovy-all -->
  138. <dependency>
  139. <groupId>org.codehaus.groovy</groupId>
  140. <artifactId>groovy</artifactId>
  141. <version>${groovy.version}</version>
  142. </dependency>
  143. <!-- xxl-job-core -->
  144. <dependency>
  145. <groupId>com.xuxueli</groupId>
  146. <artifactId>xxl-job-core</artifactId>
  147. <version>2.3.1-SNAPSHOT</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>com.google.code.gson</groupId>
  151. <artifactId>gson</artifactId>
  152. <version>2.8.6</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>io.netty</groupId>
  156. <artifactId>netty-all</artifactId>
  157. <version>4.1.55.Final</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>org.postgresql</groupId>
  161. <artifactId>postgresql</artifactId>
  162. <version>${pgsql.version}</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>org.apache.poi</groupId>
  166. <artifactId>poi</artifactId>
  167. <version>3.17</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>cn.hutool</groupId>
  171. <artifactId>hutool-all</artifactId>
  172. <version>5.1.1</version>
  173. <scope>test</scope>
  174. </dependency>
  175. <dependency>
  176. <groupId>com.taosdata.jdbc</groupId>
  177. <artifactId>taos-jdbcdriver</artifactId>
  178. <version>2.0.38</version>
  179. </dependency>
  180. </dependencies>
  181. <build>
  182. <plugins>
  183. <plugin>
  184. <groupId>org.springframework.boot</groupId>
  185. <artifactId>spring-boot-maven-plugin</artifactId>
  186. <version>2.7.1</version>
  187. <configuration>
  188. <!--maven编译时将本地引用的jar包一起打包-->
  189. <includeSystemScope>true</includeSystemScope>
  190. </configuration>
  191. <executions>
  192. <execution>
  193. <goals>
  194. <goal>repackage</goal>
  195. </goals>
  196. </execution>
  197. </executions>
  198. </plugin>
  199. </plugins>
  200. </build>
  201. </project>