去除原来浪潮版本的代码,加入根据若依精简的框架
This commit is contained in:
150
pom.xml
150
pom.xml
@@ -4,41 +4,45 @@
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<groupId>com.ltgk</groupId>
|
||||
<artifactId>smart-fishery-port-server</artifactId>
|
||||
<version>1.0.0</version>
|
||||
<groupId>com.ltgk.smartFishingPort</groupId>
|
||||
<artifactId>smartFishingPort</artifactId>
|
||||
<version>3.9.1</version>
|
||||
|
||||
<name>smartFishingPort</name>
|
||||
<url>https://www.qdlimap.com/home</url>
|
||||
<description>智慧渔港系统</description>
|
||||
|
||||
<properties>
|
||||
<ltgk.version>1.0.0</ltgk.version>
|
||||
<smartFishingPort.version>3.9.1</smartFishingPort.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>
|
||||
<spring-framework.version>5.3.33</spring-framework.version>
|
||||
<spring-security.version>5.7.12</spring-security.version>
|
||||
<druid.version>1.2.23</druid.version>
|
||||
<bitwalker.version>1.21</bitwalker.version>
|
||||
<spring-boot.version>2.5.15</spring-boot.version>
|
||||
<druid.version>1.2.27</druid.version>
|
||||
<yauaa.version>7.32.0</yauaa.version>
|
||||
<swagger.version>3.0.0</swagger.version>
|
||||
<kaptcha.version>2.3.3</kaptcha.version>
|
||||
<pagehelper.boot.version>1.4.7</pagehelper.boot.version>
|
||||
<fastjson2.version>2.0.53</fastjson2.version>
|
||||
<fastjson.version>1.2.79</fastjson.version>
|
||||
<oshi.version>6.6.3</oshi.version>
|
||||
<commons.io.version>2.13.0</commons.io.version>
|
||||
<fastjson.version>2.0.60</fastjson.version>
|
||||
<oshi.version>6.9.1</oshi.version>
|
||||
<commons.io.version>2.21.0</commons.io.version>
|
||||
<poi.version>4.1.2</poi.version>
|
||||
<velocity.version>2.3</velocity.version>
|
||||
<jwt.version>0.9.1</jwt.version>
|
||||
<!-- override dependency version -->
|
||||
<tomcat.version>9.0.112</tomcat.version>
|
||||
<logback.version>1.2.13</logback.version>
|
||||
<spring-security.version>5.7.14</spring-security.version>
|
||||
<spring-framework.version>5.3.39</spring-framework.version>
|
||||
<mybatis.plus>3.5.1</mybatis.plus>
|
||||
<hutool.all>5.8.13</hutool.all>
|
||||
<guava.version>20.0</guava.version>
|
||||
<geotools.version>28.6</geotools.version>
|
||||
</properties>
|
||||
|
||||
<!-- 依赖声明 -->
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
|
||||
<!-- SpringFramework的依赖配置-->
|
||||
<!-- 覆盖SpringFramework的依赖配置-->
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-framework-bom</artifactId>
|
||||
@@ -47,7 +51,7 @@
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- SpringSecurity的依赖配置-->
|
||||
<!-- 覆盖SpringSecurity的依赖配置-->
|
||||
<dependency>
|
||||
<groupId>org.springframework.security</groupId>
|
||||
<artifactId>spring-security-bom</artifactId>
|
||||
@@ -60,11 +64,43 @@
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-dependencies</artifactId>
|
||||
<version>2.5.15</version>
|
||||
<version>${spring-boot.version}</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- 覆盖logback的依赖配置-->
|
||||
<dependency>
|
||||
<groupId>ch.qos.logback</groupId>
|
||||
<artifactId>logback-core</artifactId>
|
||||
<version>${logback.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>ch.qos.logback</groupId>
|
||||
<artifactId>logback-classic</artifactId>
|
||||
<version>${logback.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- 覆盖tomcat的依赖配置-->
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat.embed</groupId>
|
||||
<artifactId>tomcat-embed-core</artifactId>
|
||||
<version>${tomcat.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat.embed</groupId>
|
||||
<artifactId>tomcat-embed-el</artifactId>
|
||||
<version>${tomcat.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat.embed</groupId>
|
||||
<artifactId>tomcat-embed-websocket</artifactId>
|
||||
<version>${tomcat.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- 阿里数据库连接池 -->
|
||||
<dependency>
|
||||
<groupId>com.alibaba</groupId>
|
||||
@@ -74,9 +110,9 @@
|
||||
|
||||
<!-- 解析客户端操作系统、浏览器等 -->
|
||||
<dependency>
|
||||
<groupId>eu.bitwalker</groupId>
|
||||
<artifactId>UserAgentUtils</artifactId>
|
||||
<version>${bitwalker.version}</version>
|
||||
<groupId>nl.basjes.parse.useragent</groupId>
|
||||
<artifactId>yauaa</artifactId>
|
||||
<version>${yauaa.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- pagehelper 分页插件 -->
|
||||
@@ -131,7 +167,7 @@
|
||||
<dependency>
|
||||
<groupId>com.alibaba.fastjson2</groupId>
|
||||
<artifactId>fastjson2</artifactId>
|
||||
<version>${fastjson2.version}</version>
|
||||
<version>${fastjson.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Token生成与解析-->
|
||||
@@ -147,79 +183,37 @@
|
||||
<artifactId>kaptcha</artifactId>
|
||||
<version>${kaptcha.version}</version>
|
||||
</dependency>
|
||||
<!-- web模块-->
|
||||
<dependency>
|
||||
<groupId>com.ltgk</groupId>
|
||||
<artifactId>smart-fishery-port-admin</artifactId>
|
||||
<version>${ltgk.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- 核心模块-->
|
||||
<dependency>
|
||||
<groupId>com.ltgk</groupId>
|
||||
<artifactId>smart-fishery-port-framework</artifactId>
|
||||
<version>${ltgk.version}</version>
|
||||
<groupId>com.ltgk.smartFishingPort</groupId>
|
||||
<artifactId>smartFishingPort-framework</artifactId>
|
||||
<version>${smartFishingPort.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- 系统模块-->
|
||||
<dependency>
|
||||
<groupId>com.ltgk</groupId>
|
||||
<artifactId>smart-fishery-port-system</artifactId>
|
||||
<version>${ltgk.version}</version>
|
||||
<groupId>com.ltgk.smartFishingPort</groupId>
|
||||
<artifactId>smartFishingPort-system</artifactId>
|
||||
<version>${smartFishingPort.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- 通用工具-->
|
||||
<dependency>
|
||||
<groupId>com.ltgk</groupId>
|
||||
<artifactId>smart-fishery-port-common</artifactId>
|
||||
<version>${ltgk.version}</version>
|
||||
<groupId>com.ltgk.smartFishingPort</groupId>
|
||||
<artifactId>smartFishingPort-common</artifactId>
|
||||
<version>${smartFishingPort.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- 渔船档案系统模块 -->
|
||||
<dependency>
|
||||
<groupId>com.ltgk</groupId>
|
||||
<artifactId>smart-fishery-port-boat</artifactId>
|
||||
<version>${ltgk.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- 渔港系统模块 -->
|
||||
<dependency>
|
||||
<groupId>com.ltgk</groupId>
|
||||
<artifactId>smart-fishery-port-port</artifactId>
|
||||
<version>${ltgk.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- 船员信息模块 -->
|
||||
<dependency>
|
||||
<groupId>com.ltgk</groupId>
|
||||
<artifactId>smart-fishery-port-crew</artifactId>
|
||||
<version>${ltgk.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-data-solr</artifactId>
|
||||
<version>2.2.0.RELEASE</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.data</groupId>
|
||||
<artifactId>spring-data-solr</artifactId>
|
||||
<version>4.1.5.RELEASE</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<modules>
|
||||
<module>smart-fishery-port-admin</module>
|
||||
<module>smart-fishery-port-framework</module>
|
||||
<module>smart-fishery-port-system</module>
|
||||
<module>smart-fishery-port-common</module>
|
||||
<module>smart-fishery-port-boat</module>
|
||||
<module>smart-fishery-port-port</module>
|
||||
<module>smart-fishery-port-crew</module>
|
||||
<module>smart-fishery-port-catches</module>
|
||||
<module>smart-fishery-port-message</module>
|
||||
<module>smart-fishery-port-video</module>
|
||||
<module>smartFishingPort-admin</module>
|
||||
<module>smartFishingPort-framework</module>
|
||||
<module>smartFishingPort-system</module>
|
||||
<module>smartFishingPort-common</module>
|
||||
<module>smartFishingPort-base</module>
|
||||
</modules>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user