|
@@ -8,34 +8,16 @@
|
|
|
<artifactId>Hazard</artifactId>
|
|
|
<packaging>pom</packaging>
|
|
|
<version>1.0</version>
|
|
|
- <modules>
|
|
|
- <module>admin</module>
|
|
|
- <module>business-service</module>
|
|
|
- </modules>
|
|
|
|
|
|
<name>hazard</name>
|
|
|
<url></url>
|
|
|
<description>地质灾害系统</description>
|
|
|
<properties>
|
|
|
- <monitor.version>1.0</monitor.version>
|
|
|
+ <base.version>3.8.5</base.version>
|
|
|
+ <hazard.version>1.0</hazard.version>
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
<java.version>1.8</java.version>
|
|
|
- <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
|
|
|
- <druid.version>1.2.15</druid.version>
|
|
|
- <bitwalker.version>1.21</bitwalker.version>
|
|
|
- <swagger.version>3.0.0</swagger.version>
|
|
|
- <kaptcha.version>2.3.3</kaptcha.version>
|
|
|
- <pagehelper.boot.version>1.4.6</pagehelper.boot.version>
|
|
|
- <fastjson.version>2.0.23</fastjson.version>
|
|
|
- <oshi.version>6.4.0</oshi.version>
|
|
|
- <commons.io.version>2.11.0</commons.io.version>
|
|
|
- <commons.fileupload.version>1.4</commons.fileupload.version>
|
|
|
- <commons.collections.version>3.2.2</commons.collections.version>
|
|
|
- <poi.version>4.1.2</poi.version>
|
|
|
- <velocity.version>2.3</velocity.version>
|
|
|
- <jwt.version>0.9.1</jwt.version>
|
|
|
- <mybatis-plus.version>3.5.1</mybatis-plus.version>
|
|
|
</properties>
|
|
|
|
|
|
<!-- 依赖声明 -->
|
|
@@ -51,145 +33,48 @@
|
|
|
<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>
|
|
|
-
|
|
|
- <!-- 文件上传工具类 -->
|
|
|
- <dependency>
|
|
|
- <groupId>commons-fileupload</groupId>
|
|
|
- <artifactId>commons-fileupload</artifactId>
|
|
|
- <version>${commons.fileupload.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>
|
|
|
+ <groupId>com.ozs</groupId>
|
|
|
+ <artifactId>base-common</artifactId>
|
|
|
+ <version>${base.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
- <!-- 验证码 -->
|
|
|
<dependency>
|
|
|
- <groupId>pro.fessional</groupId>
|
|
|
- <artifactId>kaptcha</artifactId>
|
|
|
- <version>${kaptcha.version}</version>
|
|
|
+ <groupId>com.ozs</groupId>
|
|
|
+ <artifactId>base-framework</artifactId>
|
|
|
+ <version>${base.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 定时任务-->
|
|
|
<dependency>
|
|
|
<groupId>com.ozs</groupId>
|
|
|
- <artifactId>quartz</artifactId>
|
|
|
- <version>${monitor.version}</version>
|
|
|
+ <artifactId>base-quartz</artifactId>
|
|
|
+ <version>${base.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 代码生成-->
|
|
|
<dependency>
|
|
|
<groupId>com.ozs</groupId>
|
|
|
- <artifactId>generator</artifactId>
|
|
|
- <version>${monitor.version}</version>
|
|
|
+ <artifactId>base-generator</artifactId>
|
|
|
+ <version>${base.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
- <!-- 核心模块-->
|
|
|
<dependency>
|
|
|
<groupId>com.ozs</groupId>
|
|
|
- <artifactId>framework</artifactId>
|
|
|
- <version>${monitor.version}</version>
|
|
|
+ <artifactId>business-service</artifactId>
|
|
|
+ <version>${hazard.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
- <!-- 系统模块-->
|
|
|
- <dependency>
|
|
|
- <groupId>com.ozs</groupId>
|
|
|
- <artifactId>system</artifactId>
|
|
|
- <version>${monitor.version}</version>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- 通用工具-->
|
|
|
- <dependency>
|
|
|
- <groupId>com.ozs</groupId>
|
|
|
- <artifactId>common</artifactId>
|
|
|
- <version>${monitor.version}</version>
|
|
|
- </dependency>
|
|
|
- <!-- mybatis-plus -->
|
|
|
- <dependency>
|
|
|
- <groupId>com.baomidou</groupId>
|
|
|
- <artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
- <version>${mybatis-plus.version}</version>
|
|
|
- </dependency>
|
|
|
</dependencies>
|
|
|
</dependencyManagement>
|
|
|
+
|
|
|
+ <modules>
|
|
|
+ <module>hazard-admin</module>
|
|
|
+ <module>business-service</module>
|
|
|
+ </modules>
|
|
|
+
|
|
|
+
|
|
|
<build>
|
|
|
<plugins>
|
|
|
<plugin>
|
|
@@ -229,4 +114,4 @@
|
|
|
</snapshots>
|
|
|
</pluginRepository>
|
|
|
</pluginRepositories>
|
|
|
-</project>
|
|
|
+</project>
|