-
Notifications
You must be signed in to change notification settings - Fork 313
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Added feature for raw MQTT cloud connection (#5556)
Signed-off-by: Nicola Timeus <[email protected]>
- Loading branch information
1 parent
61ef8a7
commit 6e5d33f
Showing
5 changed files
with
117 additions
and
0 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
kura/features/org.eclipse.kura.cloudconnection.raw.mqtt.provider/build.properties
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,15 @@ | ||
############################################################################### | ||
# Copyright (c) 2024 Eurotech and/or its affiliates and others | ||
# | ||
# This program and the accompanying materials are made | ||
# available under the terms of the Eclipse Public License 2.0 | ||
# which is available at https://www.eclipse.org/legal/epl-2.0/ | ||
# | ||
# SPDX-License-Identifier: EPL-2.0 | ||
# | ||
# Contributors: | ||
# Eurotech | ||
############################################################################### | ||
|
||
bin.includes = feature.xml,\ | ||
feature.properties |
26 changes: 26 additions & 0 deletions
26
kura/features/org.eclipse.kura.cloudconnection.raw.mqtt.provider/feature.properties
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,26 @@ | ||
############################################################################### | ||
# Copyright (c) 2024 Eurotech and/or its affiliates and others | ||
# | ||
# This program and the accompanying materials are made | ||
# available under the terms of the Eclipse Public License 2.0 | ||
# which is available at https://www.eclipse.org/legal/epl-2.0/ | ||
# | ||
# SPDX-License-Identifier: EPL-2.0 | ||
# | ||
# Contributors: | ||
# Eurotech | ||
############################################################################### | ||
|
||
featureName=Eclipse Kura - Raw MQTT Cloud Connection Provider | ||
providerName=Eclipse Kura | ||
description=Eclipse Kura Cloud Connector that allows to use a MQTT connection without restrictions on topic structure or payload encoding | ||
|
||
copyright=\ | ||
Copyright (c) 2024 Eurotech and/or its affiliates and others\n\ | ||
\n\ | ||
This program and the accompanying materials are made\n\ | ||
available under the terms of the Eclipse Public License 2.0\n\ | ||
which accompanies this distribution, and is available at\n\ | ||
which is available at https://www.eclipse.org/legal/epl-2.0/\n\ | ||
\n\ | ||
SPDX-License-Identifier: EPL-2.0\n |
29 changes: 29 additions & 0 deletions
29
kura/features/org.eclipse.kura.cloudconnection.raw.mqtt.provider/feature.xml
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,29 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<feature | ||
id="org.eclipse.kura.cloudconnection.raw.mqtt.provider" | ||
label="%featureName" | ||
version="2.0.0.qualifier" | ||
provider-name="%providerName" | ||
license-feature="org.eclipse.license" | ||
license-feature-version="0.0.0"> | ||
|
||
<description> | ||
%description | ||
</description> | ||
|
||
<copyright> | ||
%copyright | ||
</copyright> | ||
|
||
<license url="%licenseURL"> | ||
%license | ||
</license> | ||
|
||
<plugin | ||
id="org.eclipse.kura.cloudconnection.raw.mqtt.provider" | ||
download-size="0" | ||
install-size="0" | ||
version="0.0.0" | ||
unpack="false"/> | ||
|
||
</feature> |
46 changes: 46 additions & 0 deletions
46
kura/features/org.eclipse.kura.cloudconnection.raw.mqtt.provider/pom.xml
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,46 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Copyright (c) 2024 Eurotech and/or its affiliates and others | ||
This program and the accompanying materials are made | ||
available under the terms of the Eclipse Public License 2.0 | ||
which is available at https://www.eclipse.org/legal/epl-2.0/ | ||
SPDX-License-Identifier: EPL-2.0 | ||
--> | ||
<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>org.eclipse.kura.feature</groupId> | ||
<artifactId>features</artifactId> | ||
<version>6.0.0-SNAPSHOT</version> | ||
<relativePath>..</relativePath> | ||
</parent> | ||
|
||
<artifactId>org.eclipse.kura.cloudconnection.raw.mqtt.provider</artifactId> | ||
<version>2.0.0-SNAPSHOT</version> | ||
<packaging>eclipse-feature</packaging> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>de.dentrassi.maven</groupId> | ||
<artifactId>osgi-dp</artifactId> | ||
<version>${osgi-dp-plugin-version}</version> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>build</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
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