forked from IoT-Technology/IoT-Technical-Guide
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🏗️ add thingsboard rule engine module
- Loading branch information
1 parent
79401ce
commit e31aafa
Showing
5 changed files
with
30 additions
and
1 deletion.
There are no files selected for viewing
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...hengshui/ruleengine/RuleEngineServer.java → ...echnology/easyrules/RuleEngineServer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.sanshengshui.ruleengine; | ||
package iot.technology.easyrules; | ||
|
||
/** | ||
* @author james mu | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?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"> | ||
<parent> | ||
<artifactId>IOT-Guide</artifactId> | ||
<groupId>com.sanshengshui</groupId> | ||
<version>1.0-SNAPSHOT</version> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>iot.technology</groupId> | ||
<artifactId>IOT-Guide-RuleEngine-ThingsBoard</artifactId> | ||
|
||
|
||
</project> |
12 changes: 12 additions & 0 deletions
12
...ine-ThingsBoard/src/main/java/iot/technology/thingsboard/RuleEngineThingsBoardServer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package iot.technology.thingsboard; | ||
|
||
/** | ||
* @author james mu | ||
* @date 2020/8/30 23:47 | ||
*/ | ||
public class RuleEngineThingsBoardServer { | ||
|
||
public static void main(String[] args) { | ||
System.out.println("waiting update......!"); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters