xucaiqin 2 лет назад
Родитель
Сommit
062eaf1e98

+ 1 - 1
iot-gateway/pom.xml

@@ -6,7 +6,7 @@
     <parent>
         <groupId>com.middle.platform</groupId>
         <artifactId>iot-middle-platform</artifactId>
-        <version>1.0.0</version>
+        <version>${revision}</version>
     </parent>
 
     <artifactId>iot-gateway</artifactId>

+ 2 - 2
iot-module/iot-module-auth/iot-module-auth-api/pom.xml

@@ -6,11 +6,11 @@
     <parent>
         <groupId>com.middle.platform</groupId>
         <artifactId>iot-module-auth</artifactId>
-        <version>1.0.0</version>
+        <version>${revision}</version>
     </parent>
 
     <artifactId>iot-module-auth-api</artifactId>
-
+    <packaging>jar</packaging>
     <properties>
         <maven.compiler.source>17</maven.compiler.source>
         <maven.compiler.target>17</maven.compiler.target>

+ 2 - 2
iot-module/iot-module-auth/iot-module-auth-biz/pom.xml

@@ -6,11 +6,11 @@
     <parent>
         <groupId>com.middle.platform</groupId>
         <artifactId>iot-module-auth</artifactId>
-        <version>1.0.0</version>
+        <version>${revision}</version>
     </parent>
 
     <artifactId>iot-module-auth-biz</artifactId>
-
+    <packaging>jar</packaging>
     <properties>
         <maven.compiler.source>17</maven.compiler.source>
         <maven.compiler.target>17</maven.compiler.target>

+ 1 - 0
iot-module/iot-module-auth/pom.xml

@@ -11,6 +11,7 @@
 
     <artifactId>iot-module-auth</artifactId>
     <packaging>pom</packaging>
+    <description>认证授权模块</description>
     <modules>
         <module>iot-module-auth-api</module>
         <module>iot-module-auth-biz</module>

+ 21 - 0
iot-module/iot-module-data/iot-module-data-api/pom.xml

@@ -0,0 +1,21 @@
+<?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>
+        <groupId>com.middle.platform</groupId>
+        <artifactId>iot-module-data</artifactId>
+        <version>${revision}</version>
+    </parent>
+
+    <artifactId>iot-module-data-api</artifactId>
+    <packaging>jar</packaging>
+
+    <properties>
+        <maven.compiler.source>17</maven.compiler.source>
+        <maven.compiler.target>17</maven.compiler.target>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
+
+</project>

+ 20 - 0
iot-module/iot-module-data/iot-module-data-biz/pom.xml

@@ -0,0 +1,20 @@
+<?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>
+        <groupId>com.middle.platform</groupId>
+        <artifactId>iot-module-data</artifactId>
+        <version>${revision}</version>
+    </parent>
+
+    <artifactId>iot-module-data-biz</artifactId>
+    <packaging>jar</packaging>
+    <properties>
+        <maven.compiler.source>17</maven.compiler.source>
+        <maven.compiler.target>17</maven.compiler.target>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
+
+</project>

+ 25 - 0
iot-module/iot-module-data/pom.xml

@@ -0,0 +1,25 @@
+<?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>
+        <groupId>com.middle.platform</groupId>
+        <artifactId>iot-module</artifactId>
+        <version>${revision}</version>
+    </parent>
+
+    <artifactId>iot-module-data</artifactId>
+    <packaging>pom</packaging>
+    <description>数据处理模块</description>
+    <modules>
+        <module>iot-module-data-api</module>
+        <module>iot-module-data-biz</module>
+    </modules>
+    <properties>
+        <maven.compiler.source>17</maven.compiler.source>
+        <maven.compiler.target>17</maven.compiler.target>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
+
+</project>

+ 21 - 0
iot-module/iot-module-manage/iot-module-manage-api/pom.xml

@@ -0,0 +1,21 @@
+<?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>
+        <groupId>com.middle.platform</groupId>
+        <artifactId>iot-module-manage</artifactId>
+        <version>${revision}</version>
+    </parent>
+
+    <artifactId>iot-module-manage-api</artifactId>
+    <packaging>jar</packaging>
+
+    <properties>
+        <maven.compiler.source>17</maven.compiler.source>
+        <maven.compiler.target>17</maven.compiler.target>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
+
+</project>

+ 20 - 0
iot-module/iot-module-manage/iot-module-manage-biz/pom.xml

@@ -0,0 +1,20 @@
+<?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>
+        <groupId>com.middle.platform</groupId>
+        <artifactId>iot-module-manage</artifactId>
+        <version>${revision}</version>
+    </parent>
+
+    <artifactId>iot-module-manage-biz</artifactId>
+    <packaging>jar</packaging>
+    <properties>
+        <maven.compiler.source>17</maven.compiler.source>
+        <maven.compiler.target>17</maven.compiler.target>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
+
+</project>

+ 26 - 0
iot-module/iot-module-manage/pom.xml

@@ -0,0 +1,26 @@
+<?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>
+        <groupId>com.middle.platform</groupId>
+        <artifactId>iot-module</artifactId>
+        <version>${revision}</version>
+    </parent>
+
+    <artifactId>iot-module-manage</artifactId>
+    <packaging>pom</packaging>
+    <description>管理模块,设备、产品等</description>
+
+    <modules>
+        <module>iot-module-manage-api</module>
+        <module>iot-module-manage-biz</module>
+    </modules>
+    <properties>
+        <maven.compiler.source>17</maven.compiler.source>
+        <maven.compiler.target>17</maven.compiler.target>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
+
+</project>

+ 20 - 0
iot-module/iot-module-system/iot-module-system-api/pom.xml

@@ -0,0 +1,20 @@
+<?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>
+        <groupId>com.middle.platform</groupId>
+        <artifactId>iot-module-system</artifactId>
+        <version>${revision}</version>
+    </parent>
+
+    <artifactId>iot-module-system-api</artifactId>
+    <packaging>jar</packaging>
+    <properties>
+        <maven.compiler.source>17</maven.compiler.source>
+        <maven.compiler.target>17</maven.compiler.target>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
+
+</project>

+ 20 - 0
iot-module/iot-module-system/iot-module-system-biz/pom.xml

@@ -0,0 +1,20 @@
+<?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>
+        <groupId>com.middle.platform</groupId>
+        <artifactId>iot-module-system</artifactId>
+        <version>${revision}</version>
+    </parent>
+
+    <artifactId>iot-module-system-biz</artifactId>
+    <packaging>jar</packaging>
+    <properties>
+        <maven.compiler.source>17</maven.compiler.source>
+        <maven.compiler.target>17</maven.compiler.target>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
+
+</project>

+ 25 - 0
iot-module/iot-module-system/pom.xml

@@ -0,0 +1,25 @@
+<?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>
+        <groupId>com.middle.platform</groupId>
+        <artifactId>iot-module</artifactId>
+        <version>${revision}</version>
+    </parent>
+
+    <artifactId>iot-module-system</artifactId>
+    <packaging>pom</packaging>
+    <description>系统管理模块,用户、角色、权限、日志等</description>
+    <modules>
+        <module>iot-module-system-api</module>
+        <module>iot-module-system-biz</module>
+    </modules>
+    <properties>
+        <maven.compiler.source>17</maven.compiler.source>
+        <maven.compiler.target>17</maven.compiler.target>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
+
+</project>

+ 7 - 0
iot-module/pom.xml

@@ -13,6 +13,13 @@
     <packaging>pom</packaging>
     <modules>
         <module>iot-module-auth</module>
+        <module>iot-module-system</module>
+        <module>iot-module-data</module>
+        <module>iot-module-manage</module>
+        <module>iot-module-data/iot-module-data-biz</module>
+        <module>iot-module-data/iot-module-data-api</module>
+        <module>iot-module-manage/iot-module-manage-api</module>
+        <module>iot-module-manage/iot-module-manage-biz</module>
     </modules>
     <properties>
         <maven.compiler.source>17</maven.compiler.source>