创建对应模块
This commit is contained in:
23
pom.xml
23
pom.xml
@@ -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>
|
||||
|
||||
|
||||
@@ -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>
|
||||
|
||||
31
smartFishingPort-kechuang/pom.xml
Normal file
31
smartFishingPort-kechuang/pom.xml
Normal 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>
|
||||
27
smartFishingPort-solr/pom.xml
Normal file
27
smartFishingPort-solr/pom.xml
Normal 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>
|
||||
Reference in New Issue
Block a user