模块名调整
parent
2802cf42ed
commit
57fce9102a
Binary file not shown.
|
@ -17,7 +17,7 @@
|
|||
"name": "MQTT标准协议组件",
|
||||
"type": "device",
|
||||
"protocol": "mqtt",
|
||||
"jarFile": "mqtt-component-0.2.1-SNAPSHOT.jar",
|
||||
"jarFile": "iot-mqtt-component-0.3.1-SNAPSHOT.jar",
|
||||
"config": "{\"port\":1883,\"ssl\":false,\"type\":\"server\"}",
|
||||
"converter": "6260396d67aced2696184053",
|
||||
"state": "running",
|
||||
|
|
|
@ -5,11 +5,11 @@
|
|||
<parent>
|
||||
<artifactId>iotkit-parent</artifactId>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<version>0.3.0-SNAPSHOT</version>
|
||||
<version>0.3.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>oauth2-server</artifactId>
|
||||
<artifactId>iot-auth-server</artifactId>
|
||||
|
||||
<dependencies>
|
||||
|
||||
|
@ -45,7 +45,7 @@
|
|||
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>dao</artifactId>
|
||||
<artifactId>iot-dao</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
|
@ -0,0 +1 @@
|
|||
此模块为认证服务,提供oauth2认证界面和接口
|
0
oauth2-server/src/main/java/cc/iotkit/utils/AuthUtil.java → iot-auth-server/src/main/java/cc/iotkit/utils/AuthUtil.java
Executable file → Normal file
0
oauth2-server/src/main/java/cc/iotkit/utils/AuthUtil.java → iot-auth-server/src/main/java/cc/iotkit/utils/AuthUtil.java
Executable file → Normal file
0
oauth2-server/src/main/java/cc/iotkit/utils/SoMap.java → iot-auth-server/src/main/java/cc/iotkit/utils/SoMap.java
Executable file → Normal file
0
oauth2-server/src/main/java/cc/iotkit/utils/SoMap.java → iot-auth-server/src/main/java/cc/iotkit/utils/SoMap.java
Executable file → Normal file
0
oauth2-server/src/main/resources/templates/confirm.html → iot-auth-server/src/main/resources/templates/confirm.html
Executable file → Normal file
0
oauth2-server/src/main/resources/templates/confirm.html → iot-auth-server/src/main/resources/templates/confirm.html
Executable file → Normal file
0
oauth2-server/src/main/resources/templates/login.html → iot-auth-server/src/main/resources/templates/login.html
Executable file → Normal file
0
oauth2-server/src/main/resources/templates/login.html → iot-auth-server/src/main/resources/templates/login.html
Executable file → Normal file
|
@ -5,11 +5,11 @@
|
|||
<parent>
|
||||
<artifactId>iotkit-parent</artifactId>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<version>0.3.0-SNAPSHOT</version>
|
||||
<version>0.3.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>common</artifactId>
|
||||
<artifactId>iot-common</artifactId>
|
||||
|
||||
<dependencies>
|
||||
|
|
@ -0,0 +1 @@
|
|||
此模块为通用业务逻辑或工具类
|
|
@ -58,7 +58,7 @@ public class ComponentClassLoader {
|
|||
public static <T> T getComponent(String name, File jarFile) throws Exception {
|
||||
String className = addUrl(name, jarFile);
|
||||
Class<T> componentClass = findClass(name, className);
|
||||
return componentClass.newInstance();
|
||||
return componentClass.getDeclaredConstructor().newInstance();
|
||||
}
|
||||
|
||||
}
|
0
common/src/main/java/cc/iotkit/common/Constants.java → iot-common/src/main/java/cc/iotkit/common/Constants.java
Executable file → Normal file
0
common/src/main/java/cc/iotkit/common/Constants.java → iot-common/src/main/java/cc/iotkit/common/Constants.java
Executable file → Normal file
0
common/src/main/java/cc/iotkit/common/utils/CodecUtil.java → iot-common/src/main/java/cc/iotkit/common/utils/CodecUtil.java
Executable file → Normal file
0
common/src/main/java/cc/iotkit/common/utils/CodecUtil.java → iot-common/src/main/java/cc/iotkit/common/utils/CodecUtil.java
Executable file → Normal file
0
common/src/main/java/cc/iotkit/common/utils/DeviceUtil.java → iot-common/src/main/java/cc/iotkit/common/utils/DeviceUtil.java
Executable file → Normal file
0
common/src/main/java/cc/iotkit/common/utils/DeviceUtil.java → iot-common/src/main/java/cc/iotkit/common/utils/DeviceUtil.java
Executable file → Normal file
0
common/src/main/java/cc/iotkit/common/utils/HexUtil.java → iot-common/src/main/java/cc/iotkit/common/utils/HexUtil.java
Executable file → Normal file
0
common/src/main/java/cc/iotkit/common/utils/HexUtil.java → iot-common/src/main/java/cc/iotkit/common/utils/HexUtil.java
Executable file → Normal file
0
common/src/main/java/cc/iotkit/common/utils/JsonUtil.java → iot-common/src/main/java/cc/iotkit/common/utils/JsonUtil.java
Executable file → Normal file
0
common/src/main/java/cc/iotkit/common/utils/JsonUtil.java → iot-common/src/main/java/cc/iotkit/common/utils/JsonUtil.java
Executable file → Normal file
0
common/src/main/java/cc/iotkit/common/utils/ReflectUtil.java → iot-common/src/main/java/cc/iotkit/common/utils/ReflectUtil.java
Executable file → Normal file
0
common/src/main/java/cc/iotkit/common/utils/ReflectUtil.java → iot-common/src/main/java/cc/iotkit/common/utils/ReflectUtil.java
Executable file → Normal file
0
common/src/main/java/cc/iotkit/common/utils/ThreadUtil.java → iot-common/src/main/java/cc/iotkit/common/utils/ThreadUtil.java
Executable file → Normal file
0
common/src/main/java/cc/iotkit/common/utils/ThreadUtil.java → iot-common/src/main/java/cc/iotkit/common/utils/ThreadUtil.java
Executable file → Normal file
Binary file not shown.
BIN
protocol-gateway/mqtt-client-simulator/.DS_Store → iot-components/iot-component-base/.DS_Store
vendored
Executable file → Normal file
BIN
protocol-gateway/mqtt-client-simulator/.DS_Store → iot-components/iot-component-base/.DS_Store
vendored
Executable file → Normal file
Binary file not shown.
14
protocol-gateway/component/pom.xml → iot-components/iot-component-base/pom.xml
Executable file → Normal file
14
protocol-gateway/component/pom.xml → iot-components/iot-component-base/pom.xml
Executable file → Normal file
|
@ -3,13 +3,13 @@
|
|||
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">
|
||||
<parent>
|
||||
<artifactId>protocol-gateway</artifactId>
|
||||
<artifactId>iot-components</artifactId>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<version>0.3.0-SNAPSHOT</version>
|
||||
<version>0.3.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>component</artifactId>
|
||||
<artifactId>iot-component-base</artifactId>
|
||||
|
||||
<properties>
|
||||
<maven.compiler.source>8</maven.compiler.source>
|
||||
|
@ -19,13 +19,13 @@
|
|||
<dependencies>
|
||||
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>converter</artifactId>
|
||||
<groupId>org.projectlombok</groupId>
|
||||
<artifactId>lombok</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.projectlombok</groupId>
|
||||
<artifactId>lombok</artifactId>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>iot-component-converter</artifactId>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
BIN
protocol-gateway/.DS_Store → iot-components/iot-component-converter/.DS_Store
vendored
Executable file → Normal file
BIN
protocol-gateway/.DS_Store → iot-components/iot-component-converter/.DS_Store
vendored
Executable file → Normal file
Binary file not shown.
14
protocol-gateway/converter/pom.xml → iot-components/iot-component-converter/pom.xml
Executable file → Normal file
14
protocol-gateway/converter/pom.xml → iot-components/iot-component-converter/pom.xml
Executable file → Normal file
|
@ -3,13 +3,13 @@
|
|||
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">
|
||||
<parent>
|
||||
<artifactId>protocol-gateway</artifactId>
|
||||
<artifactId>iot-components</artifactId>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<version>0.3.0-SNAPSHOT</version>
|
||||
<version>0.3.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>converter</artifactId>
|
||||
<artifactId>iot-component-converter</artifactId>
|
||||
|
||||
<properties>
|
||||
<maven.compiler.source>8</maven.compiler.source>
|
||||
|
@ -29,13 +29,13 @@
|
|||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>model</artifactId>
|
||||
<groupId>org.projectlombok</groupId>
|
||||
<artifactId>lombok</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.projectlombok</groupId>
|
||||
<artifactId>lombok</artifactId>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>iot-model</artifactId>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
Binary file not shown.
18
protocol-gateway/component-server/pom.xml → iot-components/iot-component-server/pom.xml
Executable file → Normal file
18
protocol-gateway/component-server/pom.xml → iot-components/iot-component-server/pom.xml
Executable file → Normal file
|
@ -3,13 +3,13 @@
|
|||
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">
|
||||
<parent>
|
||||
<artifactId>protocol-gateway</artifactId>
|
||||
<artifactId>iot-components</artifactId>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<version>0.3.0-SNAPSHOT</version>
|
||||
<version>0.3.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>component-server</artifactId>
|
||||
<artifactId>iot-component-server</artifactId>
|
||||
|
||||
<dependencies>
|
||||
|
||||
|
@ -64,32 +64,32 @@
|
|||
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>common</artifactId>
|
||||
<artifactId>iot-common</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>converter</artifactId>
|
||||
<artifactId>iot-component-converter</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>model</artifactId>
|
||||
<artifactId>iot-model</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>dao</artifactId>
|
||||
<artifactId>iot-dao</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>component</artifactId>
|
||||
<artifactId>iot-component-base</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>message-bus</artifactId>
|
||||
<artifactId>iot-message-bus</artifactId>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
|
@ -94,7 +94,7 @@ public class DeviceComponentManager {
|
|||
try {
|
||||
componentInstance = ComponentClassLoader.getComponent(component.getId(), file);
|
||||
} catch (Throwable e) {
|
||||
throw new BizException("get device component instance error");
|
||||
throw new BizException("get device component instance error", e);
|
||||
}
|
||||
componentInstance.create(new CompConfig(300, component.getConfig()));
|
||||
|
|
@ -80,7 +80,7 @@ public class DeviceBehaviourService {
|
|||
}
|
||||
|
||||
Optional<Product> optProduct = productRepository.findById(pk);
|
||||
if (!optProduct.isPresent()) {
|
||||
if (optProduct.isEmpty()) {
|
||||
throw new BizException("Product does not exist");
|
||||
}
|
||||
Product product = optProduct.get();
|
Binary file not shown.
|
@ -3,13 +3,13 @@
|
|||
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">
|
||||
<parent>
|
||||
<artifactId>protocol-gateway</artifactId>
|
||||
<artifactId>iot-components</artifactId>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<version>0.3.0-SNAPSHOT</version>
|
||||
<version>0.3.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>ctwing-component</artifactId>
|
||||
<artifactId>iot-ctwing-component</artifactId>
|
||||
|
||||
|
||||
<properties>
|
||||
|
@ -29,11 +29,6 @@
|
|||
<artifactId>vertx-web-proxy</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>component</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.ctg.ag</groupId>
|
||||
<artifactId>ctg-ag-sdk-core</artifactId>
|
||||
|
@ -46,6 +41,11 @@
|
|||
<version>20220603.182201-SNAPSHOT</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>iot-component-base</artifactId>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
<build>
|
Binary file not shown.
|
@ -1,12 +1,12 @@
|
|||
<?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/maven-v4_0_0.xsd">
|
||||
<parent>
|
||||
<artifactId>protocol-gateway</artifactId>
|
||||
<artifactId>iot-components</artifactId>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<version>0.3.0-SNAPSHOT</version>
|
||||
<version>0.3.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>emqx-component</artifactId>
|
||||
<artifactId>iot-emqx-component</artifactId>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
|
@ -73,24 +73,6 @@
|
|||
<version>4.2.2</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>model</artifactId>
|
||||
<version>0.3.0-SNAPSHOT</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>common</artifactId>
|
||||
<version>0.3.0-SNAPSHOT</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>component</artifactId>
|
||||
<version>0.3.0-SNAPSHOT</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.luaj</groupId>
|
||||
<artifactId>luaj-jse</artifactId>
|
||||
|
@ -99,8 +81,26 @@
|
|||
</dependency>
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>dao</artifactId>
|
||||
<version>0.3.0-SNAPSHOT</version>
|
||||
<artifactId>iot-model</artifactId>
|
||||
<version>0.3.1-SNAPSHOT</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>iot-dao</artifactId>
|
||||
<version>0.3.1-SNAPSHOT</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>iot-common</artifactId>
|
||||
<version>0.3.1-SNAPSHOT</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>iot-component-base</artifactId>
|
||||
<version>0.3.1-SNAPSHOT</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
39
protocol-gateway/emqx-component/pom.xml → iot-components/iot-emqx-component/pom.xml
Executable file → Normal file
39
protocol-gateway/emqx-component/pom.xml → iot-components/iot-emqx-component/pom.xml
Executable file → Normal file
|
@ -3,13 +3,13 @@
|
|||
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">
|
||||
<parent>
|
||||
<artifactId>protocol-gateway</artifactId>
|
||||
<artifactId>iot-components</artifactId>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<version>0.3.0-SNAPSHOT</version>
|
||||
<version>0.3.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>emqx-component</artifactId>
|
||||
<artifactId>iot-emqx-component</artifactId>
|
||||
|
||||
<dependencies>
|
||||
|
||||
|
@ -28,21 +28,6 @@
|
|||
<artifactId>vertx-mqtt</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>model</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>common</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>component</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.luaj</groupId>
|
||||
<artifactId>luaj-jse</artifactId>
|
||||
|
@ -50,8 +35,24 @@
|
|||
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>dao</artifactId>
|
||||
<artifactId>iot-model</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>iot-dao</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>iot-common</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>iot-component-base</artifactId>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
<build>
|
0
protocol-gateway/http-biz-component/.DS_Store → iot-components/iot-http-biz-component/.DS_Store
vendored
Executable file → Normal file
0
protocol-gateway/http-biz-component/.DS_Store → iot-components/iot-http-biz-component/.DS_Store
vendored
Executable file → Normal file
|
@ -1,12 +1,12 @@
|
|||
<?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/maven-v4_0_0.xsd">
|
||||
<parent>
|
||||
<artifactId>protocol-gateway</artifactId>
|
||||
<artifactId>iot-components</artifactId>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<version>0.3.0-SNAPSHOT</version>
|
||||
<version>0.3.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>http-biz-component</artifactId>
|
||||
<artifactId>iot-http-biz-component</artifactId>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
|
@ -57,8 +57,8 @@
|
|||
</dependency>
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>component</artifactId>
|
||||
<version>0.3.0-SNAPSHOT</version>
|
||||
<artifactId>iot-component-base</artifactId>
|
||||
<version>0.3.1-SNAPSHOT</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
8
protocol-gateway/http-biz-component/pom.xml → iot-components/iot-http-biz-component/pom.xml
Executable file → Normal file
8
protocol-gateway/http-biz-component/pom.xml → iot-components/iot-http-biz-component/pom.xml
Executable file → Normal file
|
@ -3,13 +3,13 @@
|
|||
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">
|
||||
<parent>
|
||||
<artifactId>protocol-gateway</artifactId>
|
||||
<artifactId>iot-components</artifactId>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<version>0.3.0-SNAPSHOT</version>
|
||||
<version>0.3.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>http-biz-component</artifactId>
|
||||
<artifactId>iot-http-biz-component</artifactId>
|
||||
|
||||
<properties>
|
||||
<maven.compiler.source>8</maven.compiler.source>
|
||||
|
@ -30,7 +30,7 @@
|
|||
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>component</artifactId>
|
||||
<artifactId>iot-component-base</artifactId>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
0
protocol-gateway/mqtt-component/.DS_Store → iot-components/iot-mqtt-component/.DS_Store
vendored
Executable file → Normal file
0
protocol-gateway/mqtt-component/.DS_Store → iot-components/iot-mqtt-component/.DS_Store
vendored
Executable file → Normal file
|
@ -1,12 +1,12 @@
|
|||
<?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/maven-v4_0_0.xsd">
|
||||
<parent>
|
||||
<artifactId>protocol-gateway</artifactId>
|
||||
<artifactId>iot-components</artifactId>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<version>0.3.0-SNAPSHOT</version>
|
||||
<version>0.3.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>mqtt-component</artifactId>
|
||||
<artifactId>iot-mqtt-component</artifactId>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
|
@ -79,20 +79,20 @@
|
|||
</dependency>
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>common</artifactId>
|
||||
<version>0.3.0-SNAPSHOT</version>
|
||||
<artifactId>iot-common</artifactId>
|
||||
<version>0.3.1-SNAPSHOT</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>component</artifactId>
|
||||
<version>0.3.0-SNAPSHOT</version>
|
||||
<artifactId>iot-component-base</artifactId>
|
||||
<version>0.3.1-SNAPSHOT</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>dao</artifactId>
|
||||
<version>0.3.0-SNAPSHOT</version>
|
||||
<artifactId>iot-dao</artifactId>
|
||||
<version>0.3.1-SNAPSHOT</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
12
protocol-gateway/mqtt-component/pom.xml → iot-components/iot-mqtt-component/pom.xml
Executable file → Normal file
12
protocol-gateway/mqtt-component/pom.xml → iot-components/iot-mqtt-component/pom.xml
Executable file → Normal file
|
@ -3,13 +3,13 @@
|
|||
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">
|
||||
<parent>
|
||||
<artifactId>protocol-gateway</artifactId>
|
||||
<artifactId>iot-components</artifactId>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<version>0.3.0-SNAPSHOT</version>
|
||||
<version>0.3.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>mqtt-component</artifactId>
|
||||
<artifactId>iot-mqtt-component</artifactId>
|
||||
|
||||
<dependencies>
|
||||
|
||||
|
@ -45,17 +45,17 @@
|
|||
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>common</artifactId>
|
||||
<artifactId>iot-common</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>component</artifactId>
|
||||
<artifactId>iot-component-base</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>cc.iotkit</groupId>
|
||||
<artifactId>dao</artifactId>
|
||||
<artifactId>iot-dao</artifactId>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue