pom.xml 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.climate</groupId>
  7. <artifactId>climate</artifactId>
  8. <version>3.8.6</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>climate_data</artifactId>
  12. <description>
  13. climate_data数据模块
  14. </description>
  15. <dependencies>
  16. <!-- SpringBoot的依赖配置-->
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-dependencies</artifactId>
  20. <version>2.5.15</version>
  21. <type>pom</type>
  22. <scope>import</scope>
  23. </dependency>
  24. <!-- 阿里数据库连接池 -->
  25. <dependency>
  26. <groupId>com.alibaba</groupId>
  27. <artifactId>druid-spring-boot-starter</artifactId>
  28. <version>${druid.version}</version>
  29. </dependency>
  30. <!-- mybatis-plus依赖 -->
  31. <dependency>
  32. <groupId>com.baomidou</groupId>
  33. <artifactId>mybatis-plus-boot-starter</artifactId>
  34. <version>3.4.1</version>
  35. </dependency>
  36. <!-- 解析客户端操作系统、浏览器等 -->
  37. <dependency>
  38. <groupId>eu.bitwalker</groupId>
  39. <artifactId>UserAgentUtils</artifactId>
  40. <version>${bitwalker.version}</version>
  41. </dependency>
  42. <!-- pagehelper 分页插件 -->
  43. <dependency>
  44. <groupId>com.github.pagehelper</groupId>
  45. <artifactId>pagehelper-spring-boot-starter</artifactId>
  46. <version>${pagehelper.boot.version}</version>
  47. </dependency>
  48. <!-- 获取系统信息 -->
  49. <dependency>
  50. <groupId>com.github.oshi</groupId>
  51. <artifactId>oshi-core</artifactId>
  52. <version>${oshi.version}</version>
  53. </dependency>
  54. <!-- Swagger3依赖 -->
  55. <dependency>
  56. <groupId>io.springfox</groupId>
  57. <artifactId>springfox-boot-starter</artifactId>
  58. <version>${swagger.version}</version>
  59. <exclusions>
  60. <exclusion>
  61. <groupId>io.swagger</groupId>
  62. <artifactId>swagger-models</artifactId>
  63. </exclusion>
  64. </exclusions>
  65. </dependency>
  66. <!-- io常用工具类 -->
  67. <dependency>
  68. <groupId>commons-io</groupId>
  69. <artifactId>commons-io</artifactId>
  70. <version>${commons.io.version}</version>
  71. </dependency>
  72. <!-- excel工具 -->
  73. <dependency>
  74. <groupId>org.apache.poi</groupId>
  75. <artifactId>poi-ooxml</artifactId>
  76. <version>${poi.version}</version>
  77. </dependency>
  78. <!-- velocity代码生成使用模板 -->
  79. <dependency>
  80. <groupId>org.apache.velocity</groupId>
  81. <artifactId>velocity-engine-core</artifactId>
  82. <version>${velocity.version}</version>
  83. </dependency>
  84. <!-- collections工具类 -->
  85. <dependency>
  86. <groupId>commons-collections</groupId>
  87. <artifactId>commons-collections</artifactId>
  88. <version>${commons.collections.version}</version>
  89. </dependency>
  90. <!-- 阿里JSON解析器 -->
  91. <dependency>
  92. <groupId>com.alibaba.fastjson2</groupId>
  93. <artifactId>fastjson2</artifactId>
  94. <version>${fastjson.version}</version>
  95. </dependency>
  96. <!-- Token生成与解析-->
  97. <dependency>
  98. <groupId>io.jsonwebtoken</groupId>
  99. <artifactId>jjwt</artifactId>
  100. <version>${jwt.version}</version>
  101. </dependency>
  102. <!-- 验证码 -->
  103. <dependency>
  104. <groupId>pro.fessional</groupId>
  105. <artifactId>kaptcha</artifactId>
  106. <version>${kaptcha.version}</version>
  107. </dependency>
  108. <!-- 定时任务-->
  109. <dependency>
  110. <groupId>com.climate</groupId>
  111. <artifactId>climate-quartz</artifactId>
  112. <version>${climate.version}</version>
  113. </dependency>
  114. <!-- 核心模块-->
  115. <dependency>
  116. <groupId>com.climate</groupId>
  117. <artifactId>climate-framework</artifactId>
  118. <version>${climate.version}</version>
  119. </dependency>
  120. <!-- 系统模块-->
  121. <dependency>
  122. <groupId>com.climate</groupId>
  123. <artifactId>climate-system</artifactId>
  124. <version>${climate.version}</version>
  125. </dependency>
  126. <!-- 通用工具-->
  127. <dependency>
  128. <groupId>com.climate</groupId>
  129. <artifactId>climate-common</artifactId>
  130. <version>${climate.version}</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.springframework</groupId>
  134. <artifactId>spring-context</artifactId>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.projectlombok</groupId>
  138. <artifactId>lombok</artifactId>
  139. </dependency>
  140. <dependency>
  141. <groupId>com.tianqin</groupId>
  142. <artifactId>tianqin-sdk</artifactId>
  143. <version>1.0</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>com.protobuf</groupId>
  147. <artifactId>protobuf-sdk</artifactId>
  148. <version>1.0</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>org.apache.httpcomponents</groupId>
  152. <artifactId>httpclient</artifactId>
  153. <version>4.5.13</version>
  154. </dependency>
  155. <!-- excel工具 -->
  156. <dependency>
  157. <groupId>org.apache.poi</groupId>
  158. <artifactId>poi-ooxml</artifactId>
  159. <version>${poi.version}</version>
  160. </dependency>
  161. <!-- JSON 解析器和生成器 -->
  162. <dependency>
  163. <groupId>com.alibaba.fastjson2</groupId>
  164. <artifactId>fastjson2</artifactId>
  165. <version>${fastjson.version}</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>com.alibaba</groupId>
  169. <artifactId>fastjson</artifactId>
  170. <version>1.2.78</version>
  171. </dependency>
  172. </dependencies>
  173. <build>
  174. <resources>
  175. <resource>
  176. <directory>src/main/java</directory>
  177. <includes>
  178. <include>**/*.properties</include>
  179. <include>**/*.xml</include>
  180. </includes>
  181. <filtering>false</filtering>
  182. </resource>
  183. <resource>
  184. <directory>src/main/resources</directory>
  185. <includes>
  186. <include>**/*.properties</include>
  187. <include>**/*.xml</include>
  188. </includes>
  189. <filtering>false</filtering>
  190. </resource>
  191. </resources>
  192. </build>
  193. <properties>
  194. <maven.compiler.source>8</maven.compiler.source>
  195. <maven.compiler.target>8</maven.compiler.target>
  196. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  197. </properties>
  198. </project>