From 2be85cb83670042093fae550cfb338ebf3a97112 Mon Sep 17 00:00:00 2001 From: Charitha Goonetilleke Date: Mon, 20 Mar 2023 16:37:50 +0000 Subject: [PATCH 01/13] Update build status label --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9f72f26..d958dfe 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@
-[![pipeline status](https://gitlab.com/entgra/community-product/badges/master/pipeline.svg)](https://gitlab.com/entgra/community-product/commits/master) +[![pipeline status](https://builder.entgra.net/buildStatus/icon?job=community-product)](https://repository.entgra.net/community/community-product/commits/master) Entgra IoT Server is a complete solution that enables device manufacturers and enterprises to connect and manage their devices, build apps, manage events, secure devices and data, and visualize sensor data in a scalable manner. From 89e052d65d764a0b60b4d4412ca0cac939610da4 Mon Sep 17 00:00:00 2001 From: Amalka Subasinghe Date: Tue, 21 Mar 2023 11:44:05 +0530 Subject: [PATCH 02/13] added iot analytics --- p2-profile/iot/pom.xml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/p2-profile/iot/pom.xml b/p2-profile/iot/pom.xml index 214de54..2ce30f9 100644 --- a/p2-profile/iot/pom.xml +++ b/p2-profile/iot/pom.xml @@ -125,6 +125,15 @@ org.wso2.carbon.devicemgt-plugins:org.wso2.carbon.device.mgt.notification.listener.feature:${carbon.device.mgt.plugin.version} + + org.wso2.carbon.devicemgt-plugins:org.wso2.extension.siddhi.device.feature:${carbon.device.mgt.plugin.version} + + + org.wso2.carbon.devicemgt-plugins:org.wso2.extension.siddhi.execution.json.feature:${carbon.device.mgt.plugin.version} + + + org.wso2.carbon.devicemgt-plugins:org.wso2.carbon.device.mgt.iot.analytics.feature:${carbon.device.mgt.plugin.version} + @@ -149,6 +158,18 @@ org.wso2.carbon.device.mgt.notification.listener.feature.group ${carbon.device.mgt.plugin.version} + + org.wso2.extension.siddhi.device.feature.group + ${carbon.device.mgt.plugin.version} + + + org.wso2.extension.siddhi.execution.json.feature.group + ${carbon.device.mgt.plugin.version} + + + org.wso2.carbon.device.mgt.iot.analytics.feature.group + ${carbon.device.mgt.plugin.version} + From 445d5fd524eb122ba62cf1fa09cd4e6032e87e4a Mon Sep 17 00:00:00 2001 From: Amalka Subasinghe Date: Mon, 27 Mar 2023 16:25:48 +0530 Subject: [PATCH 03/13] fixed adding operation and operation response paths with emqx integration --- iot-core/pom.xml | 46 ++++- iot-core/src/assembly/bin.xml | 4 + iot-core/src/core/conf/deployment.toml | 6 + .../core/conf/output-event-adapters.xml.j2 | 170 ++++++++++++++++++ 4 files changed, 223 insertions(+), 3 deletions(-) create mode 100644 iot-core/src/core/conf/output-event-adapters.xml.j2 diff --git a/iot-core/pom.xml b/iot-core/pom.xml index 05a5124..a812162 100644 --- a/iot-core/pom.xml +++ b/iot-core/pom.xml @@ -84,7 +84,7 @@ maven-antrun-plugin - update-dbscripts + update-dbscripts-1 process-resources run @@ -93,17 +93,34 @@ - - + + update-dbscripts-2 + process-resources + + run + + + + + + + + + + + + + + alter-shared-h2-db @@ -323,6 +340,17 @@ org.wso2.carbon.devicemgt:io.entgra.device.mgt.extensions.stateengine.feature:${carbon.device.mgt.version} + + + org.wso2.carbon.devicemgt:io.entgra.task.mgt.feature:${carbon.device.mgt.version} + + + + + + org.wso2.carbon.devicemgt:io.entgra.notification.logger.feature:${carbon.device.mgt.version} + + @@ -482,6 +510,18 @@ io.entgra.device.mgt.extensions.stateengine.feature.group ${carbon.device.mgt.version} + + + + io.entgra.task.mgt.feature.group + ${carbon.device.mgt.version} + + + + + io.entgra.notification.logger.feature.group + ${carbon.device.mgt.version} + diff --git a/iot-core/src/assembly/bin.xml b/iot-core/src/assembly/bin.xml index 387dc92..20ee19b 100644 --- a/iot-core/src/assembly/bin.xml +++ b/iot-core/src/assembly/bin.xml @@ -92,6 +92,10 @@ src/core/conf/input-event-adapters.xml ${entgra-iot-core}/repository/conf/ + + src/core/conf/output-event-adapters.xml.j2 + ${entgra-iot-core}/repository/resources/conf/templates/repository/conf + src/core/keystores/wso2carbon.jks ${entgra-iot-core}/repository/resources/security/ diff --git a/iot-core/src/core/conf/deployment.toml b/iot-core/src/core/conf/deployment.toml index 40bd1e2..964acbf 100644 --- a/iot-core/src/core/conf/deployment.toml +++ b/iot-core/src/core/conf/deployment.toml @@ -104,6 +104,9 @@ enable = false config_endpoint = "https://localhost:8080/auth/v1" auth_token = "" +[web_app.listener] +class_name = ["org.wso2.carbon.apimgt.webapp.publisher.lifecycle.listener.APIPublisherLifecycleListener", "org.wso2.carbon.device.mgt.core.config.permission.lifecycle.WebAppDeploymentLifecycleListener"] + [apim.key_manager] #service_url = "https://localhost:${mgt.transport.https.port}/services/" #username = "$ref{super_admin.username}" @@ -277,3 +280,6 @@ grant_validator="org.wso2.carbon.device.mgt.oauth.extensions.validators.AccessTo [oauth.token_renewal] renew_refresh_token=false + +[device_mgt_conf.pull_notification_conf] +enabled=false \ No newline at end of file diff --git a/iot-core/src/core/conf/output-event-adapters.xml.j2 b/iot-core/src/core/conf/output-event-adapters.xml.j2 new file mode 100644 index 0000000..883a6d6 --- /dev/null +++ b/iot-core/src/core/conf/output-event-adapters.xml.j2 @@ -0,0 +1,170 @@ + + + + + + tcp://localhost:7612 + ssl://localhost:7712 + tcp://localhost:9612 + ssl://localhost:9712 + + + + VARCHAR(255) + DOUBLE + INT + BIGINT + FLOAT + BOOL + CREATE TABLE $TABLE_NAME ($COLUMN_TYPES) + INSERT INTO $TABLE_NAME ($COLUMNS) VALUES ($VALUES) + SELECT * FROM $TABLE_NAME limit 1 + UPDATE $TABLE_NAME SET $COLUMN_VALUES WHERE $CONDITION + , + ? + = + AND + SELECT COLUMN_NAME, DATA_TYPE FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = '$TABLE_NAME' + SELECT $COLUMNS FROM $TABLE_NAME + varchar2(255) + CLOB + BINARY_DOUBLE + SELECT * FROM $TABLE_NAME WHERE ROWNUM = 1 + SELECT COLUMN_NAME, DATA_TYPE FROM USER_TAB_COLS WHERE TABLE_NAME = '$TABLE_NAME' + varchar2(255) + SELECT TOP 1 * FROM $TABLE_NAME + SELECT COLUMN_NAME, DATA_TYPE FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = '$TABLE_NAME' + varchar2(255) + REAL + SHOW COLUMNS FROM $TABLE_NAME + + + + + 8 + 100 + 20000 + 10000 + + 50 + 1000 + + + + + {{output_adapter.jms.min_thread}} + {{output_adapter.jms.max_thread}} + {{output_adapter.jms.keep_alive_time}} + {{output_adapter.jms.job_queue_size}} + + + + + 8 + 100 + 20000 + 10000 + 60 + + + + + 8 + 100 + 20000 + 10000 + + + + + {{output_adapter.email.from_address}} + {{output_adapter.email.username}} + {{output_adapter.email.password}} + {{output_adapter.email.hostname}} + {{output_adapter.email.port}} + {{output_adapter.email.enable_start_tls}} + {{output_adapter.email.enable_authentication}} + {{output_adapter.email.signature}} + {{output_adapter.email.reply_to}} + {% if output_adapter.email.custom_properties is defined %} + + {% for property_name,property_value in output_adapter.email.custom_properties.items() %} + {{property_value}} + {% endfor %} + {% endif %} + + 8 + 100 + 20000 + 10000 + + + + 30 + + 8 + 100 + 20000 + 10000 + + + + + 8 + 100 + 20000 + 10000 + + + + + 8 + 100 + 20000 + 10000 + + + + + 8 + 100 + 20000 + 10000 + + 10000 + true + true + 50 + + + + + 8 + 100 + 20000 + 10000 + 60 + https://${iot.keymanager.host}:${iot.keymanager.https.port}/client-registration/v0.17/register + https://${iot.gateway.host}:${iot.gateway.https.port}/token + tcp://${mqtt.broker.host}:${mqtt.broker.port} + admin + admin + 2 + true + + + \ No newline at end of file From 09b82305dbae61b3af85ae0944f56b3492d83d5e Mon Sep 17 00:00:00 2001 From: Amalka Subasinghe Date: Wed, 29 Mar 2023 23:06:20 +0530 Subject: [PATCH 04/13] added analytics extension component --- iot-core/pom.xml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/iot-core/pom.xml b/iot-core/pom.xml index a812162..c84a68b 100644 --- a/iot-core/pom.xml +++ b/iot-core/pom.xml @@ -351,6 +351,12 @@ org.wso2.carbon.devicemgt:io.entgra.notification.logger.feature:${carbon.device.mgt.version} + + + + org.wso2.carbon.devicemgt:io.entgra.device.mgt.core.apimgt.analytics.extension.feature:${carbon.device.mgt.version} + + @@ -522,6 +528,12 @@ io.entgra.notification.logger.feature.group ${carbon.device.mgt.version} + + + + io.entgra.device.mgt.core.apimgt.analytics.extension.feature.group + ${carbon.device.mgt.version} + From 3ebee649af8b70a3b380958aa13ad594cf3e292d Mon Sep 17 00:00:00 2001 From: Pahansith Gunathilake Date: Fri, 7 Apr 2023 11:04:18 +0000 Subject: [PATCH 05/13] Bump dependency versions Signed-off-by: Pahansith Gunathilake --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 24a6301..88ea805 100644 --- a/pom.xml +++ b/pom.xml @@ -114,14 +114,14 @@ entgra-emm-community-${project.version} - 5.0.21-SNAPSHOT + 5.0.22 5.1.2 1.4.199.wso2v1 - 6.0.13-SNAPSHOT + 6.0.14 From 5b877347702637c0a6b442f2eead8600a91257e3 Mon Sep 17 00:00:00 2001 From: builder Date: Fri, 7 Apr 2023 16:50:59 +0530 Subject: [PATCH 06/13] [maven-release-plugin] prepare release v5.2.0 --- distribution/emm-community/pom.xml | 2 +- distribution/iot-community/pom.xml | 2 +- distribution/pom.xml | 2 +- iot-core/pom.xml | 4 ++-- p2-profile/emm/pom.xml | 2 +- p2-profile/iot/pom.xml | 2 +- p2-profile/pom.xml | 2 +- pom.xml | 4 ++-- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/distribution/emm-community/pom.xml b/distribution/emm-community/pom.xml index 03f6a14..0a3e29e 100644 --- a/distribution/emm-community/pom.xml +++ b/distribution/emm-community/pom.xml @@ -22,7 +22,7 @@ io.entgra.product.community distribution - 5.1.3-SNAPSHOT + 5.2.0 ../pom.xml diff --git a/distribution/iot-community/pom.xml b/distribution/iot-community/pom.xml index 1194d4c..7da0536 100644 --- a/distribution/iot-community/pom.xml +++ b/distribution/iot-community/pom.xml @@ -22,7 +22,7 @@ io.entgra.product.community distribution - 5.1.3-SNAPSHOT + 5.2.0 ../pom.xml diff --git a/distribution/pom.xml b/distribution/pom.xml index 5b4c85a..11da2fe 100644 --- a/distribution/pom.xml +++ b/distribution/pom.xml @@ -22,7 +22,7 @@ io.entgra.product.community product-parent - 5.1.3-SNAPSHOT + 5.2.0 4.0.0 diff --git a/iot-core/pom.xml b/iot-core/pom.xml index c84a68b..e09a829 100644 --- a/iot-core/pom.xml +++ b/iot-core/pom.xml @@ -22,7 +22,7 @@ io.entgra.product.community product-parent - 5.1.3-SNAPSHOT + 5.2.0 4.0.0 @@ -109,7 +109,7 @@ run - + diff --git a/p2-profile/emm/pom.xml b/p2-profile/emm/pom.xml index cbcd4ab..17a3f1c 100644 --- a/p2-profile/emm/pom.xml +++ b/p2-profile/emm/pom.xml @@ -22,7 +22,7 @@ io.entgra.product.community p2-profile - 5.1.3-SNAPSHOT + 5.2.0 ../pom.xml diff --git a/p2-profile/iot/pom.xml b/p2-profile/iot/pom.xml index 2ce30f9..3cb2612 100644 --- a/p2-profile/iot/pom.xml +++ b/p2-profile/iot/pom.xml @@ -22,7 +22,7 @@ io.entgra.product.community p2-profile - 5.1.3-SNAPSHOT + 5.2.0 ../pom.xml diff --git a/p2-profile/pom.xml b/p2-profile/pom.xml index 2322237..a039f91 100644 --- a/p2-profile/pom.xml +++ b/p2-profile/pom.xml @@ -22,7 +22,7 @@ io.entgra.product.community product-parent - 5.1.3-SNAPSHOT + 5.2.0 4.0.0 diff --git a/pom.xml b/pom.xml index 88ea805..805f5e7 100644 --- a/pom.xml +++ b/pom.xml @@ -23,7 +23,7 @@ io.entgra.product.community product-parent pom - 5.1.3-SNAPSHOT + 5.2.0 Entgra Community Product - Parent http://entgra.io Entgra Community Product @@ -130,7 +130,7 @@ https://repository.entgra.net/community/community-product.git scm:git:https://repository.entgra.net/community/community-product.git scm:git:https://repository.entgra.net/community/community-product.git - HEAD + v5.2.0 From 963e2976622eae8aef773292d4dc3e0642386c2b Mon Sep 17 00:00:00 2001 From: builder Date: Fri, 7 Apr 2023 16:51:04 +0530 Subject: [PATCH 07/13] [maven-release-plugin] prepare for next development iteration --- distribution/emm-community/pom.xml | 2 +- distribution/iot-community/pom.xml | 2 +- distribution/pom.xml | 2 +- iot-core/pom.xml | 2 +- p2-profile/emm/pom.xml | 2 +- p2-profile/iot/pom.xml | 2 +- p2-profile/pom.xml | 2 +- pom.xml | 4 ++-- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/distribution/emm-community/pom.xml b/distribution/emm-community/pom.xml index 0a3e29e..5ed74af 100644 --- a/distribution/emm-community/pom.xml +++ b/distribution/emm-community/pom.xml @@ -22,7 +22,7 @@ io.entgra.product.community distribution - 5.2.0 + 5.2.1-SNAPSHOT ../pom.xml diff --git a/distribution/iot-community/pom.xml b/distribution/iot-community/pom.xml index 7da0536..b1cefec 100644 --- a/distribution/iot-community/pom.xml +++ b/distribution/iot-community/pom.xml @@ -22,7 +22,7 @@ io.entgra.product.community distribution - 5.2.0 + 5.2.1-SNAPSHOT ../pom.xml diff --git a/distribution/pom.xml b/distribution/pom.xml index 11da2fe..4782dd8 100644 --- a/distribution/pom.xml +++ b/distribution/pom.xml @@ -22,7 +22,7 @@ io.entgra.product.community product-parent - 5.2.0 + 5.2.1-SNAPSHOT 4.0.0 diff --git a/iot-core/pom.xml b/iot-core/pom.xml index e09a829..0b99fd0 100644 --- a/iot-core/pom.xml +++ b/iot-core/pom.xml @@ -22,7 +22,7 @@ io.entgra.product.community product-parent - 5.2.0 + 5.2.1-SNAPSHOT 4.0.0 diff --git a/p2-profile/emm/pom.xml b/p2-profile/emm/pom.xml index 17a3f1c..dfb63a2 100644 --- a/p2-profile/emm/pom.xml +++ b/p2-profile/emm/pom.xml @@ -22,7 +22,7 @@ io.entgra.product.community p2-profile - 5.2.0 + 5.2.1-SNAPSHOT ../pom.xml diff --git a/p2-profile/iot/pom.xml b/p2-profile/iot/pom.xml index 3cb2612..1812d82 100644 --- a/p2-profile/iot/pom.xml +++ b/p2-profile/iot/pom.xml @@ -22,7 +22,7 @@ io.entgra.product.community p2-profile - 5.2.0 + 5.2.1-SNAPSHOT ../pom.xml diff --git a/p2-profile/pom.xml b/p2-profile/pom.xml index a039f91..02ff0c9 100644 --- a/p2-profile/pom.xml +++ b/p2-profile/pom.xml @@ -22,7 +22,7 @@ io.entgra.product.community product-parent - 5.2.0 + 5.2.1-SNAPSHOT 4.0.0 diff --git a/pom.xml b/pom.xml index 805f5e7..320a242 100644 --- a/pom.xml +++ b/pom.xml @@ -23,7 +23,7 @@ io.entgra.product.community product-parent pom - 5.2.0 + 5.2.1-SNAPSHOT Entgra Community Product - Parent http://entgra.io Entgra Community Product @@ -130,7 +130,7 @@ https://repository.entgra.net/community/community-product.git scm:git:https://repository.entgra.net/community/community-product.git scm:git:https://repository.entgra.net/community/community-product.git - v5.2.0 + HEAD From 1b9bc9ad88ddabefe9ad7aa8a0a8f480b7dad47f Mon Sep 17 00:00:00 2001 From: Pahansith Gunathilake Date: Mon, 10 Apr 2023 16:06:54 +0000 Subject: [PATCH 08/13] Bump dependency versions Signed-off-by: Pahansith Gunathilake --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 320a242..10f17d2 100644 --- a/pom.xml +++ b/pom.xml @@ -114,7 +114,7 @@ entgra-emm-community-${project.version} - 5.0.22 + 5.0.23 5.1.2 From e94b49bb61dbd37bc628b19960202ee84f7b09e7 Mon Sep 17 00:00:00 2001 From: Pahansith Gunathilake Date: Mon, 10 Apr 2023 16:19:43 +0000 Subject: [PATCH 09/13] Modify am-parent artifact to fix build issue Signed-off-by: Pahansith Gunathilake --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 10f17d2..d8a17c5 100644 --- a/pom.xml +++ b/pom.xml @@ -107,7 +107,7 @@ 4.0.0 - wso2am-4.0.0 + am-parent-4.0.0 entgra-iot-core-${project.version} entgra-iot-community-${project.version} From cfd87c8d2084801a00612c7aae81025634f51bf0 Mon Sep 17 00:00:00 2001 From: Pahansith Gunathilake Date: Mon, 10 Apr 2023 19:24:58 +0000 Subject: [PATCH 10/13] Bump dependency versions Signed-off-by: Pahansith Gunathilake --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d8a17c5..a23134b 100644 --- a/pom.xml +++ b/pom.xml @@ -114,7 +114,7 @@ entgra-emm-community-${project.version} - 5.0.23 + 5.0.24-SNAPSHOT 5.1.2 From f0a1a53200a9a3c454004e2e1b79912623915873 Mon Sep 17 00:00:00 2001 From: Pahansith Gunathilake Date: Thu, 13 Apr 2023 09:05:14 +0000 Subject: [PATCH 11/13] Bump dependency versions Signed-off-by: Pahansith Gunathilake --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index a23134b..28b3bb0 100644 --- a/pom.xml +++ b/pom.xml @@ -114,14 +114,14 @@ entgra-emm-community-${project.version} - 5.0.24-SNAPSHOT + 5.0.25-SNAPSHOT 5.1.2 1.4.199.wso2v1 - 6.0.14 + 6.0.16-SNAPSHOT From 30d140f84d59b0bdfcc683ce18a58011c9461b30 Mon Sep 17 00:00:00 2001 From: rajitha Date: Tue, 18 Apr 2023 18:58:34 +0530 Subject: [PATCH 12/13] Update pom file --- iot-core/pom.xml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/iot-core/pom.xml b/iot-core/pom.xml index 0b99fd0..65d0662 100644 --- a/iot-core/pom.xml +++ b/iot-core/pom.xml @@ -357,6 +357,12 @@ org.wso2.carbon.devicemgt:io.entgra.device.mgt.core.apimgt.analytics.extension.feature:${carbon.device.mgt.version} + + + + org.wso2.carbon.devicemgt:io.entgra.tenant.mgt.server.feature:${carbon.device.mgt.version} + + @@ -534,6 +540,12 @@ io.entgra.device.mgt.core.apimgt.analytics.extension.feature.group ${carbon.device.mgt.version} + + + + io.entgra.tenant.mgt.server.feature.group + ${carbon.device.mgt.version} + From 6d9b6be5cc1d08b2235e23b215bd89c5ccd25bc8 Mon Sep 17 00:00:00 2001 From: Amalka Subasinghe Date: Mon, 24 Apr 2023 13:55:17 +0530 Subject: [PATCH 13/13] added virtual fire alaram deployer --- iot-core/src/assembly/bin.xml | 4 + .../core/samples/device-plugins-deployer.xml | 196 ++++++++++++++++++ pom.xml | 2 +- 3 files changed, 201 insertions(+), 1 deletion(-) create mode 100644 iot-core/src/core/samples/device-plugins-deployer.xml diff --git a/iot-core/src/assembly/bin.xml b/iot-core/src/assembly/bin.xml index 20ee19b..9d767d8 100644 --- a/iot-core/src/assembly/bin.xml +++ b/iot-core/src/assembly/bin.xml @@ -104,6 +104,10 @@ src/core/keystores/client-truststore.jks ${entgra-iot-core}/repository/resources/security/ + + src/core/samples/device-plugins-deployer.xml + ${entgra-iot-core}/samples/ + diff --git a/iot-core/src/core/samples/device-plugins-deployer.xml b/iot-core/src/core/samples/device-plugins-deployer.xml new file mode 100644 index 0000000..ebabdc4 --- /dev/null +++ b/iot-core/src/core/samples/device-plugins-deployer.xml @@ -0,0 +1,196 @@ + + + + + org.wso2 + wso2 + 1 + + + 4.0.0 + io.entgra.product.community + iot-devicetype-feature-installation + 5.2.1-SNAPSHOT + pom + Install Virtual Fire Alarm Device Types - IoT Core + + + + + org.wso2.maven + carbon-p2-plugin + 5.1.2 + + + 2-p2-repo-generation + package + + p2-repo-gen + + + file:${basedir}/target/p2-repo + file:${basedir}/target/p2-repo + true + true + + + org.wso2.carbon.devicemgt-plugins:org.wso2.carbon.device.mgt.iot.virtualfirealarm.backend.feature:${carbon.device.mgt.plugin.version} + + + + + + default-feature-install + package + + p2-profile-gen + + + default + file:${basedir}/target/p2-repo + file:${basedir}/target/p2-repo + ${basedir}/../repository/components + false + + + org.wso2.carbon.device.mgt.iot.virtualfirealarm.backend.feature.group + ${carbon.device.mgt.plugin.version} + + + + + + + + + + + + wso2.releases + WSO2 internal Repository + http://maven.wso2.org/nexus/content/repositories/releases/ + + true + daily + ignore + + + + wso2.snapshots + Apache Snapshot Repository + http://maven.wso2.org/nexus/content/repositories/snapshots/ + + true + daily + + + false + + + + wso2-nexus + WSO2 internal Repository + http://maven.wso2.org/nexus/content/groups/wso2-public/ + + true + daily + ignore + + + + + + + + + wso2-nexus + WSO2 internal Repository + http://maven.wso2.org/nexus/content/groups/wso2-public/ + + true + daily + ignore + + + + wso2.releases + WSO2 internal Repository + http://maven.wso2.org/nexus/content/repositories/releases/ + + true + daily + ignore + + + + wso2.snapshots + WSO2 Snapshot Repository + http://maven.wso2.org/nexus/content/repositories/snapshots/ + + true + daily + + + false + + + + entgra-nexus + Entgra internal Repository + http://nexus.entgra.io/repository/maven-public/ + + true + daily + ignore + + + + entgra.releases + Entgra internal Repository + http://nexus.entgra.io/repository/maven-releases/ + + true + daily + ignore + + + + entgra.snapshots + Entgra Snapshot Repository + http://nexus.entgra.io/repository/maven-snapshots/ + + true + daily + + + false + + + + + + + 6.0.16-SNAPSHOT + + diff --git a/pom.xml b/pom.xml index 28b3bb0..522e8e0 100644 --- a/pom.xml +++ b/pom.xml @@ -107,7 +107,7 @@ 4.0.0 - am-parent-4.0.0 + wso2am-4.0.0 entgra-iot-core-${project.version} entgra-iot-community-${project.version}