|
@@ -0,0 +1,157 @@
|
|
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
|
+<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
+ <parent>
|
|
|
+ <groupId>com.climate</groupId>
|
|
|
+ <artifactId>climate</artifactId>
|
|
|
+ <version>3.8.6</version>
|
|
|
+ </parent>
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
+ <artifactId>climate_data</artifactId>
|
|
|
+ <description>
|
|
|
+ climate_data数据模块
|
|
|
+ </description>
|
|
|
+
|
|
|
+ <dependencies>
|
|
|
+ <!-- SpringBoot的依赖配置-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-dependencies</artifactId>
|
|
|
+ <version>2.5.15</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 阿里数据库连接池 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>druid-spring-boot-starter</artifactId>
|
|
|
+ <version>${druid.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 解析客户端操作系统、浏览器等 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>eu.bitwalker</groupId>
|
|
|
+ <artifactId>UserAgentUtils</artifactId>
|
|
|
+ <version>${bitwalker.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- pagehelper 分页插件 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.pagehelper</groupId>
|
|
|
+ <artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
|
+ <version>${pagehelper.boot.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 获取系统信息 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.oshi</groupId>
|
|
|
+ <artifactId>oshi-core</artifactId>
|
|
|
+ <version>${oshi.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- Swagger3依赖 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.springfox</groupId>
|
|
|
+ <artifactId>springfox-boot-starter</artifactId>
|
|
|
+ <version>${swagger.version}</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>io.swagger</groupId>
|
|
|
+ <artifactId>swagger-models</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- io常用工具类 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>commons-io</groupId>
|
|
|
+ <artifactId>commons-io</artifactId>
|
|
|
+ <version>${commons.io.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- excel工具 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
+ <artifactId>poi-ooxml</artifactId>
|
|
|
+ <version>${poi.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- velocity代码生成使用模板 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.velocity</groupId>
|
|
|
+ <artifactId>velocity-engine-core</artifactId>
|
|
|
+ <version>${velocity.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- collections工具类 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>commons-collections</groupId>
|
|
|
+ <artifactId>commons-collections</artifactId>
|
|
|
+ <version>${commons.collections.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 阿里JSON解析器 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba.fastjson2</groupId>
|
|
|
+ <artifactId>fastjson2</artifactId>
|
|
|
+ <version>${fastjson.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- Token生成与解析-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.jsonwebtoken</groupId>
|
|
|
+ <artifactId>jjwt</artifactId>
|
|
|
+ <version>${jwt.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 验证码 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>pro.fessional</groupId>
|
|
|
+ <artifactId>kaptcha</artifactId>
|
|
|
+ <version>${kaptcha.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 定时任务-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.climate</groupId>
|
|
|
+ <artifactId>climate-quartz</artifactId>
|
|
|
+ <version>${climate.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- 核心模块-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.climate</groupId>
|
|
|
+ <artifactId>climate-framework</artifactId>
|
|
|
+ <version>${climate.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 系统模块-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.climate</groupId>
|
|
|
+ <artifactId>climate-system</artifactId>
|
|
|
+ <version>${climate.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 通用工具-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.climate</groupId>
|
|
|
+ <artifactId>climate-common</artifactId>
|
|
|
+ <version>${climate.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-context</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ </dependencies>
|
|
|
+
|
|
|
+ <properties>
|
|
|
+ <maven.compiler.source>8</maven.compiler.source>
|
|
|
+ <maven.compiler.target>8</maven.compiler.target>
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
+ </properties>
|
|
|
+
|
|
|
+</project>
|