pom.xml 7.0 KB

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