pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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. <!-- 解析客户端操作系统、浏览器等 -->
  31. <dependency>
  32. <groupId>eu.bitwalker</groupId>
  33. <artifactId>UserAgentUtils</artifactId>
  34. <version>${bitwalker.version}</version>
  35. </dependency>
  36. <!-- pagehelper 分页插件 -->
  37. <dependency>
  38. <groupId>com.github.pagehelper</groupId>
  39. <artifactId>pagehelper-spring-boot-starter</artifactId>
  40. <version>${pagehelper.boot.version}</version>
  41. </dependency>
  42. <!-- 获取系统信息 -->
  43. <dependency>
  44. <groupId>com.github.oshi</groupId>
  45. <artifactId>oshi-core</artifactId>
  46. <version>${oshi.version}</version>
  47. </dependency>
  48. <!-- Swagger3依赖 -->
  49. <dependency>
  50. <groupId>io.springfox</groupId>
  51. <artifactId>springfox-boot-starter</artifactId>
  52. <version>${swagger.version}</version>
  53. <exclusions>
  54. <exclusion>
  55. <groupId>io.swagger</groupId>
  56. <artifactId>swagger-models</artifactId>
  57. </exclusion>
  58. </exclusions>
  59. </dependency>
  60. <!-- io常用工具类 -->
  61. <dependency>
  62. <groupId>commons-io</groupId>
  63. <artifactId>commons-io</artifactId>
  64. <version>${commons.io.version}</version>
  65. </dependency>
  66. <!-- excel工具 -->
  67. <dependency>
  68. <groupId>org.apache.poi</groupId>
  69. <artifactId>poi-ooxml</artifactId>
  70. <version>${poi.version}</version>
  71. </dependency>
  72. <!-- velocity代码生成使用模板 -->
  73. <dependency>
  74. <groupId>org.apache.velocity</groupId>
  75. <artifactId>velocity-engine-core</artifactId>
  76. <version>${velocity.version}</version>
  77. </dependency>
  78. <!-- collections工具类 -->
  79. <dependency>
  80. <groupId>commons-collections</groupId>
  81. <artifactId>commons-collections</artifactId>
  82. <version>${commons.collections.version}</version>
  83. </dependency>
  84. <!-- 阿里JSON解析器 -->
  85. <dependency>
  86. <groupId>com.alibaba.fastjson2</groupId>
  87. <artifactId>fastjson2</artifactId>
  88. <version>${fastjson.version}</version>
  89. </dependency>
  90. <!-- Token生成与解析-->
  91. <dependency>
  92. <groupId>io.jsonwebtoken</groupId>
  93. <artifactId>jjwt</artifactId>
  94. <version>${jwt.version}</version>
  95. </dependency>
  96. <!-- 验证码 -->
  97. <dependency>
  98. <groupId>pro.fessional</groupId>
  99. <artifactId>kaptcha</artifactId>
  100. <version>${kaptcha.version}</version>
  101. </dependency>
  102. <!-- 定时任务-->
  103. <dependency>
  104. <groupId>com.climate</groupId>
  105. <artifactId>climate-quartz</artifactId>
  106. <version>${climate.version}</version>
  107. </dependency>
  108. <!-- 核心模块-->
  109. <dependency>
  110. <groupId>com.climate</groupId>
  111. <artifactId>climate-framework</artifactId>
  112. <version>${climate.version}</version>
  113. </dependency>
  114. <!-- 系统模块-->
  115. <dependency>
  116. <groupId>com.climate</groupId>
  117. <artifactId>climate-system</artifactId>
  118. <version>${climate.version}</version>
  119. </dependency>
  120. <!-- 通用工具-->
  121. <dependency>
  122. <groupId>com.climate</groupId>
  123. <artifactId>climate-common</artifactId>
  124. <version>${climate.version}</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.springframework</groupId>
  128. <artifactId>spring-context</artifactId>
  129. </dependency>
  130. </dependencies>
  131. <properties>
  132. <maven.compiler.source>8</maven.compiler.source>
  133. <maven.compiler.target>8</maven.compiler.target>
  134. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  135. </properties>
  136. </project>