创建对应模块

This commit is contained in:
2025-12-24 18:00:10 +08:00
parent 898180ee69
commit d575c638cc
4 changed files with 99 additions and 0 deletions

23
pom.xml
View File

@@ -205,6 +205,27 @@
<version>${smartFishingPort.version}</version>
</dependency>
<!-- 基础模块-->
<dependency>
<groupId>com.ltgk.smartFishingPort</groupId>
<artifactId>smartFishingPort-base</artifactId>
<version>${smartFishingPort.version}</version>
</dependency>
<!-- solr服务模块-->
<dependency>
<groupId>com.ltgk.smartFishingPort</groupId>
<artifactId>smartFishingPort-solr</artifactId>
<version>${smartFishingPort.version}</version>
</dependency>
<!-- 科创模块-->
<dependency>
<groupId>com.ltgk.smartFishingPort</groupId>
<artifactId>smartFishingPort-kechuang</artifactId>
<version>${smartFishingPort.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
@@ -214,6 +235,8 @@
<module>smartFishingPort-system</module>
<module>smartFishingPort-common</module>
<module>smartFishingPort-base</module>
<module>smartFishingPort-kechuang</module>
<module>smartFishingPort-solr</module>
</modules>
<packaging>pom</packaging>

View File

@@ -55,6 +55,24 @@
<artifactId>smartFishingPort-framework</artifactId>
</dependency>
<!-- 基础模块-->
<dependency>
<groupId>com.ltgk.smartFishingPort</groupId>
<artifactId>smartFishingPort-base</artifactId>
</dependency>
<!-- solr服务模块-->
<dependency>
<groupId>com.ltgk.smartFishingPort</groupId>
<artifactId>smartFishingPort-solr</artifactId>
</dependency>
<!-- 科创模块-->
<dependency>
<groupId>com.ltgk.smartFishingPort</groupId>
<artifactId>smartFishingPort-kechuang</artifactId>
</dependency>
</dependencies>
<build>

View File

@@ -0,0 +1,31 @@
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>smartFishingPort</artifactId>
<groupId>com.ltgk.smartFishingPort</groupId>
<version>3.9.1</version>
</parent>
<artifactId>smartFishingPort-kechuang</artifactId>
<description>
科创模块
</description>
<dependencies>
<!-- 通用工具-->
<dependency>
<groupId>com.ltgk.smartFishingPort</groupId>
<artifactId>smartFishingPort-common</artifactId>
</dependency>
<dependency>
<groupId>com.ltgk.smartFishingPort</groupId>
<artifactId>smartFishingPort-system</artifactId>
</dependency>
</dependencies>
</project>

View File

@@ -0,0 +1,27 @@
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>smartFishingPort</artifactId>
<groupId>com.ltgk.smartFishingPort</groupId>
<version>3.9.1</version>
</parent>
<artifactId>smartFishingPort-solr</artifactId>
<description>
solr服务模块
</description>
<dependencies>
<!-- 通用工具-->
<dependency>
<groupId>com.ltgk.smartFishingPort</groupId>
<artifactId>smartFishingPort-common</artifactId>
</dependency>
</dependencies>
</project>