- This site uses cookies. By logging in to the site, you are agreeing on the usage of cookies. For more information, refer cookie policy and
- privacy policy
+
+
+
+ This site uses cookies. By logging in to the site, you are agreeing on the usage of cookies.
+ For more information, refer
+
+ Cookie policy
+ .
+
+
+
+
+
+
+
+
+
diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.data-tables-extended/public/js/dataTables.extended.js b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.data-tables-extended/public/js/dataTables.extended.js
index d33cc3b4df..3914111525 100644
--- a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.data-tables-extended/public/js/dataTables.extended.js
+++ b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.data-tables-extended/public/js/dataTables.extended.js
@@ -109,17 +109,17 @@ $.fn.datatables_extended = function (settings) {
$(column).each(function () {
var i;
if (filterColumn.eq(column.index()).hasClass('data-status')) {
- for(i = 0; i < cachedFilterRes.status.length; i++){
+ for (i = 0; i < cachedFilterRes.status.length; i++) {
var status = cachedFilterRes.status[i];
select.append('')
}
} else if (filterColumn.eq(column.index()).hasClass('data-ownership')) {
- for(i = 0; i < cachedFilterRes.ownership.length; i++){
+ for (i = 0; i < cachedFilterRes.ownership.length; i++) {
var ownership = cachedFilterRes.ownership[i];
select.append('')
}
} else if (filterColumn.eq(column.index()).hasClass('data-platform')) {
- for(i = 0; i < cachedFilterRes.deviceTypes.length; i++){
+ for (i = 0; i < cachedFilterRes.deviceTypes.length; i++) {
var deviceTypes = cachedFilterRes.deviceTypes[i];
var name = deviceTypes;
var value = deviceTypes;
@@ -130,10 +130,18 @@ $.fn.datatables_extended = function (settings) {
select.append('')
}
} else if (filterColumn.eq(column.index()).hasClass('data-compliance')) {
- for(i = 0; i < cachedFilterRes.deviceTypes.length; i++){
+ for (i = 0; i < cachedFilterRes.deviceTypes.length; i++) {
var compliance = cachedFilterRes.compliance[i];
select.append('')
}
+ } else if (filterColumn.eq(column.index()).hasClass('data-dep-status')) {
+ for (i = 0; i < cachedFilterRes.deviceTypes.length; i++) {
+ var depStatus = cachedFilterRes.depStatus[i];
+ select.append('')
+ }
+ } else if (filterColumn.eq(column.index()).hasClass('data-boolean')) {
+ select.append('');
+ select.append('');
} else if ($(column.nodes()).attr('data-search')) {
var values = [];
column.nodes().unique().sort().each(function (d, j) {
diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.data-tables-extended/public/js/dataTables.extended.serversidepaging.js b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.data-tables-extended/public/js/dataTables.extended.serversidepaging.js
index 85af438c1c..a560cc8220 100644
--- a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.data-tables-extended/public/js/dataTables.extended.serversidepaging.js
+++ b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.data-tables-extended/public/js/dataTables.extended.serversidepaging.js
@@ -177,17 +177,17 @@ $.fn.datatables_extended_serverside_paging = function (settings, url, dataFilter
$(column).each(function () {
var i;
if (filterColumn.eq(column.index()).hasClass('data-status')) {
- for(i = 0; i < cachedFilterRes.status.length; i++){
+ for (i = 0; i < cachedFilterRes.status.length; i++) {
var status = cachedFilterRes.status[i];
select.append('')
}
} else if (filterColumn.eq(column.index()).hasClass('data-ownership')) {
- for(i = 0; i < cachedFilterRes.ownership.length; i++){
+ for (i = 0; i < cachedFilterRes.ownership.length; i++) {
var ownership = cachedFilterRes.ownership[i];
select.append('')
}
} else if (filterColumn.eq(column.index()).hasClass('data-platform')) {
- for(i = 0; i < cachedFilterRes.deviceTypes.length; i++){
+ for (i = 0; i < cachedFilterRes.deviceTypes.length; i++) {
var deviceTypes = cachedFilterRes.deviceTypes[i];
var name = deviceTypes;
var value = deviceTypes;
@@ -198,10 +198,18 @@ $.fn.datatables_extended_serverside_paging = function (settings, url, dataFilter
select.append('')
}
} else if (filterColumn.eq(column.index()).hasClass('data-compliance')) {
- for(i = 0; i < cachedFilterRes.deviceTypes.length; i++){
+ for (i = 0; i < cachedFilterRes.deviceTypes.length; i++) {
var compliance = cachedFilterRes.compliance[i];
select.append('')
}
+ } else if (filterColumn.eq(column.index()).hasClass('data-dep-status')) {
+ for (i = 0; i < cachedFilterRes.deviceTypes.length; i++) {
+ var depStatus = cachedFilterRes.depStatus[i];
+ select.append('')
+ }
+ } else if (filterColumn.eq(column.index()).hasClass('data-boolean')) {
+ select.append('');
+ select.append('');
} else if ($(column.nodes()).attr('data-search')) {
var titles = [];
column.nodes().unique().sort().each(function (d, j) {
diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.url.printer/pom.xml b/components/device-mgt/org.wso2.carbon.device.mgt.url.printer/pom.xml
index b89efad502..8fc363e3c9 100644
--- a/components/device-mgt/org.wso2.carbon.device.mgt.url.printer/pom.xml
+++ b/components/device-mgt/org.wso2.carbon.device.mgt.url.printer/pom.xml
@@ -23,7 +23,7 @@
device-mgtorg.wso2.carbon.devicemgt
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml
diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.v09.api/pom.xml b/components/device-mgt/org.wso2.carbon.device.mgt.v09.api/pom.xml
index f20d8ec859..367abd97e3 100644
--- a/components/device-mgt/org.wso2.carbon.device.mgt.v09.api/pom.xml
+++ b/components/device-mgt/org.wso2.carbon.device.mgt.v09.api/pom.xml
@@ -22,7 +22,7 @@
device-mgtorg.wso2.carbon.devicemgt
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml
diff --git a/components/device-mgt/pom.xml b/components/device-mgt/pom.xml
index b4ff13d348..156aefe2da 100644
--- a/components/device-mgt/pom.xml
+++ b/components/device-mgt/pom.xml
@@ -22,7 +22,7 @@
org.wso2.carbon.devicemgtcarbon-devicemgt
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../../pom.xml
diff --git a/components/email-sender/org.wso2.carbon.email.sender.core/pom.xml b/components/email-sender/org.wso2.carbon.email.sender.core/pom.xml
index e379fd874a..99f43690d7 100644
--- a/components/email-sender/org.wso2.carbon.email.sender.core/pom.xml
+++ b/components/email-sender/org.wso2.carbon.email.sender.core/pom.xml
@@ -22,7 +22,7 @@
org.wso2.carbon.devicemgtemail-sender
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml
diff --git a/components/email-sender/pom.xml b/components/email-sender/pom.xml
index be6ec76842..6603902f3c 100644
--- a/components/email-sender/pom.xml
+++ b/components/email-sender/pom.xml
@@ -22,7 +22,7 @@
org.wso2.carbon.devicemgtcarbon-devicemgt
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../../pom.xml
diff --git a/components/identity-extensions/org.wso2.carbon.device.mgt.oauth.extensions/pom.xml b/components/identity-extensions/org.wso2.carbon.device.mgt.oauth.extensions/pom.xml
index e1e7c113b5..04efb2a01b 100644
--- a/components/identity-extensions/org.wso2.carbon.device.mgt.oauth.extensions/pom.xml
+++ b/components/identity-extensions/org.wso2.carbon.device.mgt.oauth.extensions/pom.xml
@@ -22,13 +22,13 @@
org.wso2.carbon.devicemgtidentity-extensions
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml4.0.0org.wso2.carbon.device.mgt.oauth.extensions
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTbundleWSO2 Carbon - OAuth Extensionshttp://wso2.org
diff --git a/components/identity-extensions/org.wso2.carbon.identity.authenticator.backend.oauth/pom.xml b/components/identity-extensions/org.wso2.carbon.identity.authenticator.backend.oauth/pom.xml
index 1b75a80421..c30046ace3 100644
--- a/components/identity-extensions/org.wso2.carbon.identity.authenticator.backend.oauth/pom.xml
+++ b/components/identity-extensions/org.wso2.carbon.identity.authenticator.backend.oauth/pom.xml
@@ -21,7 +21,7 @@
identity-extensionsorg.wso2.carbon.devicemgt
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT4.0.0
diff --git a/components/identity-extensions/org.wso2.carbon.identity.jwt.client.extension/pom.xml b/components/identity-extensions/org.wso2.carbon.identity.jwt.client.extension/pom.xml
index 1bee1de1f2..d590797ffe 100644
--- a/components/identity-extensions/org.wso2.carbon.identity.jwt.client.extension/pom.xml
+++ b/components/identity-extensions/org.wso2.carbon.identity.jwt.client.extension/pom.xml
@@ -22,7 +22,7 @@
org.wso2.carbon.devicemgtidentity-extensions
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml
diff --git a/components/identity-extensions/pom.xml b/components/identity-extensions/pom.xml
index a054cfb669..a05479b244 100644
--- a/components/identity-extensions/pom.xml
+++ b/components/identity-extensions/pom.xml
@@ -22,7 +22,7 @@
org.wso2.carbon.devicemgtcarbon-devicemgt
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../../pom.xml
diff --git a/components/policy-mgt/org.wso2.carbon.complex.policy.decision.point/pom.xml b/components/policy-mgt/org.wso2.carbon.complex.policy.decision.point/pom.xml
index cee6615269..c0870341f4 100644
--- a/components/policy-mgt/org.wso2.carbon.complex.policy.decision.point/pom.xml
+++ b/components/policy-mgt/org.wso2.carbon.complex.policy.decision.point/pom.xml
@@ -22,14 +22,14 @@
org.wso2.carbon.devicemgtpolicy-mgt
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml4.0.0org.wso2.carbon.devicemgtorg.wso2.carbon.complex.policy.decision.point
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTbundleWSO2 Carbon - Policy Decision PointWSO2 Carbon - Policy Decision Point
diff --git a/components/policy-mgt/org.wso2.carbon.policy.decision.point/pom.xml b/components/policy-mgt/org.wso2.carbon.policy.decision.point/pom.xml
index c03a72a60c..09a7f00349 100644
--- a/components/policy-mgt/org.wso2.carbon.policy.decision.point/pom.xml
+++ b/components/policy-mgt/org.wso2.carbon.policy.decision.point/pom.xml
@@ -3,14 +3,14 @@
org.wso2.carbon.devicemgtpolicy-mgt
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml4.0.0org.wso2.carbon.devicemgtorg.wso2.carbon.policy.decision.point
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTbundleWSO2 Carbon - Policy Decision PointWSO2 Carbon - Policy Decision Point
diff --git a/components/policy-mgt/org.wso2.carbon.policy.information.point/pom.xml b/components/policy-mgt/org.wso2.carbon.policy.information.point/pom.xml
index 5e79a72365..f0509e1f3b 100644
--- a/components/policy-mgt/org.wso2.carbon.policy.information.point/pom.xml
+++ b/components/policy-mgt/org.wso2.carbon.policy.information.point/pom.xml
@@ -3,7 +3,7 @@
org.wso2.carbon.devicemgtpolicy-mgt
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml
@@ -11,7 +11,7 @@
4.0.0org.wso2.carbon.devicemgtorg.wso2.carbon.policy.information.point
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTbundleWSO2 Carbon - Policy Information PointWSO2 Carbon - Policy Information Point
diff --git a/components/policy-mgt/org.wso2.carbon.policy.mgt.common/pom.xml b/components/policy-mgt/org.wso2.carbon.policy.mgt.common/pom.xml
index d72f7c55c3..c48785567b 100644
--- a/components/policy-mgt/org.wso2.carbon.policy.mgt.common/pom.xml
+++ b/components/policy-mgt/org.wso2.carbon.policy.mgt.common/pom.xml
@@ -22,14 +22,14 @@
org.wso2.carbon.devicemgtpolicy-mgt
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml4.0.0org.wso2.carbon.devicemgtorg.wso2.carbon.policy.mgt.common
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTbundleWSO2 Carbon - Policy Management CommonWSO2 Carbon - Policy Management Common
diff --git a/components/policy-mgt/org.wso2.carbon.policy.mgt.core/pom.xml b/components/policy-mgt/org.wso2.carbon.policy.mgt.core/pom.xml
index db63610085..1b5e577f41 100644
--- a/components/policy-mgt/org.wso2.carbon.policy.mgt.core/pom.xml
+++ b/components/policy-mgt/org.wso2.carbon.policy.mgt.core/pom.xml
@@ -22,14 +22,14 @@
org.wso2.carbon.devicemgtpolicy-mgt
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml4.0.0org.wso2.carbon.devicemgtorg.wso2.carbon.policy.mgt.core
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTbundleWSO2 Carbon - Policy Management CoreWSO2 Carbon - Policy Management Core
diff --git a/components/policy-mgt/pom.xml b/components/policy-mgt/pom.xml
index cff08541f4..3414cd28ef 100644
--- a/components/policy-mgt/pom.xml
+++ b/components/policy-mgt/pom.xml
@@ -23,13 +23,13 @@
org.wso2.carbon.devicemgtcarbon-devicemgt
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../../pom.xml4.0.0policy-mgt
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTpomWSO2 Carbon - Policy Management Componenthttp://wso2.org
diff --git a/components/test-coverage/pom.xml b/components/test-coverage/pom.xml
index bcdbde0719..8552b6c918 100644
--- a/components/test-coverage/pom.xml
+++ b/components/test-coverage/pom.xml
@@ -21,7 +21,7 @@
carbon-devicemgtorg.wso2.carbon.devicemgt
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../../pom.xml4.0.0
diff --git a/components/webapp-authenticator-framework/org.wso2.carbon.webapp.authenticator.framework/pom.xml b/components/webapp-authenticator-framework/org.wso2.carbon.webapp.authenticator.framework/pom.xml
index aafb9b612b..b308e93daf 100644
--- a/components/webapp-authenticator-framework/org.wso2.carbon.webapp.authenticator.framework/pom.xml
+++ b/components/webapp-authenticator-framework/org.wso2.carbon.webapp.authenticator.framework/pom.xml
@@ -21,14 +21,14 @@
org.wso2.carbon.devicemgtwebapp-authenticator-framework
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml4.0.0org.wso2.carbon.devicemgtorg.wso2.carbon.webapp.authenticator.framework
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTbundleWSO2 Carbon - Web Application Authenticator Framework BundleWSO2 Carbon - Web Application Authenticator Framework Bundle
diff --git a/components/webapp-authenticator-framework/pom.xml b/components/webapp-authenticator-framework/pom.xml
index 825f77608d..c0c952175a 100644
--- a/components/webapp-authenticator-framework/pom.xml
+++ b/components/webapp-authenticator-framework/pom.xml
@@ -22,14 +22,14 @@
org.wso2.carbon.devicemgtcarbon-devicemgt
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../../pom.xml4.0.0org.wso2.carbon.devicemgtwebapp-authenticator-framework
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTpomWSO2 Carbon - Webapp Authenticator Frameworkhttp://wso2.org
diff --git a/features/apimgt-extensions/org.wso2.carbon.apimgt.application.extension.feature/pom.xml b/features/apimgt-extensions/org.wso2.carbon.apimgt.application.extension.feature/pom.xml
index 032dd476ec..5c8169961e 100644
--- a/features/apimgt-extensions/org.wso2.carbon.apimgt.application.extension.feature/pom.xml
+++ b/features/apimgt-extensions/org.wso2.carbon.apimgt.application.extension.feature/pom.xml
@@ -21,14 +21,14 @@
org.wso2.carbon.devicemgtapimgt-extensions-feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml4.0.0org.wso2.carbon.apimgt.application.extension.featurepom
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTWSO2 Carbon - API Management Application Extension Featurehttp://wso2.orgThis feature contains an implementation of a api application registration, which takes care of subscription
diff --git a/features/apimgt-extensions/org.wso2.carbon.apimgt.handler.server.feature/pom.xml b/features/apimgt-extensions/org.wso2.carbon.apimgt.handler.server.feature/pom.xml
index 3729fe0ba6..0ded181f4d 100644
--- a/features/apimgt-extensions/org.wso2.carbon.apimgt.handler.server.feature/pom.xml
+++ b/features/apimgt-extensions/org.wso2.carbon.apimgt.handler.server.feature/pom.xml
@@ -22,14 +22,14 @@
org.wso2.carbon.devicemgtapimgt-extensions-feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml4.0.0org.wso2.carbon.apimgt.handler.server.featurepom
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTWSO2 Carbon - Device Management - APIM handler Server Featurehttp://wso2.orgThis feature contains the handler for the api authentications
diff --git a/features/apimgt-extensions/org.wso2.carbon.apimgt.integration.client.feature/pom.xml b/features/apimgt-extensions/org.wso2.carbon.apimgt.integration.client.feature/pom.xml
index 7bcb29b93d..541e429951 100644
--- a/features/apimgt-extensions/org.wso2.carbon.apimgt.integration.client.feature/pom.xml
+++ b/features/apimgt-extensions/org.wso2.carbon.apimgt.integration.client.feature/pom.xml
@@ -21,13 +21,13 @@
org.wso2.carbon.devicemgtapimgt-extensions-feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml4.0.0org.wso2.carbon.apimgt.integration.client.feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTpomWSO2 Carbon - APIM Integration Client Featurehttp://wso2.org
diff --git a/features/apimgt-extensions/org.wso2.carbon.apimgt.webapp.publisher.feature/pom.xml b/features/apimgt-extensions/org.wso2.carbon.apimgt.webapp.publisher.feature/pom.xml
index d998ed667f..3f603afbe6 100644
--- a/features/apimgt-extensions/org.wso2.carbon.apimgt.webapp.publisher.feature/pom.xml
+++ b/features/apimgt-extensions/org.wso2.carbon.apimgt.webapp.publisher.feature/pom.xml
@@ -21,14 +21,14 @@
org.wso2.carbon.devicemgtapimgt-extensions-feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml4.0.0org.wso2.carbon.apimgt.webapp.publisher.featurepom
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTWSO2 Carbon - API Management Webapp Publisher Featurehttp://wso2.orgThis feature contains an implementation of a Tomcat lifecycle listener, which takes care of publishing
diff --git a/features/apimgt-extensions/pom.xml b/features/apimgt-extensions/pom.xml
index af67a23435..7ef443ec3f 100644
--- a/features/apimgt-extensions/pom.xml
+++ b/features/apimgt-extensions/pom.xml
@@ -22,14 +22,14 @@
org.wso2.carbon.devicemgtcarbon-devicemgt
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../../pom.xml4.0.0org.wso2.carbon.devicemgtapimgt-extensions-feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTpomWSO2 Carbon - API Management Extensions Featurehttp://wso2.org
diff --git a/features/certificate-mgt/org.wso2.carbon.certificate.mgt.api.feature/pom.xml b/features/certificate-mgt/org.wso2.carbon.certificate.mgt.api.feature/pom.xml
index e352991ba7..b0242e24b8 100644
--- a/features/certificate-mgt/org.wso2.carbon.certificate.mgt.api.feature/pom.xml
+++ b/features/certificate-mgt/org.wso2.carbon.certificate.mgt.api.feature/pom.xml
@@ -22,7 +22,7 @@
org.wso2.carbon.devicemgtcertificate-mgt-feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml
diff --git a/features/certificate-mgt/org.wso2.carbon.certificate.mgt.cert.admin.api.feature/pom.xml b/features/certificate-mgt/org.wso2.carbon.certificate.mgt.cert.admin.api.feature/pom.xml
index b618c9dc00..2f94f0e62b 100644
--- a/features/certificate-mgt/org.wso2.carbon.certificate.mgt.cert.admin.api.feature/pom.xml
+++ b/features/certificate-mgt/org.wso2.carbon.certificate.mgt.cert.admin.api.feature/pom.xml
@@ -22,7 +22,7 @@
org.wso2.carbon.devicemgtcertificate-mgt-feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml
diff --git a/features/certificate-mgt/org.wso2.carbon.certificate.mgt.server.feature/pom.xml b/features/certificate-mgt/org.wso2.carbon.certificate.mgt.server.feature/pom.xml
index 619c5e1941..30f3931579 100644
--- a/features/certificate-mgt/org.wso2.carbon.certificate.mgt.server.feature/pom.xml
+++ b/features/certificate-mgt/org.wso2.carbon.certificate.mgt.server.feature/pom.xml
@@ -22,14 +22,14 @@
org.wso2.carbon.devicemgtcertificate-mgt-feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml4.0.0org.wso2.carbon.certificate.mgt.server.featurepom
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTWSO2 Carbon - Certificate Management Server Featurehttp://wso2.orgThis feature contains the core bundles required for back-end Certificate Management functionality
diff --git a/features/certificate-mgt/pom.xml b/features/certificate-mgt/pom.xml
index c5a269a43b..8d1b44632d 100644
--- a/features/certificate-mgt/pom.xml
+++ b/features/certificate-mgt/pom.xml
@@ -22,14 +22,14 @@
org.wso2.carbon.devicemgtcarbon-devicemgt
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../../pom.xml4.0.0org.wso2.carbon.devicemgtcertificate-mgt-feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTpomWSO2 Carbon - Certificate Management Featurehttp://wso2.org
diff --git a/features/device-mgt-extensions/org.wso2.carbon.device.mgt.extensions.device.type.deployer.feature/pom.xml b/features/device-mgt-extensions/org.wso2.carbon.device.mgt.extensions.device.type.deployer.feature/pom.xml
index 2c967f393d..23924ae605 100644
--- a/features/device-mgt-extensions/org.wso2.carbon.device.mgt.extensions.device.type.deployer.feature/pom.xml
+++ b/features/device-mgt-extensions/org.wso2.carbon.device.mgt.extensions.device.type.deployer.feature/pom.xml
@@ -22,14 +22,14 @@
org.wso2.carbon.devicemgtdevice-mgt-extensions-feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml4.0.0org.wso2.carbon.device.mgt.extensions.device.type.deployer.featurepom
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTWSO2 Carbon - Device Type Deployer Featurehttp://wso2.orgWSO2 Carbon - Device Type Deployer Feature
diff --git a/features/device-mgt-extensions/org.wso2.carbon.device.mgt.extensions.push.notification.provider.fcm.feature/pom.xml b/features/device-mgt-extensions/org.wso2.carbon.device.mgt.extensions.push.notification.provider.fcm.feature/pom.xml
index cf85849eb6..e960398df4 100644
--- a/features/device-mgt-extensions/org.wso2.carbon.device.mgt.extensions.push.notification.provider.fcm.feature/pom.xml
+++ b/features/device-mgt-extensions/org.wso2.carbon.device.mgt.extensions.push.notification.provider.fcm.feature/pom.xml
@@ -22,14 +22,14 @@
org.wso2.carbon.devicemgtdevice-mgt-extensions-feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml4.0.0org.wso2.carbon.device.mgt.extensions.push.notification.provider.fcm.featurepom
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTWSO2 Carbon - FCM Based Push Notification Provider Featurehttp://wso2.orgWSO2 Carbon - MQTT Based Push Notification Provider Feature
diff --git a/features/device-mgt-extensions/org.wso2.carbon.device.mgt.extensions.push.notification.provider.http.feature/pom.xml b/features/device-mgt-extensions/org.wso2.carbon.device.mgt.extensions.push.notification.provider.http.feature/pom.xml
index cba7efe080..2277f9f309 100644
--- a/features/device-mgt-extensions/org.wso2.carbon.device.mgt.extensions.push.notification.provider.http.feature/pom.xml
+++ b/features/device-mgt-extensions/org.wso2.carbon.device.mgt.extensions.push.notification.provider.http.feature/pom.xml
@@ -22,14 +22,14 @@
org.wso2.carbon.devicemgtdevice-mgt-extensions-feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml4.0.0org.wso2.carbon.device.mgt.extensions.push.notification.provider.http.featurepom
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTWSO2 Carbon - MQTT Based Push Notification Provider Featurehttp://wso2.orgWSO2 Carbon - MQTT Based Push Notification Provider Feature
diff --git a/features/device-mgt-extensions/org.wso2.carbon.device.mgt.extensions.push.notification.provider.mqtt.feature/pom.xml b/features/device-mgt-extensions/org.wso2.carbon.device.mgt.extensions.push.notification.provider.mqtt.feature/pom.xml
index 5beb99f3f1..30b563b486 100644
--- a/features/device-mgt-extensions/org.wso2.carbon.device.mgt.extensions.push.notification.provider.mqtt.feature/pom.xml
+++ b/features/device-mgt-extensions/org.wso2.carbon.device.mgt.extensions.push.notification.provider.mqtt.feature/pom.xml
@@ -22,14 +22,14 @@
org.wso2.carbon.devicemgtdevice-mgt-extensions-feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml4.0.0org.wso2.carbon.device.mgt.extensions.push.notification.provider.mqtt.featurepom
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTWSO2 Carbon - MQTT Based Push Notification Provider Featurehttp://wso2.orgWSO2 Carbon - MQTT Based Push Notification Provider Feature
diff --git a/features/device-mgt-extensions/org.wso2.carbon.device.mgt.extensions.push.notification.provider.xmpp.feature/pom.xml b/features/device-mgt-extensions/org.wso2.carbon.device.mgt.extensions.push.notification.provider.xmpp.feature/pom.xml
index 9e34561e7a..95cbc16c7d 100644
--- a/features/device-mgt-extensions/org.wso2.carbon.device.mgt.extensions.push.notification.provider.xmpp.feature/pom.xml
+++ b/features/device-mgt-extensions/org.wso2.carbon.device.mgt.extensions.push.notification.provider.xmpp.feature/pom.xml
@@ -22,14 +22,14 @@
org.wso2.carbon.devicemgtdevice-mgt-extensions-feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml4.0.0org.wso2.carbon.device.mgt.extensions.push.notification.provider.xmpp.featurepom
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTWSO2 Carbon - XMPP Based Push Notification Provider Featurehttp://wso2.orgWSO2 Carbon - XMPP Based Push Notification Provider Feature
diff --git a/features/device-mgt-extensions/pom.xml b/features/device-mgt-extensions/pom.xml
index 606943e13c..25f21f3cdd 100644
--- a/features/device-mgt-extensions/pom.xml
+++ b/features/device-mgt-extensions/pom.xml
@@ -22,7 +22,7 @@
org.wso2.carbon.devicemgtcarbon-devicemgt
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../../pom.xml
diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.analytics.data.publisher.feature/pom.xml b/features/device-mgt/org.wso2.carbon.device.mgt.analytics.data.publisher.feature/pom.xml
index 2f45d4ebc0..cd4fa5ff1b 100644
--- a/features/device-mgt/org.wso2.carbon.device.mgt.analytics.data.publisher.feature/pom.xml
+++ b/features/device-mgt/org.wso2.carbon.device.mgt.analytics.data.publisher.feature/pom.xml
@@ -22,14 +22,14 @@
org.wso2.carbon.devicemgtdevice-mgt-feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml4.0.0org.wso2.carbon.device.mgt.analytics.data.publisher.featurepom
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTWSO2 Carbon - Device Management Server Featurehttp://wso2.orgThis feature contains bundles related to device analytics data publisher
diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.api.feature/pom.xml b/features/device-mgt/org.wso2.carbon.device.mgt.api.feature/pom.xml
index 28c87236a6..b1e1edd0a2 100644
--- a/features/device-mgt/org.wso2.carbon.device.mgt.api.feature/pom.xml
+++ b/features/device-mgt/org.wso2.carbon.device.mgt.api.feature/pom.xml
@@ -22,7 +22,7 @@
org.wso2.carbon.devicemgtdevice-mgt-feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml
diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.basics.feature/pom.xml b/features/device-mgt/org.wso2.carbon.device.mgt.basics.feature/pom.xml
index 8b9da4e45c..abf0c36f19 100644
--- a/features/device-mgt/org.wso2.carbon.device.mgt.basics.feature/pom.xml
+++ b/features/device-mgt/org.wso2.carbon.device.mgt.basics.feature/pom.xml
@@ -22,7 +22,7 @@
org.wso2.carbon.devicemgtdevice-mgt-feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml
diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.extensions.feature/pom.xml b/features/device-mgt/org.wso2.carbon.device.mgt.extensions.feature/pom.xml
index 56f03a0c91..c2479996f1 100644
--- a/features/device-mgt/org.wso2.carbon.device.mgt.extensions.feature/pom.xml
+++ b/features/device-mgt/org.wso2.carbon.device.mgt.extensions.feature/pom.xml
@@ -4,14 +4,14 @@
org.wso2.carbon.devicemgtdevice-mgt-feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml4.0.0org.wso2.carbon.device.mgt.extensions.featurepom
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTWSO2 Carbon - Device Management Extensions Featurehttp://wso2.orgThis feature contains common extensions used by key device management functionalities
diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.feature/pom.xml b/features/device-mgt/org.wso2.carbon.device.mgt.feature/pom.xml
index 79c3323c29..ee8c02125c 100644
--- a/features/device-mgt/org.wso2.carbon.device.mgt.feature/pom.xml
+++ b/features/device-mgt/org.wso2.carbon.device.mgt.feature/pom.xml
@@ -22,7 +22,7 @@
org.wso2.carbon.devicemgtdevice-mgt-feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml
diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.server.feature/pom.xml b/features/device-mgt/org.wso2.carbon.device.mgt.server.feature/pom.xml
index 07da663ab0..cc43b621a9 100644
--- a/features/device-mgt/org.wso2.carbon.device.mgt.server.feature/pom.xml
+++ b/features/device-mgt/org.wso2.carbon.device.mgt.server.feature/pom.xml
@@ -22,14 +22,14 @@
org.wso2.carbon.devicemgtdevice-mgt-feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml4.0.0org.wso2.carbon.device.mgt.server.featurepom
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTWSO2 Carbon - Device Management Server Featurehttp://wso2.orgThis feature contains the core bundles required for Back-end Device Management functionality
diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.ui.feature/pom.xml b/features/device-mgt/org.wso2.carbon.device.mgt.ui.feature/pom.xml
index 01752074a2..f3738e371c 100644
--- a/features/device-mgt/org.wso2.carbon.device.mgt.ui.feature/pom.xml
+++ b/features/device-mgt/org.wso2.carbon.device.mgt.ui.feature/pom.xml
@@ -22,7 +22,7 @@
org.wso2.carbon.devicemgtdevice-mgt-feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml
diff --git a/features/device-mgt/pom.xml b/features/device-mgt/pom.xml
index 15bfb749cb..0fd68af5c9 100644
--- a/features/device-mgt/pom.xml
+++ b/features/device-mgt/pom.xml
@@ -22,7 +22,7 @@
org.wso2.carbon.devicemgtcarbon-devicemgt
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../../pom.xml
diff --git a/features/email-sender/org.wso2.carbon.email.sender.feature/pom.xml b/features/email-sender/org.wso2.carbon.email.sender.feature/pom.xml
index 605f93785b..48b2e971a6 100644
--- a/features/email-sender/org.wso2.carbon.email.sender.feature/pom.xml
+++ b/features/email-sender/org.wso2.carbon.email.sender.feature/pom.xml
@@ -22,14 +22,14 @@
org.wso2.carbon.devicemgtemail-sender-feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml4.0.0org.wso2.carbon.email.sender.featurepom
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTWSO2 Carbon - Email Sender Featurehttp://wso2.orgThis feature contains the core bundles required for email sender related functionality
diff --git a/features/email-sender/pom.xml b/features/email-sender/pom.xml
index 416e518365..d12b125fbd 100644
--- a/features/email-sender/pom.xml
+++ b/features/email-sender/pom.xml
@@ -22,14 +22,14 @@
org.wso2.carbon.devicemgtcarbon-devicemgt
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../../pom.xml4.0.0org.wso2.carbon.devicemgtemail-sender-feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTpomWSO2 Carbon - Email Sender Featurehttp://wso2.org
diff --git a/features/jwt-client/org.wso2.carbon.identity.jwt.client.extension.feature/pom.xml b/features/jwt-client/org.wso2.carbon.identity.jwt.client.extension.feature/pom.xml
index 8f3d902612..4508bdce77 100644
--- a/features/jwt-client/org.wso2.carbon.identity.jwt.client.extension.feature/pom.xml
+++ b/features/jwt-client/org.wso2.carbon.identity.jwt.client.extension.feature/pom.xml
@@ -23,14 +23,14 @@
org.wso2.carbon.devicemgtjwt-client-feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml4.0.0org.wso2.carbon.identity.jwt.client.extension.featurepom
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTWSO2 Carbon - JWT Client Featurehttp://wso2.orgThis feature contains jwt client implementation from which we can get a access token using the jwt
diff --git a/features/jwt-client/pom.xml b/features/jwt-client/pom.xml
index 8196728cc2..677eda5c43 100644
--- a/features/jwt-client/pom.xml
+++ b/features/jwt-client/pom.xml
@@ -23,13 +23,13 @@
org.wso2.carbon.devicemgtcarbon-devicemgt
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../../pom.xml4.0.0jwt-client-feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTpomWSO2 Carbon - JWT Client Extension Featurehttp://wso2.org
diff --git a/features/oauth-extensions/org.wso2.carbon.device.mgt.oauth.extensions.feature/pom.xml b/features/oauth-extensions/org.wso2.carbon.device.mgt.oauth.extensions.feature/pom.xml
index ad95af2241..4f692692d0 100644
--- a/features/oauth-extensions/org.wso2.carbon.device.mgt.oauth.extensions.feature/pom.xml
+++ b/features/oauth-extensions/org.wso2.carbon.device.mgt.oauth.extensions.feature/pom.xml
@@ -23,14 +23,14 @@
org.wso2.carbon.devicemgtoauth-extensions-feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml4.0.0org.wso2.carbon.device.mgt.oauth.extensions.featurepom
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTWSO2 Carbon - Device Mgt OAuth Extensions Featurehttp://wso2.orgThis feature contains devicemgt related OAuth extensions
diff --git a/features/oauth-extensions/pom.xml b/features/oauth-extensions/pom.xml
index b052700ce5..ad92785900 100644
--- a/features/oauth-extensions/pom.xml
+++ b/features/oauth-extensions/pom.xml
@@ -22,14 +22,14 @@
org.wso2.carbon.devicemgtcarbon-devicemgt
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../../pom.xml4.0.0org.wso2.carbon.devicemgtoauth-extensions-feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTpomWSO2 Carbon - Device Management OAuth Extensions Featurehttp://wso2.org
diff --git a/features/policy-mgt/org.wso2.carbon.policy.mgt.server.feature/pom.xml b/features/policy-mgt/org.wso2.carbon.policy.mgt.server.feature/pom.xml
index dc345fabb4..2e40345689 100644
--- a/features/policy-mgt/org.wso2.carbon.policy.mgt.server.feature/pom.xml
+++ b/features/policy-mgt/org.wso2.carbon.policy.mgt.server.feature/pom.xml
@@ -23,14 +23,14 @@
org.wso2.carbon.devicemgtpolicy-mgt-feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml4.0.0org.wso2.carbon.policy.mgt.server.featurepom
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTWSO2 Carbon - Policy Management Server Featurehttp://wso2.orgThis feature contains the core bundles required for Back-end Device Management functionality
diff --git a/features/policy-mgt/pom.xml b/features/policy-mgt/pom.xml
index 060a23470b..7dfb38536b 100644
--- a/features/policy-mgt/pom.xml
+++ b/features/policy-mgt/pom.xml
@@ -23,14 +23,14 @@
org.wso2.carbon.devicemgtcarbon-devicemgt
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../../pom.xml4.0.0org.wso2.carbon.devicemgtpolicy-mgt-feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTpomWSO2 Carbon - Policy Management Featurehttp://wso2.org
diff --git a/features/webapp-authenticator-framework/org.wso2.carbon.webapp.authenticator.framework.server.feature/pom.xml b/features/webapp-authenticator-framework/org.wso2.carbon.webapp.authenticator.framework.server.feature/pom.xml
index 1f5fb268b6..f6dbff3c2e 100644
--- a/features/webapp-authenticator-framework/org.wso2.carbon.webapp.authenticator.framework.server.feature/pom.xml
+++ b/features/webapp-authenticator-framework/org.wso2.carbon.webapp.authenticator.framework.server.feature/pom.xml
@@ -22,14 +22,14 @@
org.wso2.carbon.devicemgtwebapp-authenticator-framework-feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../pom.xml4.0.0org.wso2.carbon.webapp.authenticator.framework.server.featurepom
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTWSO2 Carbon - Webapp Authenticator Framework Server Featurehttp://wso2.orgThis feature contains the core bundles required for Back-end Device Management functionality
diff --git a/features/webapp-authenticator-framework/pom.xml b/features/webapp-authenticator-framework/pom.xml
index 06cd2d1dc9..7c6c482e29 100644
--- a/features/webapp-authenticator-framework/pom.xml
+++ b/features/webapp-authenticator-framework/pom.xml
@@ -22,14 +22,14 @@
org.wso2.carbon.devicemgtcarbon-devicemgt
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT../../pom.xml4.0.0org.wso2.carbon.devicemgtwebapp-authenticator-framework-feature
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTpomWSO2 Carbon - Webapp Authenticator Framework Featurehttp://wso2.org
diff --git a/pom.xml b/pom.xml
index 9d3a84eba1..aba2b7ab04 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@
org.wso2.carbon.devicemgtcarbon-devicemgtpom
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOTWSO2 Carbon - Device Management - Parenthttp://wso2.orgWSO2 Connected Device Manager Components
@@ -1860,7 +1860,7 @@
2.2.16.1.1
- 4.4.25
+ 4.4.26[4.4.0, 5.0.0)1.5.41.3
@@ -1926,7 +1926,7 @@
1.2.11.wso2v10
- 3.1.7-SNAPSHOT
+ 3.1.12-SNAPSHOT4.6.21