From f956e8718518f18749f8bd93a7bd84ba6bac5791 Mon Sep 17 00:00:00 2001 From: malithie Date: Tue, 7 Jan 2025 14:56:58 +0530 Subject: [PATCH 01/10] Support managing rules for actions. --- .../pom.xml | 34 ++++-- .../constant/ActionMgtConstants.java | 1 + .../dao/impl/ActionManagementDAOFacade.java | 99 +++++++++++++-- .../dao/impl/ActionManagementDAOImpl.java | 99 ++++++++++++++- .../internal/ActionMgtServiceComponent.java | 20 ++++ .../ActionMgtServiceComponentHolder.java | 23 ++++ .../action/management/model/Action.java | 24 +++- .../action/management/model/ActionDTO.java | 10 ++ .../action/management/model/ActionRule.java | 113 ++++++++++++++++++ .../impl/ActionManagementServiceImpl.java | 1 + .../management/util/ActionDTOBuilder.java | 16 +++ 11 files changed, 417 insertions(+), 23 deletions(-) create mode 100644 components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/model/ActionRule.java diff --git a/components/action-mgt/org.wso2.carbon.identity.action.management/pom.xml b/components/action-mgt/org.wso2.carbon.identity.action.management/pom.xml index a3d97af6f44e..8e954462c272 100644 --- a/components/action-mgt/org.wso2.carbon.identity.action.management/pom.xml +++ b/components/action-mgt/org.wso2.carbon.identity.action.management/pom.xml @@ -45,6 +45,10 @@ org.wso2.carbon.identity.framework org.wso2.carbon.identity.certificate.management + + org.wso2.carbon.identity.framework + org.wso2.carbon.identity.rule.management + org.json.wso2 json @@ -100,7 +104,8 @@ org.wso2.carbon.identity.action.management.constant.error, org.wso2.carbon.identity.action.management.exception, org.wso2.carbon.identity.action.management.model, - org.wso2.carbon.identity.action.management.service; version="${carbon.identity.package.export.version}" + org.wso2.carbon.identity.action.management.service; + version="${carbon.identity.package.export.version}" org.apache.commons.lang; version="${commons-lang.wso2.osgi.version.range}", @@ -109,16 +114,27 @@ org.osgi.framework; version="${osgi.framework.imp.pkg.version.range}", org.osgi.service.component; version="${osgi.service.component.imp.pkg.version.range}", org.json.*; version="${json.wso2.version.range}", - org.wso2.carbon.database.utils.jdbc; version="${org.wso2.carbon.database.utils.version.range}", - org.wso2.carbon.database.utils.jdbc.exceptions; version="${org.wso2.carbon.database.utils.version.range}", - org.wso2.carbon.identity.core.cache; version="${carbon.identity.package.import.version.range}", - org.wso2.carbon.identity.core.util; version="${carbon.identity.package.import.version.range}", - org.wso2.carbon.identity.secret.mgt.core; version="${carbon.identity.package.import.version.range}", - org.wso2.carbon.identity.secret.mgt.core.exception; version="${carbon.identity.package.import.version.range}", - org.wso2.carbon.identity.secret.mgt.core.model; version="${carbon.identity.package.import.version.range}", + org.wso2.carbon.database.utils.jdbc; + version="${org.wso2.carbon.database.utils.version.range}", + org.wso2.carbon.database.utils.jdbc.exceptions; + version="${org.wso2.carbon.database.utils.version.range}", + org.wso2.carbon.identity.core.cache; + version="${carbon.identity.package.import.version.range}", + org.wso2.carbon.identity.core.util; + version="${carbon.identity.package.import.version.range}", + org.wso2.carbon.identity.secret.mgt.core; + version="${carbon.identity.package.import.version.range}", + org.wso2.carbon.identity.secret.mgt.core.exception; + version="${carbon.identity.package.import.version.range}", + org.wso2.carbon.identity.secret.mgt.core.model; + version="${carbon.identity.package.import.version.range}", org.wso2.carbon.utils; version="${carbon.kernel.package.import.version.range}", org.wso2.carbon.identity.event.*; version="${carbon.identity.package.import.version.range}", - org.wso2.carbon.identity.central.log.mgt.utils; version="${carbon.identity.package.import.version.range}", + org.wso2.carbon.identity.rule.management.exception; version="${carbon.identity.package.import.version.range}", + org.wso2.carbon.identity.rule.management.model; version="${carbon.identity.package.import.version.range}", + org.wso2.carbon.identity.rule.management.service; version="${carbon.identity.package.import.version.range}", + org.wso2.carbon.identity.central.log.mgt.utils; + version="${carbon.identity.package.import.version.range}", org.wso2.carbon; version="${carbon.kernel.package.import.version.range}", org.wso2.carbon.context; version="${carbon.kernel.package.import.version.range}", org.wso2.carbon.utils.*; version="${carbon.kernel.package.import.version.range}", diff --git a/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/constant/ActionMgtConstants.java b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/constant/ActionMgtConstants.java index 9da7b6b3f5c3..4b1e3f6b66a7 100644 --- a/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/constant/ActionMgtConstants.java +++ b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/constant/ActionMgtConstants.java @@ -25,6 +25,7 @@ public class ActionMgtConstants { public static final String URI_PROPERTY = "uri"; public static final String AUTHN_TYPE_PROPERTY = "authnType"; + public static final String RULE_PROPERTY = "rule"; public static final String IDN_SECRET_TYPE_ACTION_SECRETS = "ACTION_API_ENDPOINT_AUTH_SECRETS"; public static final String ACTION_NAME_FIELD = "Action name"; diff --git a/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/dao/impl/ActionManagementDAOFacade.java b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/dao/impl/ActionManagementDAOFacade.java index 76ca02ba9aea..2ea30739d6dd 100644 --- a/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/dao/impl/ActionManagementDAOFacade.java +++ b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/dao/impl/ActionManagementDAOFacade.java @@ -29,8 +29,10 @@ import org.wso2.carbon.identity.action.management.exception.ActionMgtClientException; import org.wso2.carbon.identity.action.management.exception.ActionMgtException; import org.wso2.carbon.identity.action.management.exception.ActionMgtServerException; +import org.wso2.carbon.identity.action.management.internal.ActionMgtServiceComponentHolder; import org.wso2.carbon.identity.action.management.model.Action; import org.wso2.carbon.identity.action.management.model.ActionDTO; +import org.wso2.carbon.identity.action.management.model.ActionRule; import org.wso2.carbon.identity.action.management.model.AuthProperty; import org.wso2.carbon.identity.action.management.model.Authentication; import org.wso2.carbon.identity.action.management.model.EndpointConfig; @@ -40,6 +42,7 @@ import org.wso2.carbon.identity.action.management.util.ActionSecretProcessor; import org.wso2.carbon.identity.core.util.IdentityDatabaseUtil; import org.wso2.carbon.identity.core.util.IdentityTenantUtil; +import org.wso2.carbon.identity.rule.management.exception.RuleManagementException; import org.wso2.carbon.identity.secret.mgt.core.exception.SecretManagementException; import java.util.List; @@ -72,10 +75,11 @@ public void addAction(ActionDTO actionDTO, Integer tenantId) throws ActionMgtExc ActionDTOBuilder actionDTOBuilder = new ActionDTOBuilder(actionDTO); // Encrypt authentication secrets encryptAddingAuthSecrets(actionDTOBuilder); + // Add action rule + addActionRule(actionDTOBuilder, IdentityTenantUtil.getTenantDomain(tenantId)); // Resolve action properties ActionDTO resolvedActionDTO = getResolvedActionDTOForAddOperation(actionDTOBuilder.build(), tenantId); - actionManagementDAO.addAction(resolvedActionDTO, tenantId); return null; }); @@ -94,7 +98,6 @@ public List getActionsByActionType(String actionType, Integer tenantI try { List actionDTOS = actionManagementDAO.getActionsByActionType(actionType, tenantId); - return getResolvedActionDTOsForGetOperation(actionType, actionDTOS, tenantId); } catch (ActionMgtException | ActionDTOModelResolverException e) { throw ActionManagementExceptionHandler.handleServerException( @@ -106,15 +109,23 @@ public List getActionsByActionType(String actionType, Integer tenantI public ActionDTO getActionByActionId(String actionType, String actionId, Integer tenantId) throws ActionMgtException { + NamedJdbcTemplate jdbcTemplate = new NamedJdbcTemplate(IdentityDatabaseUtil.getDataSource()); try { - ActionDTO actionDTO = actionManagementDAO.getActionByActionId(actionType, actionId, tenantId); - if (actionDTO == null) { - return null; - } + return jdbcTemplate.withTransaction(template -> { + ActionDTO actionDTO = actionManagementDAO.getActionByActionId(actionType, actionId, tenantId); + if (actionDTO == null) { + return null; + } - // Populate action properties - return getResolvedActionDTOForGetOperation(actionDTO, tenantId); - } catch (ActionMgtException | ActionDTOModelResolverException e) { + ActionDTOBuilder actionDTOBuilder = new ActionDTOBuilder(actionDTO); + // Load action rule + loadActionRule(actionDTOBuilder, IdentityTenantUtil.getTenantDomain(tenantId)); + // Populate action properties + return getResolvedActionDTOForGetOperation(actionDTOBuilder.build(), tenantId); + }); + } catch (TransactionException e) { + // Since exceptions thrown are wrapped with TransactionException, extracting the actual cause. + handleActionPropertyResolverClientException(e.getCause()); throw ActionManagementExceptionHandler.handleServerException( ErrorMessage.ERROR_WHILE_RETRIEVING_ACTION_BY_ID, e); } @@ -130,6 +141,9 @@ public void updateAction(ActionDTO updatingActionDTO, ActionDTO existingActionDT ActionDTOBuilder updatingActionDTOBuilder = new ActionDTOBuilder(updatingActionDTO); // Encrypt authentication secrets encryptUpdatingAuthSecrets(updatingActionDTOBuilder, existingActionDTO); + // Update action rule + updateActionRule(updatingActionDTOBuilder, existingActionDTO, + IdentityTenantUtil.getTenantDomain(tenantId)); // Resolve action properties ActionDTO resolvedUpdatingActionDTO = getResolvedActionDTOForUpdateOperation(updatingActionDTOBuilder.build(), existingActionDTO, @@ -156,9 +170,8 @@ public void deleteAction(ActionDTO deletingActionDTO, Integer tenantId) throws A try { jdbcTemplate.withTransaction(template -> { actionManagementDAO.deleteAction(deletingActionDTO, tenantId); - // Encrypt authentication secrets deleteAuthenticationSecrets(deletingActionDTO); - // Resolve action properties + deleteActionRule(deletingActionDTO, IdentityTenantUtil.getTenantDomain(tenantId)); deleteProperties(deletingActionDTO, tenantId); return null; @@ -294,6 +307,70 @@ private void addEncryptedAuthSecretsToBuilder(ActionDTOBuilder actionDTOBuilder, .build()); } + private void addActionRule(ActionDTOBuilder actionDTOBuilder, String tenantDomain) throws ActionMgtException { + + if (actionDTOBuilder.getActionRule() != null) { + try { + ActionMgtServiceComponentHolder.getInstance() + .getRuleManagementService() + .addRule(actionDTOBuilder.getActionRule().getRule(), tenantDomain); + } catch (RuleManagementException e) { + throw new ActionMgtServerException("Error while adding the Rule associated with the Action.", e); + } + } + } + + private void loadActionRule(ActionDTOBuilder actionDTOBuilder, String tenantDomain) + throws ActionMgtServerException { + + if (actionDTOBuilder.getActionRule() != null) { + try { + ActionRule actionRule = ActionRule.create(ActionMgtServiceComponentHolder.getInstance() + .getRuleManagementService() + .getRuleByRuleId(actionDTOBuilder.getActionRule().getId(), tenantDomain)); + actionDTOBuilder.rule(actionRule); + } catch (RuleManagementException e) { + throw new ActionMgtServerException("Error while retrieving the Rule associated with the Action.", e); + } + } + } + + private void updateActionRule(ActionDTOBuilder updatingActionDTOBuilder, ActionDTO existingActionDTO, + String tenantDomain) + throws ActionMgtException { + + if (existingActionDTO.getActionRule() == null && updatingActionDTOBuilder.getActionRule() != null) { + // This means a new action rule is added when updating the action. + addActionRule(updatingActionDTOBuilder, tenantDomain); + } else if (existingActionDTO.getActionRule() != null && updatingActionDTOBuilder.getActionRule() == null) { + // This means the existing action rule is removed when updating the action. + deleteActionRule(existingActionDTO, tenantDomain); + } else if (existingActionDTO.getActionRule() != null && updatingActionDTOBuilder.getActionRule() != + null) { // This means the existing action rule is updated when updating the action. + try { + updatingActionDTOBuilder.getActionRule().getRule().setId(existingActionDTO.getActionRule().getId()); + ActionMgtServiceComponentHolder.getInstance() + .getRuleManagementService() + .updateRule(updatingActionDTOBuilder.getActionRule().getRule(), tenantDomain); + } catch (RuleManagementException e) { + throw new ActionMgtServerException("Error while updating the Rule associated with the Action.", e); + } + } + } + + private void deleteActionRule(ActionDTO actionDTO, String tenantDomain) throws ActionMgtServerException { + + if (actionDTO.getActionRule() != null) { + try { + ActionMgtServiceComponentHolder.getInstance() + .getRuleManagementService() + .deleteRule(actionDTO.getActionRule().getId(), tenantDomain); + } catch (RuleManagementException e) { + throw new ActionMgtServerException("Error while deleting the Rule associated with the Action.", e); + } + } + } + /** * Get the ActionDTO with resolved adding properties that needs to be added in the Action Management Service. * diff --git a/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/dao/impl/ActionManagementDAOImpl.java b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/dao/impl/ActionManagementDAOImpl.java index 59850e7efc8d..8026085a1e9b 100644 --- a/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/dao/impl/ActionManagementDAOImpl.java +++ b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/dao/impl/ActionManagementDAOImpl.java @@ -21,17 +21,20 @@ import org.wso2.carbon.database.utils.jdbc.NamedJdbcTemplate; import org.wso2.carbon.database.utils.jdbc.NamedPreparedStatement; import org.wso2.carbon.database.utils.jdbc.exceptions.TransactionException; +import org.wso2.carbon.identity.action.management.constant.ActionMgtConstants; import org.wso2.carbon.identity.action.management.constant.ActionMgtSQLConstants; import org.wso2.carbon.identity.action.management.dao.ActionManagementDAO; import org.wso2.carbon.identity.action.management.exception.ActionMgtException; import org.wso2.carbon.identity.action.management.exception.ActionMgtServerException; import org.wso2.carbon.identity.action.management.model.Action; import org.wso2.carbon.identity.action.management.model.ActionDTO; +import org.wso2.carbon.identity.action.management.model.ActionRule; import org.wso2.carbon.identity.action.management.model.AuthProperty; import org.wso2.carbon.identity.action.management.model.Authentication; import org.wso2.carbon.identity.action.management.model.EndpointConfig; import org.wso2.carbon.identity.action.management.util.ActionDTOBuilder; import org.wso2.carbon.identity.core.util.IdentityDatabaseUtil; +import org.wso2.carbon.identity.core.util.IdentityTenantUtil; import java.sql.Connection; import java.sql.ResultSet; @@ -58,6 +61,8 @@ public void addAction(ActionDTO actionDTO, Integer tenantId) throws ActionMgtExc addBasicInfo(actionDTO, tenantId); // Add action endpoint. addEndpoint(actionDTO, tenantId); + // Add action rule reference. + addRuleReference(actionDTO, tenantId); // Add action properties. addProperties(actionDTO, tenantId); } @@ -76,6 +81,7 @@ public List getActionsByActionType(String actionType, Integer tenantI try (ResultSet rs = statement.executeQuery()) { while (rs.next()) { String actionId = rs.getString(ActionMgtSQLConstants.Column.ACTION_UUID); + Map properties = getActionPropertiesFromDB(actionId, tenantId); ActionDTO actionDTO = new ActionDTOBuilder() .id(actionId) .type(org.wso2.carbon.identity.action.management.model.Action.ActionTypes.valueOf( @@ -84,7 +90,10 @@ public List getActionsByActionType(String actionType, Integer tenantI .description(rs.getString(ActionMgtSQLConstants.Column.ACTION_DESCRIPTION)) .status(org.wso2.carbon.identity.action.management.model.Action.Status.valueOf( rs.getString(ActionMgtSQLConstants.Column.ACTION_STATUS))) - .setEndpointAndProperties(getActionPropertiesFromDB(actionId, tenantId)) + .endpoint(populateEndpoint(properties)) + .rule(populateRule(properties, tenantId)) + .properties(properties.entrySet().stream() + .collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue))) .build(); actionDTOS.add(actionDTO); @@ -106,8 +115,12 @@ public ActionDTO getActionByActionId(String actionType, String actionId, Integer if (actionBuilder == null) { return null; } - actionBuilder.setEndpointAndProperties(getActionPropertiesFromDB(actionId, tenantId)); + Map actionProperties = getActionPropertiesFromDB(actionId, tenantId); + actionBuilder.endpoint(populateEndpoint(actionProperties)); + actionBuilder.rule(populateRule(actionProperties, tenantId)); + actionBuilder.properties(actionProperties.entrySet().stream() + .collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue))); return actionBuilder.build(); } @@ -119,6 +132,8 @@ public void updateAction(ActionDTO updatingActionDTO, ActionDTO existingActionDT updateBasicInfo(updatingActionDTO, existingActionDTO, tenantId); // Update Action Endpoint. updateEndpoint(updatingActionDTO, existingActionDTO, tenantId); + // Update Rule Reference. + updateRuleReference(updatingActionDTO, existingActionDTO, tenantId); // Update Action Properties. updateProperties(updatingActionDTO, existingActionDTO, tenantId); } @@ -329,6 +344,39 @@ private void updateEndpoint(ActionDTO updatingActionDTO, ActionDTO existingActio } } + private EndpointConfig populateEndpoint(Map propertiesFromDB) throws ActionMgtException { + + Authentication authentication; + Authentication.Type authnType = + Authentication.Type.valueOf(propertiesFromDB.remove(ActionMgtConstants.AUTHN_TYPE_PROPERTY)); + switch (authnType) { + case BASIC: + authentication = new Authentication.BasicAuthBuilder( + propertiesFromDB.remove(Authentication.Property.USERNAME.getName()), + propertiesFromDB.remove(Authentication.Property.PASSWORD.getName())).build(); + break; + case BEARER: + authentication = new Authentication.BearerAuthBuilder( + propertiesFromDB.remove(Authentication.Property.ACCESS_TOKEN.getName())).build(); + break; + case API_KEY: + authentication = new Authentication.APIKeyAuthBuilder( + propertiesFromDB.remove(Authentication.Property.HEADER.getName()), + propertiesFromDB.remove(Authentication.Property.VALUE.getName())).build(); + break; + case NONE: + authentication = new Authentication.NoneAuthBuilder().build(); + break; + default: + throw new ActionMgtServerException("Authentication type is not defined for the Action Endpoint."); + } + + return new EndpointConfig.EndpointConfigBuilder() + .uri(propertiesFromDB.remove(ActionMgtConstants.URI_PROPERTY)) + .authentication(authentication) + .build(); + } + /** * Update Action Endpoint Authentication. * @@ -415,6 +463,53 @@ private void updateAuthentication(String actionId, Authentication updatingAuthen updateActionPropertiesInDB(actionId, nonSecretAuthenticationProperties, tenantId); } + private void addRuleReference(ActionDTO actionDTO, Integer tenantId) throws ActionMgtServerException { + + if (actionDTO.getActionRule() == null) { + return; + } + + Map propertiesMap = + Collections.singletonMap(ActionMgtConstants.RULE_PROPERTY, actionDTO.getActionRule().getId()); + try { + addActionPropertiesToDB(actionDTO.getId(), propertiesMap, tenantId); + } catch (TransactionException e) { + throw new ActionMgtServerException("Error while adding the reference for the Rule in Action.", e); + } + } + + private void updateRuleReference(ActionDTO updatingActionDTO, ActionDTO existingActionDTO, Integer tenantId) + throws ActionMgtServerException { + + if (existingActionDTO.getActionRule() == null && updatingActionDTO.getActionRule() != null) { + // This means a new action rule is added when updating the action. Add the rule reference. + addRuleReference(updatingActionDTO, tenantId); + } else if (existingActionDTO.getActionRule() != null && updatingActionDTO.getActionRule() == null) { + // This means the existing action rule is removed when updating the action. Remove the rule reference. + deleteRuleReference(updatingActionDTO, tenantId); + } + } + + private void deleteRuleReference(ActionDTO actionDTO, Integer tenantId) throws ActionMgtServerException { + + try { + deleteActionPropertiesInDB(actionDTO.getId(), + Collections.singletonList(ActionMgtConstants.RULE_PROPERTY), tenantId); + } catch (TransactionException e) { + throw new ActionMgtServerException("Error while removing the reference for the Rule in Action.", e); + } + } + + private ActionRule populateRule(Map propertiesFromDB, Integer tenantId) { + + if (!propertiesFromDB.containsKey(ActionMgtConstants.RULE_PROPERTY)) { + return null; + } + + return ActionRule.create(propertiesFromDB.remove(ActionMgtConstants.RULE_PROPERTY), + IdentityTenantUtil.getTenantDomain(tenantId)); + } + /** * Add Action properties. * diff --git a/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/internal/ActionMgtServiceComponent.java b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/internal/ActionMgtServiceComponent.java index 8da0688e5a86..9493135a1413 100644 --- a/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/internal/ActionMgtServiceComponent.java +++ b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/internal/ActionMgtServiceComponent.java @@ -34,6 +34,7 @@ import org.wso2.carbon.identity.action.management.service.ActionManagementService; import org.wso2.carbon.identity.action.management.service.impl.ActionConverterFactory; import org.wso2.carbon.identity.action.management.service.impl.CacheBackedActionManagementService; +import org.wso2.carbon.identity.rule.management.service.RuleManagementService; import org.wso2.carbon.identity.secret.mgt.core.SecretManager; import org.wso2.carbon.identity.secret.mgt.core.SecretResolveManager; @@ -159,4 +160,23 @@ private void unsetSecretResolveManager(SecretResolveManager secretResolveManager ActionMgtServiceComponentHolder.getInstance().setSecretResolveManager(null); LOG.debug("SecretResolveManager unset in ActionMgtServiceComponentHolder bundle."); } + + @Reference( + name = "org.wso2.carbon.identity.rule.management.service.RuleManagementService", + service = RuleManagementService.class, + cardinality = ReferenceCardinality.MANDATORY, + policy = ReferencePolicy.DYNAMIC, + unbind = "unsetRuleManagementService" + ) + private void setRuleManagementService(RuleManagementService ruleManagementService) { + + ActionMgtServiceComponentHolder.getInstance().setRuleManagementService(ruleManagementService); + LOG.debug("RuleManagementService set in ActionMgtServiceComponentHolder bundle."); + } + + private void unsetRuleManagementService(RuleManagementService ruleManagementService) { + + ActionMgtServiceComponentHolder.getInstance().setRuleManagementService(null); + LOG.debug("RuleManagementService unset in ActionMgtServiceComponentHolder bundle."); + } } diff --git a/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/internal/ActionMgtServiceComponentHolder.java b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/internal/ActionMgtServiceComponentHolder.java index 5866841fdbaa..a5d73c12e881 100644 --- a/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/internal/ActionMgtServiceComponentHolder.java +++ b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/internal/ActionMgtServiceComponentHolder.java @@ -18,6 +18,7 @@ package org.wso2.carbon.identity.action.management.internal; +import org.wso2.carbon.identity.rule.management.service.RuleManagementService; import org.wso2.carbon.identity.secret.mgt.core.SecretManager; import org.wso2.carbon.identity.secret.mgt.core.SecretResolveManager; @@ -28,6 +29,7 @@ public class ActionMgtServiceComponentHolder { private SecretManager secretManager; private SecretResolveManager secretResolveManager; + private RuleManagementService ruleManagementService; public static final ActionMgtServiceComponentHolder INSTANCE = new ActionMgtServiceComponentHolder(); @@ -84,4 +86,25 @@ public void setSecretResolveManager(SecretResolveManager secretResolveManager) { this.secretResolveManager = secretResolveManager; } + + /** + * Get the RuleManagementService. + * + * @return RuleManagementService instance. + */ + public RuleManagementService getRuleManagementService() { + + return ruleManagementService; + } + + /** + * Set the RuleManagementService. + * + * @param ruleManagementService RuleManagementService instance. + */ + public void setRuleManagementService( + RuleManagementService ruleManagementService) { + + this.ruleManagementService = ruleManagementService; + } } diff --git a/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/model/Action.java b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/model/Action.java index dc1f3030bf47..e4bcd84b7b2d 100644 --- a/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/model/Action.java +++ b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/model/Action.java @@ -23,7 +23,7 @@ /** * Action. */ -public class Action { +public class Action { /** * Action Type. @@ -134,6 +134,7 @@ public enum Status { private String description; private Status status; private EndpointConfig endpointConfig; + private ActionRule rule; public Action(ActionResponseBuilder actionResponseBuilder) { @@ -143,6 +144,7 @@ public Action(ActionResponseBuilder actionResponseBuilder) { this.description = actionResponseBuilder.description; this.status = actionResponseBuilder.status; this.endpointConfig = actionResponseBuilder.endpointConfig; + this.rule = actionResponseBuilder.rule; } public Action(ActionRequestBuilder actionRequestBuilder) { @@ -150,6 +152,7 @@ public Action(ActionRequestBuilder actionRequestBuilder) { this.name = actionRequestBuilder.name; this.description = actionRequestBuilder.description; this.endpointConfig = actionRequestBuilder.endpointConfig; + this.rule = actionRequestBuilder.rule; } public String getId() { @@ -182,6 +185,11 @@ public EndpointConfig getEndpoint() { return endpointConfig; } + public ActionRule getActionRule() { + + return rule; + } + /** * ActionResponseBuilder. */ @@ -193,6 +201,7 @@ public static class ActionResponseBuilder { private String description; private Status status; private EndpointConfig endpointConfig; + private ActionRule rule; public ActionResponseBuilder id(String id) { @@ -230,6 +239,12 @@ public ActionResponseBuilder endpoint(EndpointConfig endpointConfig) { return this; } + public ActionResponseBuilder rule(ActionRule rule) { + + this.rule = rule; + return this; + } + public Action build() { return new Action(this); @@ -244,6 +259,7 @@ public static class ActionRequestBuilder { private String name; private String description; private EndpointConfig endpointConfig; + private ActionRule rule; public ActionRequestBuilder name(String name) { @@ -263,6 +279,12 @@ public ActionRequestBuilder endpoint(EndpointConfig endpointConfig) { return this; } + public ActionRequestBuilder rule(ActionRule rule) { + + this.rule = rule; + return this; + } + public Action build() { return new Action(this); diff --git a/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/model/ActionDTO.java b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/model/ActionDTO.java index 3351ee606f1b..4d133cc6c33a 100644 --- a/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/model/ActionDTO.java +++ b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/model/ActionDTO.java @@ -31,6 +31,7 @@ public class ActionDTO { private final String description; private final Action.Status status; private final EndpointConfig endpoint; + private final ActionRule rule; private final Map properties; public ActionDTO(Builder builder) { @@ -41,6 +42,7 @@ public ActionDTO(Builder builder) { this.description = builder.description; this.status = builder.status; this.endpoint = builder.endpoint; + this.rule = builder.rule; this.properties = builder.properties; } @@ -74,6 +76,11 @@ public EndpointConfig getEndpoint() { return endpoint; } + public ActionRule getActionRule() { + + return rule; + } + public Map getProperties() { return properties; @@ -99,6 +106,7 @@ public static class Builder { private final String description; private final Action.Status status; private final EndpointConfig endpoint; + private final ActionRule rule; private Map properties; public Builder(ActionDTO actionDTO) { @@ -109,6 +117,7 @@ public Builder(ActionDTO actionDTO) { this.description = actionDTO.getDescription(); this.status = actionDTO.getStatus(); this.endpoint = actionDTO.getEndpoint(); + this.rule = actionDTO.getActionRule(); this.properties = actionDTO.getProperties(); } @@ -120,6 +129,7 @@ public Builder(Action action) { this.description = action.getDescription(); this.status = action.getStatus(); this.endpoint = action.getEndpoint(); + this.rule = action.getActionRule(); } public Builder properties(Map properties) { diff --git a/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/model/ActionRule.java b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/model/ActionRule.java new file mode 100644 index 000000000000..e84902cc178e --- /dev/null +++ b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/model/ActionRule.java @@ -0,0 +1,113 @@ +/* + * Copyright (c) 2025, WSO2 LLC. (http://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.wso2.carbon.identity.action.management.model; + +import org.apache.commons.lang.StringUtils; +import org.wso2.carbon.identity.action.management.exception.ActionMgtException; +import org.wso2.carbon.identity.action.management.exception.ActionMgtServerException; +import org.wso2.carbon.identity.action.management.internal.ActionMgtServiceComponentHolder; +import org.wso2.carbon.identity.rule.management.exception.RuleManagementException; +import org.wso2.carbon.identity.rule.management.model.Rule; + +/** + * Represents an Action Rule. + * This class wraps the Rule object and provides a way to lazily load the Rule from the Rule Management Service. + */ +public class ActionRule { + + private String id; + private String tenantDomain; + private Rule rule; + + private ActionRule(String id, String tenantDomain) { + + this.id = id; + this.tenantDomain = tenantDomain; + } + + private ActionRule(Rule rule) { + + this.rule = rule; + } + + public String getId() { + + return rule != null ? rule.getId() : id; + } + + public Rule getRule() throws ActionMgtException { + + if (rule != null) { + return rule; + } + + /* + If rule is not loaded, load it from the Rule Management Service. + This happens when multiple actions for an action type is loaded where the ActionRule is created + using the rule id referenced in actions data layer. + The need to load the rule for the action comes when executing actions in chain. + Thus, it's more efficient to load the rule lazily as rule execution depends on factors like + action status (active/inactive), returning state of the prior action in the chain, etc. + */ + rule = getRuleFromRuleManagementService(); + return rule; + } + + private Rule getRuleFromRuleManagementService() throws ActionMgtServerException { + + try { + return ActionMgtServiceComponentHolder.getInstance() + .getRuleManagementService() + .getRuleByRuleId(id, tenantDomain); + } catch (RuleManagementException e) { + throw new ActionMgtServerException("Error while retrieving the Rule.", e); + } + } + + /** + * Create an ActionRule object with the given Rule. + * + * @param rule Rule object. + * @return ActionRule object. + */ + public static ActionRule create(Rule rule) { + + return new ActionRule(rule); + } + + /** + * Create an ActionRule object with the given rule ID and tenant domain. + * rule ID is used to lazily load the Rule from the Rule Management Service. + * + * @param id Rule ID. Cannot be empty. + * @param tenantDomain Tenant domain. Cannot be empty. + * @return ActionRule object. + */ + public static ActionRule create(String id, String tenantDomain) { + + if (StringUtils.isBlank(id)) { + throw new IllegalArgumentException("Rule ID cannot be empty."); + } + if (StringUtils.isBlank(tenantDomain)) { + throw new IllegalArgumentException("Tenant domain cannot be empty."); + } + + return new ActionRule(id, tenantDomain); + } +} diff --git a/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/service/impl/ActionManagementServiceImpl.java b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/service/impl/ActionManagementServiceImpl.java index aaa8168b30e0..b47d91a008f6 100644 --- a/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/service/impl/ActionManagementServiceImpl.java +++ b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/service/impl/ActionManagementServiceImpl.java @@ -437,6 +437,7 @@ private Action buildAction(String actionType, ActionDTO actionDTO) { .description(actionDTO.getDescription()) .status(actionDTO.getStatus()) .endpoint(actionDTO.getEndpoint()) + .rule(actionDTO.getActionRule()) .build(); } } diff --git a/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/util/ActionDTOBuilder.java b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/util/ActionDTOBuilder.java index 9e852ee1aee2..6f67b256098c 100644 --- a/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/util/ActionDTOBuilder.java +++ b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/util/ActionDTOBuilder.java @@ -23,6 +23,7 @@ import org.wso2.carbon.identity.action.management.exception.ActionMgtServerException; import org.wso2.carbon.identity.action.management.model.Action; import org.wso2.carbon.identity.action.management.model.ActionDTO; +import org.wso2.carbon.identity.action.management.model.ActionRule; import org.wso2.carbon.identity.action.management.model.Authentication; import org.wso2.carbon.identity.action.management.model.EndpointConfig; @@ -41,6 +42,7 @@ public class ActionDTOBuilder { private String description; private Action.Status status; private EndpointConfig endpoint; + private ActionRule rule; private Map properties; public ActionDTOBuilder() { @@ -55,6 +57,7 @@ public ActionDTOBuilder(ActionDTO actionDTO) { this.description = actionDTO.getDescription(); this.status = actionDTO.getStatus(); this.endpoint = actionDTO.getEndpoint(); + this.rule = actionDTO.getActionRule(); this.properties = actionDTO.getProperties(); } @@ -66,6 +69,7 @@ public ActionDTOBuilder(Action action) { this.description = action.getDescription(); this.status = action.getStatus(); this.endpoint = action.getEndpoint(); + this.rule = action.getActionRule(); } public ActionDTOBuilder id(String id) { @@ -134,6 +138,17 @@ public EndpointConfig getEndpoint() { return this.endpoint; } + public ActionDTOBuilder rule(ActionRule rule) { + + this.rule = rule; + return this; + } + + public ActionRule getActionRule() { + + return rule; + } + public ActionDTOBuilder setEndpointAndProperties(Map properties) throws ActionMgtException { @@ -201,6 +216,7 @@ public ActionDTO build() { .description(this.description) .status(this.status) .endpoint(this.endpoint) + .rule(this.rule) .build(); return new ActionDTO.Builder(action).properties(this.properties).build(); From c0264fe13e23a06f4a8f52eb5db1f12a6d203f93 Mon Sep 17 00:00:00 2001 From: malithie Date: Tue, 7 Jan 2025 15:06:41 +0530 Subject: [PATCH 02/10] Add unit tests for rule support in actions. --- .../dao/ActionManagementDAOFacadeTest.java | 376 ++++++++++++++---- .../dao/TestActionDTOModelResolver.java | 6 + .../ActionManagementServiceImplTest.java | 111 +++++- .../action/management/util/TestUtil.java | 24 ++ 4 files changed, 427 insertions(+), 90 deletions(-) diff --git a/components/action-mgt/org.wso2.carbon.identity.action.management/src/test/java/org/wso2/carbon/identity/action/management/dao/ActionManagementDAOFacadeTest.java b/components/action-mgt/org.wso2.carbon.identity.action.management/src/test/java/org/wso2/carbon/identity/action/management/dao/ActionManagementDAOFacadeTest.java index 8aa13fc9e089..a579156155b9 100644 --- a/components/action-mgt/org.wso2.carbon.identity.action.management/src/test/java/org/wso2/carbon/identity/action/management/dao/ActionManagementDAOFacadeTest.java +++ b/components/action-mgt/org.wso2.carbon.identity.action.management/src/test/java/org/wso2/carbon/identity/action/management/dao/ActionManagementDAOFacadeTest.java @@ -40,6 +40,7 @@ import org.wso2.carbon.identity.action.management.internal.ActionMgtServiceComponentHolder; import org.wso2.carbon.identity.action.management.model.Action; import org.wso2.carbon.identity.action.management.model.ActionDTO; +import org.wso2.carbon.identity.action.management.model.ActionRule; import org.wso2.carbon.identity.action.management.model.Authentication; import org.wso2.carbon.identity.action.management.model.EndpointConfig; import org.wso2.carbon.identity.action.management.service.ActionDTOModelResolver; @@ -49,8 +50,10 @@ import org.wso2.carbon.identity.common.testng.WithCarbonHome; import org.wso2.carbon.identity.common.testng.WithH2Database; import org.wso2.carbon.identity.core.util.IdentityTenantUtil; +import org.wso2.carbon.identity.rule.management.exception.RuleManagementException; +import org.wso2.carbon.identity.rule.management.model.Rule; +import org.wso2.carbon.identity.rule.management.service.RuleManagementService; import org.wso2.carbon.identity.secret.mgt.core.SecretManagerImpl; -import org.wso2.carbon.identity.secret.mgt.core.exception.SecretManagementException; import org.wso2.carbon.identity.secret.mgt.core.model.SecretType; import java.util.Collections; @@ -95,36 +98,26 @@ public class ActionManagementDAOFacadeTest { @Mock private ActionDTOModelResolver mockedActionDTOModelResolver; + @Mock + private RuleManagementService ruleManagementService; private TestActionDTOModelResolver testActionPropertyResolver; private MockedStatic actionPropertyResolverFactory; private MockedStatic identityTenantUtil; private ActionManagementDAOFacade daoFacade; - private ActionDTO creatingActionDTO; - private ActionDTO createdActionDTO; + private ActionDTO actionDTOToAddOrUpdate; + private ActionDTO actionDTORetrieved; @BeforeClass public void setUpClass() { daoFacade = new ActionManagementDAOFacade(new ActionManagementDAOImpl()); - creatingActionDTO = new ActionDTOBuilder() - .id(PRE_UPDATE_PASSWORD_ACTION_ID) - .type(Action.ActionTypes.PRE_UPDATE_PASSWORD) - .name(TEST_ACTION_NAME) - .description(TEST_ACTION_DESCRIPTION) - .endpoint(new EndpointConfig.EndpointConfigBuilder() - .uri(TEST_ACTION_URI) - .authentication(TestUtil.buildMockBasicAuthentication(TEST_USERNAME, TEST_PASSWORD)) - .build()) - .property(PASSWORD_SHARING_TYPE_PROPERTY_NAME, TEST_PASSWORD_SHARING_TYPE) - .property(CERTIFICATE_PROPERTY_NAME, - new Certificate.Builder().certificateContent(TEST_CERTIFICATE).build()) - .build(); + actionDTOToAddOrUpdate = createActionDTOForPasswordUpdateAction(); testActionPropertyResolver = new TestActionDTOModelResolver(); } @BeforeMethod - public void setUp() throws SecretManagementException { + public void setUp() throws Exception { SecretManagerImpl secretManager = mock(SecretManagerImpl.class); SecretType secretType = mock(SecretType.class); @@ -133,10 +126,11 @@ public void setUp() throws SecretManagementException { when(secretManager.getSecretType(any())).thenReturn(secretType); identityTenantUtil = mockStatic(IdentityTenantUtil.class); - identityTenantUtil.when(()-> IdentityTenantUtil.getTenantDomain(anyInt())).thenReturn(TENANT_DOMAIN); + identityTenantUtil.when(() -> IdentityTenantUtil.getTenantDomain(anyInt())).thenReturn(TENANT_DOMAIN); MockitoAnnotations.openMocks(this); actionPropertyResolverFactory = mockStatic(ActionDTOModelResolverFactory.class); + ActionMgtServiceComponentHolder.getInstance().setRuleManagementService(ruleManagementService); } @AfterMethod @@ -155,7 +149,7 @@ public void testAddActionWithActionPropertyResolverClientException() throws Acti .when(mockedActionDTOModelResolver).resolveForAddOperation(any(), any()); try { - daoFacade.addAction(creatingActionDTO, TENANT_ID); + daoFacade.addAction(actionDTOToAddOrUpdate, TENANT_ID); Assert.fail("Successful addition of the action without an exception is considered as a failure"); } catch (ActionMgtException e) { Assert.assertEquals(e.getClass(), ActionMgtClientException.class); @@ -173,7 +167,7 @@ public void testAddActionWithActionPropertyResolverServerException() throws Acti .when(mockedActionDTOModelResolver).resolveForAddOperation(any(), any()); try { - daoFacade.addAction(creatingActionDTO, TENANT_ID); + daoFacade.addAction(actionDTOToAddOrUpdate, TENANT_ID); Assert.fail("Successful addition of the action without an exception is considered as a failure"); } catch (ActionMgtException e) { Assert.assertEquals(e.getClass(), ActionMgtServerException.class); @@ -192,39 +186,15 @@ public void testAddAction() throws ActionMgtException { mockActionPropertyResolver(testActionPropertyResolver); try { - daoFacade.addAction(creatingActionDTO, TENANT_ID); + daoFacade.addAction(actionDTOToAddOrUpdate, TENANT_ID); } catch (Exception e) { Assert.fail(); } - createdActionDTO = daoFacade.getActionByActionId(PRE_UPDATE_PASSWORD_TYPE, PRE_UPDATE_PASSWORD_ACTION_ID, + actionDTORetrieved = daoFacade.getActionByActionId(PRE_UPDATE_PASSWORD_TYPE, PRE_UPDATE_PASSWORD_ACTION_ID, TENANT_ID); - Assert.assertEquals(createdActionDTO.getId(), creatingActionDTO.getId()); - Assert.assertEquals(createdActionDTO.getType(), creatingActionDTO.getType()); - Assert.assertEquals(createdActionDTO.getName(), creatingActionDTO.getName()); - Assert.assertEquals(createdActionDTO.getDescription(), creatingActionDTO.getDescription()); - Assert.assertEquals(createdActionDTO.getStatus(), Action.Status.ACTIVE); - Assert.assertEquals(createdActionDTO.getEndpoint().getUri(), creatingActionDTO.getEndpoint().getUri()); - - Authentication createdAuthentication = createdActionDTO.getEndpoint().getAuthentication(); - Assert.assertEquals(createdAuthentication.getType(), - creatingActionDTO.getEndpoint().getAuthentication().getType()); - Assert.assertEquals(createdAuthentication.getProperties().size(), - creatingActionDTO.getEndpoint().getAuthentication().getProperties().size()); - Assert.assertEquals(createdAuthentication.getProperty(Authentication.Property.USERNAME).getValue(), - TestUtil.buildSecretName(PRE_UPDATE_PASSWORD_ACTION_ID, Authentication.Type.BASIC, - Authentication.Property.USERNAME)); - Assert.assertEquals(createdAuthentication.getProperty(Authentication.Property.PASSWORD).getValue(), - TestUtil.buildSecretName(PRE_UPDATE_PASSWORD_ACTION_ID, Authentication.Type.BASIC, - Authentication.Property.PASSWORD)); - Assert.assertEquals(createdActionDTO.getProperties().size(), creatingActionDTO.getProperties().size()); - Assert.assertTrue(createdActionDTO.getProperties().containsKey(PASSWORD_SHARING_TYPE_PROPERTY_NAME)); - Assert.assertTrue(createdActionDTO.getProperties().containsKey(CERTIFICATE_PROPERTY_NAME)); - Assert.assertEquals(createdActionDTO.getProperty(PASSWORD_SHARING_TYPE_PROPERTY_NAME), - creatingActionDTO.getProperty(PASSWORD_SHARING_TYPE_PROPERTY_NAME)); - Assert.assertEquals(((Certificate) createdActionDTO.getProperty(CERTIFICATE_PROPERTY_NAME)) - .getCertificateContent(), TEST_CERTIFICATE); + verifyActionDTO(actionDTORetrieved, actionDTOToAddOrUpdate); } @Test(priority = 4) @@ -233,32 +203,8 @@ public void testGetActionsByType() throws ActionMgtException { mockActionPropertyResolver(testActionPropertyResolver); List actionDTOs = daoFacade.getActionsByActionType(PRE_UPDATE_PASSWORD_TYPE, TENANT_ID); ActionDTO result = actionDTOs.get(0); - Assert.assertEquals(result.getId(), createdActionDTO.getId()); - Assert.assertEquals(result.getType(), createdActionDTO.getType()); - Assert.assertEquals(result.getName(), createdActionDTO.getName()); - Assert.assertEquals(result.getDescription(), createdActionDTO.getDescription()); - Assert.assertEquals(result.getStatus(), createdActionDTO.getStatus()); - Assert.assertEquals(result.getEndpoint().getUri(), createdActionDTO.getEndpoint().getUri()); - - Authentication resultAuthentication = result.getEndpoint().getAuthentication(); - Assert.assertEquals(resultAuthentication.getType(), - createdActionDTO.getEndpoint().getAuthentication().getType()); - Assert.assertEquals(resultAuthentication.getProperties().size(), - createdActionDTO.getEndpoint().getAuthentication().getProperties().size()); - Assert.assertEquals(resultAuthentication.getProperty(Authentication.Property.USERNAME).getValue(), - createdActionDTO.getEndpoint().getAuthentication().getProperty(Authentication.Property.USERNAME) - .getValue()); - Assert.assertEquals(resultAuthentication.getProperty(Authentication.Property.PASSWORD).getValue(), - createdActionDTO.getEndpoint().getAuthentication().getProperty(Authentication.Property.PASSWORD) - .getValue()); - - Assert.assertEquals(result.getProperties().size(), createdActionDTO.getProperties().size()); - Assert.assertTrue(createdActionDTO.getProperties().containsKey(PASSWORD_SHARING_TYPE_PROPERTY_NAME)); - Assert.assertTrue(createdActionDTO.getProperties().containsKey(CERTIFICATE_PROPERTY_NAME)); - Assert.assertEquals(result.getProperty(PASSWORD_SHARING_TYPE_PROPERTY_NAME), - createdActionDTO.getProperty(PASSWORD_SHARING_TYPE_PROPERTY_NAME)); - Assert.assertEquals(((Certificate) result.getProperty(CERTIFICATE_PROPERTY_NAME)).getCertificateContent(), - ((Certificate) createdActionDTO.getProperty(CERTIFICATE_PROPERTY_NAME)).getCertificateContent()); + + verifyActionDTO(result, actionDTOToAddOrUpdate); } @Test(priority = 5) @@ -269,7 +215,7 @@ public void testUpdateActionPropertyResolverClientException() throws ActionDTOMo .when(mockedActionDTOModelResolver).resolveForUpdateOperation(any(), any(), any()); try { - daoFacade.updateAction(creatingActionDTO, createdActionDTO, TENANT_ID); + daoFacade.updateAction(actionDTOToAddOrUpdate, actionDTORetrieved, TENANT_ID); Assert.fail("Successful update of the actions without an exception is considered as a failure"); } catch (ActionMgtException e) { Assert.assertEquals(e.getClass(), ActionMgtClientException.class); @@ -288,7 +234,7 @@ public void testUpdateActionWithActionPropertyResolverServerException() throws A .resolveForUpdateOperation(any(), any(), any()); try { - daoFacade.updateAction(creatingActionDTO, createdActionDTO, TENANT_ID); + daoFacade.updateAction(actionDTOToAddOrUpdate, actionDTORetrieved, TENANT_ID); Assert.fail("Successful update of the actions without an exception is considered as a failure"); } catch (ActionMgtException e) { Assert.assertEquals(e.getClass(), ActionMgtServerException.class); @@ -308,7 +254,7 @@ public void testUpdateCompleteAction() throws ActionMgtException { mockActionPropertyResolver(testActionPropertyResolver); // Update action with certificate property deletion. ActionDTO updatingAction = new ActionDTOBuilder() - .id(createdActionDTO.getId()) + .id(actionDTORetrieved.getId()) .type(Action.ActionTypes.PRE_UPDATE_PASSWORD) .name(TEST_ACTION_NAME_UPDATED) .description(TEST_ACTION_DESCRIPTION_UPDATED) @@ -322,17 +268,17 @@ public void testUpdateCompleteAction() throws ActionMgtException { .build(); try { - daoFacade.updateAction(updatingAction, createdActionDTO, TENANT_ID); + daoFacade.updateAction(updatingAction, actionDTORetrieved, TENANT_ID); } catch (Exception e) { Assert.fail(); } ActionDTO result = daoFacade.getActionByActionId(PRE_UPDATE_PASSWORD_TYPE, updatingAction.getId(), TENANT_ID); - Assert.assertEquals(result.getId(), createdActionDTO.getId()); - Assert.assertEquals(result.getType(), createdActionDTO.getType()); + Assert.assertEquals(result.getId(), actionDTORetrieved.getId()); + Assert.assertEquals(result.getType(), actionDTORetrieved.getType()); Assert.assertEquals(result.getName(), updatingAction.getName()); Assert.assertEquals(result.getDescription(), updatingAction.getDescription()); - Assert.assertEquals(result.getStatus(), createdActionDTO.getStatus()); + Assert.assertEquals(result.getStatus(), actionDTORetrieved.getStatus()); Assert.assertEquals(result.getEndpoint().getUri(), updatingAction.getEndpoint().getUri()); Authentication updatedAuthentication = result.getEndpoint().getAuthentication(); @@ -352,22 +298,23 @@ public void testUpdateCompleteAction() throws ActionMgtException { Assert.assertEquals(result.getProperty(PASSWORD_SHARING_TYPE_PROPERTY_NAME), updatingAction.getProperty(PASSWORD_SHARING_TYPE_PROPERTY_NAME)); Assert.assertNull(result.getProperty(CERTIFICATE_PROPERTY_NAME)); - createdActionDTO = result; + actionDTORetrieved = result; } @Test(priority = 8) public void testDeactivateAction() throws ActionMgtException { - Assert.assertEquals(createdActionDTO.getStatus(), Action.Status.ACTIVE); - ActionDTO deactivatedActionDTO = daoFacade.deactivateAction(PRE_UPDATE_PASSWORD_TYPE, createdActionDTO.getId(), - TENANT_ID); + Assert.assertEquals(actionDTORetrieved.getStatus(), Action.Status.ACTIVE); + ActionDTO deactivatedActionDTO = + daoFacade.deactivateAction(PRE_UPDATE_PASSWORD_TYPE, actionDTORetrieved.getId(), + TENANT_ID); Assert.assertEquals(deactivatedActionDTO.getStatus(), Action.Status.INACTIVE); } @Test(priority = 9) public void testActivateAction() throws ActionMgtException { - ActionDTO activatedActionDTO = daoFacade.activateAction(PRE_UPDATE_PASSWORD_TYPE, createdActionDTO.getId(), + ActionDTO activatedActionDTO = daoFacade.activateAction(PRE_UPDATE_PASSWORD_TYPE, actionDTORetrieved.getId(), TENANT_ID); Assert.assertEquals(activatedActionDTO.getStatus(), Action.Status.ACTIVE); } @@ -385,7 +332,7 @@ public void testDeleteAction() throws ActionMgtException { mockActionPropertyResolver(testActionPropertyResolver); try { - daoFacade.deleteAction(createdActionDTO, TENANT_ID); + daoFacade.deleteAction(actionDTORetrieved, TENANT_ID); } catch (Exception e) { Assert.fail(); } @@ -394,10 +341,263 @@ public void testDeleteAction() throws ActionMgtException { Assert.assertEquals(daoFacade.getActionsCountPerType(TENANT_ID), Collections.emptyMap()); } + @Test(priority = 12) + public void testAddActionWithRule() throws Exception { + + Rule rule = mockRule(); + mockRuleManagementService(rule); + actionDTOToAddOrUpdate = createActionDTOForPasswordUpdateActionWithRule(rule); + mockActionPropertyResolver(testActionPropertyResolver); + + daoFacade.addAction(actionDTOToAddOrUpdate, TENANT_ID); + + actionDTORetrieved = daoFacade.getActionByActionId(PRE_UPDATE_PASSWORD_TYPE, PRE_UPDATE_PASSWORD_ACTION_ID, + TENANT_ID); + + verifyActionDTO(actionDTORetrieved, actionDTOToAddOrUpdate); + verifyActionDTORule(actionDTORetrieved, actionDTOToAddOrUpdate); + } + + @Test(priority = 13) + public void testFailureInAddActionWithRuleAtRuleManagementException() throws Exception { + + Rule rule = mockRule(); + when(ruleManagementService.addRule(rule, TENANT_DOMAIN)).thenThrow(new RuleManagementException("Error adding " + + "rule.")); + actionDTOToAddOrUpdate = createActionDTOForPasswordUpdateActionWithRule(rule); + + try { + daoFacade.addAction(actionDTOToAddOrUpdate, TENANT_ID); + } catch (ActionMgtException e) { + Assert.assertEquals(e.getMessage(), "Error while adding Action."); + Throwable cause = e.getCause(); + while (cause != null && !(cause instanceof ActionMgtServerException)) { + cause = cause.getCause(); + } + Assert.assertNotNull(cause, "Expected ActionMgtServerException was not found in the exception chain"); + Assert.assertEquals(cause.getMessage(), "Error while adding the Rule associated with the Action."); + } + } + + @Test(priority = 14) + public void testFailureInRetrievingActionWithRuleAtRuleManagementException() throws Exception { + + Rule rule = mockRule(); + when(ruleManagementService.getRuleByRuleId(rule.getId(), TENANT_DOMAIN)).thenThrow( + new RuleManagementException("Error retrieving rule.")); + + try { + daoFacade.getActionByActionId(PRE_UPDATE_PASSWORD_TYPE, PRE_UPDATE_PASSWORD_ACTION_ID, + TENANT_ID); + } catch (ActionMgtException e) { + Assert.assertEquals(e.getMessage(), "Error while retrieving Action by ID."); + Throwable cause = e.getCause(); + while (cause != null && !(cause instanceof ActionMgtServerException)) { + cause = cause.getCause(); + } + Assert.assertNotNull(cause, "Expected ActionMgtServerException was not found in the exception chain"); + Assert.assertEquals(cause.getMessage(), "Error while retrieving the Rule associated with the Action."); + } + } + + @Test(priority = 15) + public void testGetActionsWithRulesByType() throws Exception { + + Rule rule = mockRule(); + mockRuleManagementService(rule); + ActionDTO expectedActionDTO = createActionDTOForPasswordUpdateActionWithRule(rule); + mockActionPropertyResolver(testActionPropertyResolver); + + List actionDTOs = daoFacade.getActionsByActionType(PRE_UPDATE_PASSWORD_TYPE, TENANT_ID); + + ActionDTO result = actionDTOs.get(0); + verifyActionDTO(result, expectedActionDTO); + verifyActionDTORule(result, expectedActionDTO); + } + + @Test(priority = 16) + public void testUpdateActionUpdatingRule() throws Exception { + + Rule rule = mockRule(); + mockRuleManagementService(rule); + ActionDTO updatingActionDTO = createActionDTOForPasswordUpdateActionWithRule(rule); + mockActionPropertyResolver(testActionPropertyResolver); + + daoFacade.updateAction(updatingActionDTO, actionDTORetrieved, TENANT_ID); + + actionDTORetrieved = daoFacade.getActionByActionId(PRE_UPDATE_PASSWORD_TYPE, PRE_UPDATE_PASSWORD_ACTION_ID, + TENANT_ID); + + verifyActionDTO(actionDTORetrieved, updatingActionDTO); + verifyActionDTORule(actionDTORetrieved, updatingActionDTO); + } + + @Test(priority = 17) + public void testFailureInUpdateActionUpdatingRuleAtRuleManagementException() throws Exception { + + Rule rule = mockRule(); + when(ruleManagementService.updateRule(rule, TENANT_DOMAIN)).thenThrow(new RuleManagementException("Error " + + "updating rule.")); + ActionDTO updatingActionDTO = createActionDTOForPasswordUpdateActionWithRule(rule); + + try { + daoFacade.updateAction(updatingActionDTO, actionDTORetrieved, TENANT_ID); + } catch (ActionMgtException e) { + Assert.assertEquals(e.getMessage(), "Error while updating Action."); + Throwable cause = e.getCause(); + while (cause != null && !(cause instanceof ActionMgtServerException)) { + cause = cause.getCause(); + } + Assert.assertNotNull(cause, "Expected ActionMgtServerException was not found in the exception chain"); + Assert.assertEquals(cause.getMessage(), "Error while updating the Rule associated with the Action."); + } + } + + @Test(priority = 18) + public void testUpdateActionRemovingRule() throws Exception { + + ActionDTO updatingActionDTOWithoutRule = createActionDTOForPasswordUpdateAction(); + mockActionPropertyResolver(testActionPropertyResolver); + + daoFacade.updateAction(updatingActionDTOWithoutRule, actionDTORetrieved, TENANT_ID); + + actionDTORetrieved = daoFacade.getActionByActionId(PRE_UPDATE_PASSWORD_TYPE, PRE_UPDATE_PASSWORD_ACTION_ID, + TENANT_ID); + + verifyActionDTO(actionDTORetrieved, updatingActionDTOWithoutRule); + Assert.assertNull(actionDTORetrieved.getActionRule()); + } + + @Test(priority = 19) + public void testFailureInUpdateActionRemovingRuleAtRuleManagementException() throws Exception { + + doThrow(new RuleManagementException("Error updating rule.")).when(ruleManagementService) + .deleteRule(any(), any()); + ActionDTO updatingActionDTOWithoutRule = createActionDTOForPasswordUpdateAction(); + mockActionPropertyResolver(testActionPropertyResolver); + + try { + daoFacade.updateAction(updatingActionDTOWithoutRule, actionDTORetrieved, TENANT_ID); + } catch (ActionMgtException e) { + Assert.assertEquals(e.getMessage(), "Error while updating Action."); + Throwable cause = e.getCause(); + while (cause != null && !(cause instanceof ActionMgtServerException)) { + cause = cause.getCause(); + } + Assert.assertNotNull(cause, "Expected ActionMgtServerException was not found in the exception chain"); + Assert.assertEquals(cause.getMessage(), "Error while deleting the Rule associated with the Action."); + } + } + + @Test(priority = 20) + public void testUpdateActionAddingRule() throws Exception { + + Rule rule = mockRule(); + mockRuleManagementService(rule); + ActionDTO updatingActionDTO = createActionDTOForPasswordUpdateActionWithRule(rule); + mockActionPropertyResolver(testActionPropertyResolver); + + daoFacade.updateAction(updatingActionDTO, actionDTORetrieved, TENANT_ID); + + actionDTORetrieved = daoFacade.getActionByActionId(PRE_UPDATE_PASSWORD_TYPE, PRE_UPDATE_PASSWORD_ACTION_ID, + TENANT_ID); + + verifyActionDTO(actionDTORetrieved, updatingActionDTO); + verifyActionDTORule(actionDTORetrieved, updatingActionDTO); + } + + @Test(priority = 21) + public void testDeleteActionWithRule() throws ActionMgtException { + + mockActionPropertyResolver(testActionPropertyResolver); + + daoFacade.deleteAction(actionDTORetrieved, TENANT_ID); + + Assert.assertNull(daoFacade.getActionByActionId(PRE_UPDATE_PASSWORD_TYPE, PRE_UPDATE_PASSWORD_ACTION_ID, + TENANT_ID)); + Assert.assertEquals(daoFacade.getActionsCountPerType(TENANT_ID), Collections.emptyMap()); + } + private void mockActionPropertyResolver(ActionDTOModelResolver actionDTOModelResolver) { - actionPropertyResolverFactory.when( - () -> ActionDTOModelResolverFactory.getActionDTOModelResolver(Action.ActionTypes.PRE_UPDATE_PASSWORD)) + actionPropertyResolverFactory.when(() -> ActionDTOModelResolverFactory. + getActionDTOModelResolver(Action.ActionTypes.PRE_UPDATE_PASSWORD)) .thenReturn(actionDTOModelResolver); } + + private ActionDTO createActionDTOForPasswordUpdateAction() { + + return createActionDTOBuilderForPasswordUpdateAction().build(); + } + + private ActionDTO createActionDTOForPasswordUpdateActionWithRule(Rule rule) { + + return createActionDTOBuilderForPasswordUpdateAction().rule(ActionRule.create(rule)).build(); + } + + private ActionDTOBuilder createActionDTOBuilderForPasswordUpdateAction() { + + return new ActionDTOBuilder() + .id(PRE_UPDATE_PASSWORD_ACTION_ID) + .type(Action.ActionTypes.PRE_UPDATE_PASSWORD) + .name(TEST_ACTION_NAME) + .description(TEST_ACTION_DESCRIPTION) + .endpoint(new EndpointConfig.EndpointConfigBuilder() + .uri(TEST_ACTION_URI) + .authentication(TestUtil.buildMockBasicAuthentication(TEST_USERNAME, TEST_PASSWORD)) + .build()) + .property(PASSWORD_SHARING_TYPE_PROPERTY_NAME, TEST_PASSWORD_SHARING_TYPE) + .property(CERTIFICATE_PROPERTY_NAME, + new Certificate.Builder().certificateContent(TEST_CERTIFICATE).build()); + } + + private void verifyActionDTO(ActionDTO actualActionDTO, ActionDTO expectedActionDTO) { + + Assert.assertEquals(actualActionDTO.getId(), expectedActionDTO.getId()); + Assert.assertEquals(actualActionDTO.getType(), expectedActionDTO.getType()); + Assert.assertEquals(actualActionDTO.getName(), expectedActionDTO.getName()); + Assert.assertEquals(actualActionDTO.getDescription(), expectedActionDTO.getDescription()); + Assert.assertEquals(actualActionDTO.getStatus(), Action.Status.ACTIVE); + Assert.assertEquals(actualActionDTO.getEndpoint().getUri(), expectedActionDTO.getEndpoint().getUri()); + + Authentication createdAuthentication = actualActionDTO.getEndpoint().getAuthentication(); + Assert.assertEquals(createdAuthentication.getType(), + expectedActionDTO.getEndpoint().getAuthentication().getType()); + Assert.assertEquals(createdAuthentication.getProperties().size(), + expectedActionDTO.getEndpoint().getAuthentication().getProperties().size()); + Assert.assertEquals(createdAuthentication.getProperty(Authentication.Property.USERNAME).getValue(), + TestUtil.buildSecretName(PRE_UPDATE_PASSWORD_ACTION_ID, Authentication.Type.BASIC, + Authentication.Property.USERNAME)); + Assert.assertEquals(createdAuthentication.getProperty(Authentication.Property.PASSWORD).getValue(), + TestUtil.buildSecretName(PRE_UPDATE_PASSWORD_ACTION_ID, Authentication.Type.BASIC, + Authentication.Property.PASSWORD)); + + Assert.assertEquals(actualActionDTO.getProperties().size(), expectedActionDTO.getProperties().size()); + Assert.assertTrue(actualActionDTO.getProperties().containsKey(PASSWORD_SHARING_TYPE_PROPERTY_NAME)); + Assert.assertEquals(actualActionDTO.getProperty(PASSWORD_SHARING_TYPE_PROPERTY_NAME), + expectedActionDTO.getProperty(PASSWORD_SHARING_TYPE_PROPERTY_NAME)); + } + + private void verifyActionDTORule(ActionDTO actualActionDTO, ActionDTO expectedActionDTO) + throws ActionMgtException { + + Assert.assertNotNull(actualActionDTO.getActionRule()); + Assert.assertEquals(actualActionDTO.getActionRule().getId(), expectedActionDTO.getActionRule().getId()); + Assert.assertEquals(actualActionDTO.getActionRule().getRule(), expectedActionDTO.getActionRule().getRule()); + } + + private Rule mockRule() { + + Rule rule = mock(Rule.class); + when(rule.getId()).thenReturn("ruleId"); + when(rule.isActive()).thenReturn(true); + return rule; + } + + private void mockRuleManagementService(Rule rule) throws RuleManagementException { + + when(ruleManagementService.addRule(rule, TENANT_DOMAIN)).thenReturn(rule); + when(ruleManagementService.updateRule(rule, TENANT_DOMAIN)).thenReturn(rule); + when(ruleManagementService.getRuleByRuleId("ruleId", TENANT_DOMAIN)).thenReturn(rule); + } } diff --git a/components/action-mgt/org.wso2.carbon.identity.action.management/src/test/java/org/wso2/carbon/identity/action/management/dao/TestActionDTOModelResolver.java b/components/action-mgt/org.wso2.carbon.identity.action.management/src/test/java/org/wso2/carbon/identity/action/management/dao/TestActionDTOModelResolver.java index 2b5424d40672..3e410280f9ed 100644 --- a/components/action-mgt/org.wso2.carbon.identity.action.management/src/test/java/org/wso2/carbon/identity/action/management/dao/TestActionDTOModelResolver.java +++ b/components/action-mgt/org.wso2.carbon.identity.action.management/src/test/java/org/wso2/carbon/identity/action/management/dao/TestActionDTOModelResolver.java @@ -18,6 +18,7 @@ package org.wso2.carbon.identity.action.management.dao; +import org.apache.commons.lang.StringUtils; import org.wso2.carbon.identity.action.management.model.Action; import org.wso2.carbon.identity.action.management.model.ActionDTO; import org.wso2.carbon.identity.action.management.service.ActionDTOModelResolver; @@ -99,6 +100,11 @@ public ActionDTO resolveForUpdateOperation(ActionDTO updatingActionDTO, ActionDT Map properties = new HashMap<>(); properties.put(PASSWORD_SHARING_TYPE_PROPERTY_NAME, updatingActionDTO.getProperty(PASSWORD_SHARING_TYPE_PROPERTY_NAME)); + if (updatingActionDTO.getProperty(CERTIFICATE_PROPERTY_NAME) != null && + !StringUtils.EMPTY.equals(updatingActionDTO.getProperty( + CERTIFICATE_PROPERTY_NAME).toString())) { + properties.put(CERTIFICATE_PROPERTY_NAME, TestUtil.CERTIFICATE_ID); + } return new ActionDTO.Builder(updatingActionDTO).properties(properties).build(); } diff --git a/components/action-mgt/org.wso2.carbon.identity.action.management/src/test/java/org/wso2/carbon/identity/action/management/service/ActionManagementServiceImplTest.java b/components/action-mgt/org.wso2.carbon.identity.action.management/src/test/java/org/wso2/carbon/identity/action/management/service/ActionManagementServiceImplTest.java index 1d159ec3bcde..5fcc6fc3b1ef 100644 --- a/components/action-mgt/org.wso2.carbon.identity.action.management/src/test/java/org/wso2/carbon/identity/action/management/service/ActionManagementServiceImplTest.java +++ b/components/action-mgt/org.wso2.carbon.identity.action.management/src/test/java/org/wso2/carbon/identity/action/management/service/ActionManagementServiceImplTest.java @@ -35,6 +35,8 @@ import org.wso2.carbon.identity.common.testng.WithH2Database; import org.wso2.carbon.identity.common.testng.WithRealmService; import org.wso2.carbon.identity.core.internal.IdentityCoreServiceDataHolder; +import org.wso2.carbon.identity.rule.management.model.Rule; +import org.wso2.carbon.identity.rule.management.service.RuleManagementService; import org.wso2.carbon.identity.secret.mgt.core.SecretManagerImpl; import org.wso2.carbon.identity.secret.mgt.core.exception.SecretManagementException; import org.wso2.carbon.identity.secret.mgt.core.model.SecretType; @@ -75,21 +77,29 @@ public class ActionManagementServiceImplTest { private ActionManagementService actionManagementService; private Action sampleAction; + private Rule sampleRule; @BeforeClass public void setUpClass() { actionManagementService = new ActionManagementServiceImpl(); + sampleRule = TestUtil.buildMockRule("ruleId", true); } @BeforeMethod - public void setUp() throws SecretManagementException { + public void setUp() throws Exception { SecretManagerImpl secretManager = mock(SecretManagerImpl.class); SecretType secretType = mock(SecretType.class); ActionMgtServiceComponentHolder.getInstance().setSecretManager(secretManager); when(secretType.getId()).thenReturn(TestUtil.TEST_SECRET_TYPE_ID); when(secretManager.getSecretType(any())).thenReturn(secretType); + + RuleManagementService ruleManagementService = mock(RuleManagementService.class); + ActionMgtServiceComponentHolder.getInstance().setRuleManagementService(ruleManagementService); + when(ruleManagementService.getRuleByRuleId(any(), any())).thenReturn(sampleRule); + when(ruleManagementService.addRule(any(), any())).thenReturn(sampleRule); + when(ruleManagementService.updateRule(any(), any())).thenReturn(sampleRule); } @Test(priority = 1) @@ -124,6 +134,7 @@ public void testAddAction() throws ActionMgtException, SecretManagementException @Test(priority = 2, expectedExceptions = ActionMgtClientException.class, expectedExceptionsMessageRegExp = "Invalid request.") public void testAddActionWithInvalidData() throws ActionMgtException { + Action creatingAction = TestUtil.buildMockAction( TEST_INVALID_ACTION_NAME, TEST_ACTION_DESCRIPTION, @@ -136,6 +147,7 @@ public void testAddActionWithInvalidData() throws ActionMgtException { @Test(priority = 3, expectedExceptions = ActionMgtClientException.class, expectedExceptionsMessageRegExp = "Invalid request.") public void testAddActionWithEmptyData() throws ActionMgtException { + Action creatingAction = TestUtil.buildMockAction( StringUtils.EMPTY, TEST_ACTION_DESCRIPTION, @@ -259,7 +271,7 @@ public void testGetActionsCountPerType() throws ActionMgtException { Assert.assertNull(actionMap.get(Action.ActionTypes.PRE_UPDATE_PROFILE.getActionType())); Assert.assertNull(actionMap.get(Action.ActionTypes.PRE_REGISTRATION.getActionType())); Assert.assertNull(actionMap.get(Action.ActionTypes.AUTHENTICATION.getActionType())); - for (Map.Entry entry: actionMap.entrySet()) { + for (Map.Entry entry : actionMap.entrySet()) { Assert.assertEquals(Action.ActionTypes.PRE_ISSUE_ACCESS_TOKEN.getActionType(), entry.getKey()); Assert.assertEquals(entry.getValue().intValue(), 1); } @@ -320,6 +332,101 @@ public void testDeleteNonExistingAction() { } } + @Test(priority = 15) + public void testAddActionWithRule() throws ActionMgtException, SecretManagementException { + + Action creatingAction = TestUtil.buildMockActionWithRule( + TEST_ACTION_NAME, + TEST_ACTION_DESCRIPTION, + TEST_ACTION_URI, + TestUtil.buildMockBasicAuthentication(TEST_USERNAME, TEST_PASSWORD), + sampleRule); + sampleAction = actionManagementService.addAction(PRE_ISSUE_ACCESS_TOKEN_PATH, creatingAction, TENANT_DOMAIN); + + Assert.assertNotNull(sampleAction.getId()); + Assert.assertEquals(sampleAction.getName(), creatingAction.getName()); + Assert.assertEquals(sampleAction.getDescription(), creatingAction.getDescription()); + Assert.assertEquals(sampleAction.getStatus(), Action.Status.ACTIVE); + Assert.assertEquals(sampleAction.getType(), Action.ActionTypes.PRE_ISSUE_ACCESS_TOKEN); + Assert.assertEquals(sampleAction.getEndpoint().getUri(), creatingAction.getEndpoint().getUri()); + + Authentication sampleActionAuth = sampleAction.getEndpoint().getAuthentication(); + Authentication creatingActionAuth = creatingAction.getEndpoint().getAuthentication(); + Map secretProperties = resolveAuthPropertiesMap(creatingActionAuth, sampleAction.getId()); + + Assert.assertEquals(sampleActionAuth.getType(), creatingActionAuth.getType()); + Assert.assertEquals(sampleActionAuth.getProperties().size(), creatingActionAuth.getProperties().size()); + Assert.assertEquals(sampleActionAuth.getProperty(Authentication.Property.USERNAME).getValue(), + secretProperties.get(Authentication.Property.USERNAME.getName())); + Assert.assertEquals(sampleActionAuth.getProperty(Authentication.Property.PASSWORD).getValue(), + secretProperties.get(Authentication.Property.PASSWORD.getName())); + + Assert.assertNotNull(sampleAction.getActionRule()); + Assert.assertEquals(sampleAction.getActionRule().getId(), creatingAction.getActionRule().getId()); + Assert.assertEquals(sampleAction.getActionRule().getRule(), creatingAction.getActionRule().getRule()); + } + + @Test(priority = 16) + public void testGetActionsWithRulesByActionType() throws ActionMgtException { + + List actions = actionManagementService.getActionsByActionType(PRE_ISSUE_ACCESS_TOKEN_PATH, + TENANT_DOMAIN); + Assert.assertEquals(actions.size(), 1); + Action result = actions.get(0); + Assert.assertEquals(result.getId(), sampleAction.getId()); + Assert.assertEquals(result.getName(), sampleAction.getName()); + Assert.assertEquals(result.getDescription(), sampleAction.getDescription()); + Assert.assertEquals(result.getType().getActionType(), sampleAction.getType().getActionType()); + Assert.assertEquals(result.getStatus(), sampleAction.getStatus()); + Assert.assertEquals(result.getEndpoint().getUri(), sampleAction.getEndpoint().getUri()); + + Authentication resultActionAuth = result.getEndpoint().getAuthentication(); + Authentication sampleActionAuth = sampleAction.getEndpoint().getAuthentication(); + + Assert.assertEquals(resultActionAuth.getType(), sampleActionAuth.getType()); + Assert.assertEquals(resultActionAuth.getProperty(Authentication.Property.USERNAME).getValue(), + sampleActionAuth.getProperty(Authentication.Property.USERNAME).getValue()); + Assert.assertEquals(resultActionAuth.getProperty(Authentication.Property.PASSWORD).getValue(), + sampleActionAuth.getProperty(Authentication.Property.PASSWORD).getValue()); + + Assert.assertNotNull(result.getActionRule()); + Assert.assertEquals(result.getActionRule().getId(), sampleAction.getActionRule().getId()); + Assert.assertEquals(result.getActionRule().getRule(), sampleAction.getActionRule().getRule()); + } + + @Test(priority = 17) + public void testUpdateActionWithRule() throws ActionMgtException, SecretManagementException { + + Action updatingAction = TestUtil.buildMockActionWithRule( + TEST_ACTION_NAME_UPDATED, + TEST_ACTION_DESCRIPTION_UPDATED, + TEST_ACTION_URI, + TestUtil.buildMockAPIKeyAuthentication(TEST_API_KEY_HEADER, TEST_API_KEY_VALUE), sampleRule); + Action result = actionManagementService.updateAction(PRE_ISSUE_ACCESS_TOKEN_PATH, sampleAction.getId(), + updatingAction, TENANT_DOMAIN); + + Assert.assertEquals(result.getId(), sampleAction.getId()); + Assert.assertEquals(result.getName(), updatingAction.getName()); + Assert.assertEquals(result.getDescription(), updatingAction.getDescription()); + Assert.assertEquals(result.getType(), sampleAction.getType()); + Assert.assertEquals(result.getStatus(), sampleAction.getStatus()); + Assert.assertEquals(result.getEndpoint().getUri(), updatingAction.getEndpoint().getUri()); + + Authentication resultActionAuth = result.getEndpoint().getAuthentication(); + Authentication updatingActionAuth = updatingAction.getEndpoint().getAuthentication(); + Map secretProperties = resolveAuthPropertiesMap(updatingActionAuth, sampleAction.getId()); + + Assert.assertEquals(resultActionAuth.getType(), updatingActionAuth.getType()); + Assert.assertEquals(resultActionAuth.getProperty(Authentication.Property.HEADER).getValue(), + secretProperties.get(Authentication.Property.HEADER.getName())); + Assert.assertEquals(resultActionAuth.getProperty(Authentication.Property.VALUE).getValue(), + secretProperties.get(Authentication.Property.VALUE.getName())); + + Assert.assertNotNull(result.getActionRule()); + Assert.assertEquals(result.getActionRule().getId(), sampleAction.getActionRule().getId()); + Assert.assertEquals(result.getActionRule().getRule(), sampleAction.getActionRule().getRule()); + } + private Map resolveAuthPropertiesMap(Authentication authentication, String actionId) throws SecretManagementException { diff --git a/components/action-mgt/org.wso2.carbon.identity.action.management/src/test/java/org/wso2/carbon/identity/action/management/util/TestUtil.java b/components/action-mgt/org.wso2.carbon.identity.action.management/src/test/java/org/wso2/carbon/identity/action/management/util/TestUtil.java index a235877c7147..07493bb5ab46 100644 --- a/components/action-mgt/org.wso2.carbon.identity.action.management/src/test/java/org/wso2/carbon/identity/action/management/util/TestUtil.java +++ b/components/action-mgt/org.wso2.carbon.identity.action.management/src/test/java/org/wso2/carbon/identity/action/management/util/TestUtil.java @@ -19,11 +19,16 @@ package org.wso2.carbon.identity.action.management.util; import org.wso2.carbon.identity.action.management.model.Action; +import org.wso2.carbon.identity.action.management.model.ActionRule; import org.wso2.carbon.identity.action.management.model.Authentication; import org.wso2.carbon.identity.action.management.model.EndpointConfig; +import org.wso2.carbon.identity.rule.management.model.Rule; import java.util.UUID; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + /** * Utility class for Action Management Tests. */ @@ -92,6 +97,17 @@ public static Action buildMockAction(String name, String description, String uri .build(); } + public static Action buildMockActionWithRule(String name, String description, String uri, + Authentication authentication, Rule rule) { + + return new Action.ActionRequestBuilder() + .name(name) + .description(description) + .endpoint(buildMockEndpointConfig(uri, authentication)) + .rule(ActionRule.create(rule)) + .build(); + } + public static String buildSecretName(String actionId, Authentication.Type authType, Authentication.Property authProperty) { @@ -124,4 +140,12 @@ public static EndpointConfig buildMockEndpointConfig(String uri, Authentication .authentication(authentication) .build(); } + + public static Rule buildMockRule(String ruleId, boolean isActive) { + + Rule rule = mock(Rule.class); + when(rule.getId()).thenReturn(ruleId); + when(rule.isActive()).thenReturn(isActive); + return rule; + } } From f8f90f228863d7508e64227121386ad92baf0d6f Mon Sep 17 00:00:00 2001 From: malithie Date: Wed, 8 Jan 2025 05:56:51 +0530 Subject: [PATCH 03/10] Apply minor refactoring suggestions. --- .../dao/impl/ActionManagementDAOFacade.java | 77 ++++++++++--------- .../ActionMgtServiceComponentHolder.java | 3 +- 2 files changed, 43 insertions(+), 37 deletions(-) diff --git a/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/dao/impl/ActionManagementDAOFacade.java b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/dao/impl/ActionManagementDAOFacade.java index 2ea30739d6dd..21ca6361a734 100644 --- a/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/dao/impl/ActionManagementDAOFacade.java +++ b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/dao/impl/ActionManagementDAOFacade.java @@ -87,8 +87,8 @@ public void addAction(ActionDTO actionDTO, Integer tenantId) throws ActionMgtExc // Since exceptions thrown are wrapped with TransactionException, extracting the actual cause. handleActionPropertyResolverClientException(e.getCause()); LOG.debug("Error while creating the Action of Action Type: " + actionDTO.getType().getDisplayName() + - " in Tenant Domain: " + IdentityTenantUtil.getTenantDomain(tenantId) + - ". Rolling back created action information, authentication secrets and action properties."); + " in Tenant Domain: " + IdentityTenantUtil.getTenantDomain(tenantId) + + ". Rolling back created action information, authentication secrets and action properties."); throw ActionManagementExceptionHandler.handleServerException(ErrorMessage.ERROR_WHILE_ADDING_ACTION, e); } } @@ -289,8 +289,8 @@ private void deleteAuthenticationSecrets(ActionDTO deletingActionDTO) throws Act * Add the encrypted authentication secrets and replace the input authentication properties in the ActionDTOBuilder * object. * - * @param actionDTOBuilder ActionDTOBuilder object. - * @param encryptedProperties List of encrypted AuthProperty objects. + * @param actionDTOBuilder ActionDTOBuilder object. + * @param encryptedProperties List of encrypted AuthProperty objects. */ private void addEncryptedAuthSecretsToBuilder(ActionDTOBuilder actionDTOBuilder, List encryptedProperties) { @@ -299,39 +299,44 @@ private void addEncryptedAuthSecretsToBuilder(ActionDTOBuilder actionDTOBuilder, .collect(Collectors.toMap(AuthProperty::getName, AuthProperty::getValue)); actionDTOBuilder.endpoint(new EndpointConfig.EndpointConfigBuilder() - .uri(actionDTOBuilder.getEndpoint().getUri()) - .authentication(new Authentication.AuthenticationBuilder() - .type(actionDTOBuilder.getEndpoint().getAuthentication().getType()) - .properties(encryptedPropertyMap) - .build()) - .build()); + .uri(actionDTOBuilder.getEndpoint().getUri()) + .authentication(new Authentication.AuthenticationBuilder() + .type(actionDTOBuilder.getEndpoint().getAuthentication().getType()) + .properties(encryptedPropertyMap) + .build()) + .build()); } private void addActionRule(ActionDTOBuilder actionDTOBuilder, String tenantDomain) throws ActionMgtException { - if (actionDTOBuilder.getActionRule() != null) { - try { - ActionMgtServiceComponentHolder.getInstance() - .getRuleManagementService() - .addRule(actionDTOBuilder.getActionRule().getRule(), tenantDomain); - } catch (RuleManagementException e) { - throw new ActionMgtServerException("Error while adding the Rule associated with the Action.", e); - } + if (actionDTOBuilder.getActionRule() == null) { + return; } + + try { + ActionMgtServiceComponentHolder.getInstance() + .getRuleManagementService() + .addRule(actionDTOBuilder.getActionRule().getRule(), tenantDomain); + } catch (RuleManagementException e) { + throw new ActionMgtServerException("Error while adding the Rule associated with the Action.", e); + } + } private void loadActionRule(ActionDTOBuilder actionDTOBuilder, String tenantDomain) throws ActionMgtServerException { - if (actionDTOBuilder.getActionRule() != null) { - try { - ActionRule actionRule = ActionRule.create(ActionMgtServiceComponentHolder.getInstance() - .getRuleManagementService() - .getRuleByRuleId(actionDTOBuilder.getActionRule().getId(), tenantDomain)); - actionDTOBuilder.rule(actionRule); - } catch (RuleManagementException e) { - throw new ActionMgtServerException("Error while retrieving the Rule associated with the Action.", e); - } + if (actionDTOBuilder.getActionRule() == null) { + return; + } + + try { + ActionRule actionRule = ActionRule.create(ActionMgtServiceComponentHolder.getInstance() + .getRuleManagementService() + .getRuleByRuleId(actionDTOBuilder.getActionRule().getId(), tenantDomain)); + actionDTOBuilder.rule(actionRule); + } catch (RuleManagementException e) { + throw new ActionMgtServerException("Error while retrieving the Rule associated with the Action.", e); } } @@ -360,14 +365,16 @@ private void updateActionRule(ActionDTOBuilder updatingActionDTOBuilder, ActionD private void deleteActionRule(ActionDTO actionDTO, String tenantDomain) throws ActionMgtServerException { - if (actionDTO.getActionRule() != null) { - try { - ActionMgtServiceComponentHolder.getInstance() - .getRuleManagementService() - .deleteRule(actionDTO.getActionRule().getId(), tenantDomain); - } catch (RuleManagementException e) { - throw new ActionMgtServerException("Error while deleting the Rule associated with the Action.", e); - } + if (actionDTO.getActionRule() == null) { + return; + } + + try { + ActionMgtServiceComponentHolder.getInstance() + .getRuleManagementService() + .deleteRule(actionDTO.getActionRule().getId(), tenantDomain); + } catch (RuleManagementException e) { + throw new ActionMgtServerException("Error while deleting the Rule associated with the Action.", e); } } diff --git a/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/internal/ActionMgtServiceComponentHolder.java b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/internal/ActionMgtServiceComponentHolder.java index a5d73c12e881..da7ced3c5246 100644 --- a/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/internal/ActionMgtServiceComponentHolder.java +++ b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/internal/ActionMgtServiceComponentHolder.java @@ -102,8 +102,7 @@ public RuleManagementService getRuleManagementService() { * * @param ruleManagementService RuleManagementService instance. */ - public void setRuleManagementService( - RuleManagementService ruleManagementService) { + public void setRuleManagementService(RuleManagementService ruleManagementService) { this.ruleManagementService = ruleManagementService; } From 0d58c41b9c136189b8c1ef898c4a56c30f1e9f75 Mon Sep 17 00:00:00 2001 From: malithie Date: Wed, 8 Jan 2025 13:52:25 +0530 Subject: [PATCH 04/10] Fix updating action adding updating or removing rule. --- .../dao/impl/ActionManagementDAOFacade.java | 87 +++++++++++++------ .../dao/impl/ActionManagementDAOImpl.java | 18 ++-- .../action/management/model/ActionRule.java | 10 +++ .../dao/ActionManagementDAOFacadeTest.java | 21 ++++- .../ActionManagementServiceImplTest.java | 2 +- 5 files changed, 102 insertions(+), 36 deletions(-) diff --git a/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/dao/impl/ActionManagementDAOFacade.java b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/dao/impl/ActionManagementDAOFacade.java index 21ca6361a734..a39c89eea433 100644 --- a/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/dao/impl/ActionManagementDAOFacade.java +++ b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/dao/impl/ActionManagementDAOFacade.java @@ -87,8 +87,8 @@ public void addAction(ActionDTO actionDTO, Integer tenantId) throws ActionMgtExc // Since exceptions thrown are wrapped with TransactionException, extracting the actual cause. handleActionPropertyResolverClientException(e.getCause()); LOG.debug("Error while creating the Action of Action Type: " + actionDTO.getType().getDisplayName() + - " in Tenant Domain: " + IdentityTenantUtil.getTenantDomain(tenantId) + - ". Rolling back created action information, authentication secrets and action properties."); + " in Tenant Domain: " + IdentityTenantUtil.getTenantDomain(tenantId) + + ". Rolling back created action information, authentication secrets and action properties."); throw ActionManagementExceptionHandler.handleServerException(ErrorMessage.ERROR_WHILE_ADDING_ACTION, e); } } @@ -289,8 +289,8 @@ private void deleteAuthenticationSecrets(ActionDTO deletingActionDTO) throws Act * Add the encrypted authentication secrets and replace the input authentication properties in the ActionDTOBuilder * object. * - * @param actionDTOBuilder ActionDTOBuilder object. - * @param encryptedProperties List of encrypted AuthProperty objects. + * @param actionDTOBuilder ActionDTOBuilder object. + * @param encryptedProperties List of encrypted AuthProperty objects. */ private void addEncryptedAuthSecretsToBuilder(ActionDTOBuilder actionDTOBuilder, List encryptedProperties) { @@ -299,17 +299,17 @@ private void addEncryptedAuthSecretsToBuilder(ActionDTOBuilder actionDTOBuilder, .collect(Collectors.toMap(AuthProperty::getName, AuthProperty::getValue)); actionDTOBuilder.endpoint(new EndpointConfig.EndpointConfigBuilder() - .uri(actionDTOBuilder.getEndpoint().getUri()) - .authentication(new Authentication.AuthenticationBuilder() - .type(actionDTOBuilder.getEndpoint().getAuthentication().getType()) - .properties(encryptedPropertyMap) - .build()) - .build()); + .uri(actionDTOBuilder.getEndpoint().getUri()) + .authentication(new Authentication.AuthenticationBuilder() + .type(actionDTOBuilder.getEndpoint().getAuthentication().getType()) + .properties(encryptedPropertyMap) + .build()) + .build()); } private void addActionRule(ActionDTOBuilder actionDTOBuilder, String tenantDomain) throws ActionMgtException { - if (actionDTOBuilder.getActionRule() == null) { + if (actionDTOBuilder.getActionRule() == null || actionDTOBuilder.getActionRule().getRule() == null) { return; } @@ -341,25 +341,56 @@ private void loadActionRule(ActionDTOBuilder actionDTOBuilder, String tenantDoma } private void updateActionRule(ActionDTOBuilder updatingActionDTOBuilder, ActionDTO existingActionDTO, - String tenantDomain) - throws ActionMgtException { - - if (existingActionDTO.getActionRule() == null && updatingActionDTOBuilder.getActionRule() != null) { - // This means a new action rule is added when updating the action. + String tenantDomain) throws ActionMgtException { + + /* + When updating an action, the action rule can be added, removed or updated. + When action rule is added, the Rule object is added to the ActionRule of the ActionDTO. + When action rule is removed, the Rule object is set as null in the ActionRule of the ActionDTO. + This happens as the API accepts the removal of the rule in an action update via an empty rule JSON object. + e.g., rule: {}. If rule is not present in the payload that means rule is not updated. + When action rule is updated, the Rule object is updated in the ActionRule of the ActionDTO. + */ + if (isAddingNewActionRule(updatingActionDTOBuilder, existingActionDTO)) { addActionRule(updatingActionDTOBuilder, tenantDomain); - } else if (existingActionDTO.getActionRule() != null && updatingActionDTOBuilder.getActionRule() == null) { - // This means the existing action rule is removed when updating the action. + } else if (isRemovingExistingActionRule(updatingActionDTOBuilder, existingActionDTO)) { deleteActionRule(existingActionDTO, tenantDomain); - } else if (existingActionDTO.getActionRule() != null && updatingActionDTOBuilder.getActionRule() != - null) { // This means the existing action rule is updated when updating the action. - try { - updatingActionDTOBuilder.getActionRule().getRule().setId(existingActionDTO.getActionRule().getId()); - ActionMgtServiceComponentHolder.getInstance() - .getRuleManagementService() - .updateRule(updatingActionDTOBuilder.getActionRule().getRule(), tenantDomain); - } catch (RuleManagementException e) { - throw new ActionMgtServerException("Error while updating the Rule associated with the Action.", e); - } + } else if (isUpdatingExistingActionRule(updatingActionDTOBuilder, existingActionDTO)) { + updateExistingActionRule(updatingActionDTOBuilder, existingActionDTO, tenantDomain); + } + } + + private boolean isAddingNewActionRule(ActionDTOBuilder updatingActionDTOBuilder, ActionDTO existingActionDTO) + throws ActionMgtException { + + return existingActionDTO.getActionRule() == null && updatingActionDTOBuilder.getActionRule() != null && + updatingActionDTOBuilder.getActionRule().getRule() != null; + } + + private boolean isRemovingExistingActionRule(ActionDTOBuilder updatingActionDTOBuilder, + ActionDTO existingActionDTO) throws ActionMgtException { + + return existingActionDTO.getActionRule() != null && updatingActionDTOBuilder.getActionRule() != null && + updatingActionDTOBuilder.getActionRule().getRule() == null; + } + + private boolean isUpdatingExistingActionRule(ActionDTOBuilder updatingActionDTOBuilder, + ActionDTO existingActionDTO) throws ActionMgtException { + + return existingActionDTO.getActionRule() != null && updatingActionDTOBuilder.getActionRule() != null && + updatingActionDTOBuilder.getActionRule().getRule() != null; + } + + private void updateExistingActionRule(ActionDTOBuilder updatingActionDTOBuilder, ActionDTO existingActionDTO, + String tenantDomain) throws ActionMgtException { + + try { + updatingActionDTOBuilder.getActionRule().getRule().setId(existingActionDTO.getActionRule().getId()); + ActionMgtServiceComponentHolder.getInstance() + .getRuleManagementService() + .updateRule(updatingActionDTOBuilder.getActionRule().getRule(), tenantDomain); + } catch (RuleManagementException e) { + throw new ActionMgtServerException("Error while updating the Rule associated with the Action.", e); } } diff --git a/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/dao/impl/ActionManagementDAOImpl.java b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/dao/impl/ActionManagementDAOImpl.java index 8026085a1e9b..61aa9800ada0 100644 --- a/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/dao/impl/ActionManagementDAOImpl.java +++ b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/dao/impl/ActionManagementDAOImpl.java @@ -481,12 +481,18 @@ private void addRuleReference(ActionDTO actionDTO, Integer tenantId) throws Acti private void updateRuleReference(ActionDTO updatingActionDTO, ActionDTO existingActionDTO, Integer tenantId) throws ActionMgtServerException { - if (existingActionDTO.getActionRule() == null && updatingActionDTO.getActionRule() != null) { - // This means a new action rule is added when updating the action. Add the rule reference. - addRuleReference(updatingActionDTO, tenantId); - } else if (existingActionDTO.getActionRule() != null && updatingActionDTO.getActionRule() == null) { - // This means the existing action rule is removed when updating the action. Remove the rule reference. - deleteRuleReference(updatingActionDTO, tenantId); + try { + if (existingActionDTO.getActionRule() == null && updatingActionDTO.getActionRule() != null && + updatingActionDTO.getActionRule().getRule() != null) { + // This means a new action rule is added when updating the action. Add the rule reference. + addRuleReference(updatingActionDTO, tenantId); + } else if (existingActionDTO.getActionRule() != null && updatingActionDTO.getActionRule() != null && + updatingActionDTO.getActionRule().getRule() == null) { + // This means the existing action rule is removed when updating the action. Remove the rule reference. + deleteRuleReference(updatingActionDTO, tenantId); + } + } catch (ActionMgtException e) { + throw new ActionMgtServerException("Error while updating the reference for the Rule in Action.", e); } } diff --git a/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/model/ActionRule.java b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/model/ActionRule.java index e84902cc178e..6f463a8567ce 100644 --- a/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/model/ActionRule.java +++ b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/model/ActionRule.java @@ -71,6 +71,16 @@ action status (active/inactive), returning state of the prior action in the chai private Rule getRuleFromRuleManagementService() throws ActionMgtServerException { + if (StringUtils.isBlank(id) || StringUtils.isBlank(tenantDomain)) { + /* + This could happen if the ActionRule is created without the Rule object. + That means the rule value is explicitly set to null. + In such cases, loading the Rule from the Rule Management Service is not expected. + This scenario is used to let the user remove a Rule from an Action via the Action update API. + */ + return null; + } + try { return ActionMgtServiceComponentHolder.getInstance() .getRuleManagementService() diff --git a/components/action-mgt/org.wso2.carbon.identity.action.management/src/test/java/org/wso2/carbon/identity/action/management/dao/ActionManagementDAOFacadeTest.java b/components/action-mgt/org.wso2.carbon.identity.action.management/src/test/java/org/wso2/carbon/identity/action/management/dao/ActionManagementDAOFacadeTest.java index a579156155b9..fc569f20ff12 100644 --- a/components/action-mgt/org.wso2.carbon.identity.action.management/src/test/java/org/wso2/carbon/identity/action/management/dao/ActionManagementDAOFacadeTest.java +++ b/components/action-mgt/org.wso2.carbon.identity.action.management/src/test/java/org/wso2/carbon/identity/action/management/dao/ActionManagementDAOFacadeTest.java @@ -456,7 +456,8 @@ public void testFailureInUpdateActionUpdatingRuleAtRuleManagementException() thr @Test(priority = 18) public void testUpdateActionRemovingRule() throws Exception { - ActionDTO updatingActionDTOWithoutRule = createActionDTOForPasswordUpdateAction(); + // In order to remove the rule from ActionRule create an ActionRule with a null Rule reference. + ActionDTO updatingActionDTOWithoutRule = createActionDTOForPasswordUpdateActionWithRule(null); mockActionPropertyResolver(testActionPropertyResolver); daoFacade.updateAction(updatingActionDTOWithoutRule, actionDTORetrieved, TENANT_ID); @@ -507,6 +508,24 @@ public void testUpdateActionAddingRule() throws Exception { } @Test(priority = 21) + public void testUpdateActionWithRuleWithoutUpdatingRule() throws Exception { + + Rule rule = mockRule(); + mockRuleManagementService(rule); + ActionDTO updatingActionDTO = createActionDTOForPasswordUpdateAction(); + ActionDTO expectedActionDTO = createActionDTOForPasswordUpdateActionWithRule(rule); + mockActionPropertyResolver(testActionPropertyResolver); + + daoFacade.updateAction(updatingActionDTO, actionDTORetrieved, TENANT_ID); + + actionDTORetrieved = daoFacade.getActionByActionId(PRE_UPDATE_PASSWORD_TYPE, PRE_UPDATE_PASSWORD_ACTION_ID, + TENANT_ID); + + verifyActionDTO(actionDTORetrieved, expectedActionDTO); + verifyActionDTORule(actionDTORetrieved, expectedActionDTO); + } + + @Test(priority = 22) public void testDeleteActionWithRule() throws ActionMgtException { mockActionPropertyResolver(testActionPropertyResolver); diff --git a/components/action-mgt/org.wso2.carbon.identity.action.management/src/test/java/org/wso2/carbon/identity/action/management/service/ActionManagementServiceImplTest.java b/components/action-mgt/org.wso2.carbon.identity.action.management/src/test/java/org/wso2/carbon/identity/action/management/service/ActionManagementServiceImplTest.java index 5fcc6fc3b1ef..d6f9bfe0e7e5 100644 --- a/components/action-mgt/org.wso2.carbon.identity.action.management/src/test/java/org/wso2/carbon/identity/action/management/service/ActionManagementServiceImplTest.java +++ b/components/action-mgt/org.wso2.carbon.identity.action.management/src/test/java/org/wso2/carbon/identity/action/management/service/ActionManagementServiceImplTest.java @@ -395,7 +395,7 @@ public void testGetActionsWithRulesByActionType() throws ActionMgtException { } @Test(priority = 17) - public void testUpdateActionWithRule() throws ActionMgtException, SecretManagementException { + public void testUpdateActionUpdatingRule() throws ActionMgtException, SecretManagementException { Action updatingAction = TestUtil.buildMockActionWithRule( TEST_ACTION_NAME_UPDATED, From a1a8a19401491bd4665fb6e0db7f5b9e233e6ec6 Mon Sep 17 00:00:00 2001 From: malithie Date: Wed, 8 Jan 2025 17:51:29 +0530 Subject: [PATCH 05/10] Remove redundant method. --- .../management/util/ActionDTOBuilder.java | 43 ------------------- 1 file changed, 43 deletions(-) diff --git a/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/util/ActionDTOBuilder.java b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/util/ActionDTOBuilder.java index 6f67b256098c..36564eb8ea3c 100644 --- a/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/util/ActionDTOBuilder.java +++ b/components/action-mgt/org.wso2.carbon.identity.action.management/src/main/java/org/wso2/carbon/identity/action/management/util/ActionDTOBuilder.java @@ -18,18 +18,13 @@ package org.wso2.carbon.identity.action.management.util; -import org.wso2.carbon.identity.action.management.constant.ActionMgtConstants; -import org.wso2.carbon.identity.action.management.exception.ActionMgtException; -import org.wso2.carbon.identity.action.management.exception.ActionMgtServerException; import org.wso2.carbon.identity.action.management.model.Action; import org.wso2.carbon.identity.action.management.model.ActionDTO; import org.wso2.carbon.identity.action.management.model.ActionRule; -import org.wso2.carbon.identity.action.management.model.Authentication; import org.wso2.carbon.identity.action.management.model.EndpointConfig; import java.util.HashMap; import java.util.Map; -import java.util.stream.Collectors; /** * Internal Builder class for ActionDTO. @@ -149,44 +144,6 @@ public ActionRule getActionRule() { return rule; } - public ActionDTOBuilder setEndpointAndProperties(Map properties) throws - ActionMgtException { - - Authentication authentication; - Authentication.Type authnType = - Authentication.Type.valueOf(properties.remove(ActionMgtConstants.AUTHN_TYPE_PROPERTY)); - switch (authnType) { - case BASIC: - authentication = new Authentication.BasicAuthBuilder( - properties.remove(Authentication.Property.USERNAME.getName()), - properties.remove(Authentication.Property.PASSWORD.getName())).build(); - break; - case BEARER: - authentication = new Authentication.BearerAuthBuilder( - properties.remove(Authentication.Property.ACCESS_TOKEN.getName())).build(); - break; - case API_KEY: - authentication = new Authentication.APIKeyAuthBuilder( - properties.remove(Authentication.Property.HEADER.getName()), - properties.remove(Authentication.Property.VALUE.getName())).build(); - break; - case NONE: - authentication = new Authentication.NoneAuthBuilder().build(); - break; - default: - throw new ActionMgtServerException("Authentication type is not defined for the Action Endpoint."); - } - - this.endpoint = new EndpointConfig.EndpointConfigBuilder() - .uri(properties.remove(ActionMgtConstants.URI_PROPERTY)) - .authentication(authentication) - .build(); - // Add remaining properties as action properties. - this.properties = properties.entrySet().stream() - .collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue)); - return this; - } - public ActionDTOBuilder properties(Map properties) { this.properties = properties; From 932958b7c3248b9b4a2d6f6d536aea7f7da4ed54 Mon Sep 17 00:00:00 2001 From: Shan Chathusanda Jayathilaka Date: Tue, 17 Dec 2024 23:46:30 +0530 Subject: [PATCH 06/10] Restrict inbound protocols for the sub organization applications --- .../mgt/ApplicationManagementServiceImpl.java | 18 +- .../ApplicationManagementServiceImplTest.java | 161 ++++++++++++++---- 2 files changed, 141 insertions(+), 38 deletions(-) diff --git a/components/application-mgt/org.wso2.carbon.identity.application.mgt/src/main/java/org/wso2/carbon/identity/application/mgt/ApplicationManagementServiceImpl.java b/components/application-mgt/org.wso2.carbon.identity.application.mgt/src/main/java/org/wso2/carbon/identity/application/mgt/ApplicationManagementServiceImpl.java index c03f5d156af4..1917f3f1f28f 100644 --- a/components/application-mgt/org.wso2.carbon.identity.application.mgt/src/main/java/org/wso2/carbon/identity/application/mgt/ApplicationManagementServiceImpl.java +++ b/components/application-mgt/org.wso2.carbon.identity.application.mgt/src/main/java/org/wso2/carbon/identity/application/mgt/ApplicationManagementServiceImpl.java @@ -94,6 +94,7 @@ import org.wso2.carbon.identity.organization.management.service.OrganizationManager; import org.wso2.carbon.identity.organization.management.service.exception.OrganizationManagementException; import org.wso2.carbon.identity.organization.management.service.exception.OrganizationManagementServerException; +import org.wso2.carbon.identity.organization.management.service.util.OrganizationManagementUtil; import org.wso2.carbon.identity.role.v2.mgt.core.RoleConstants; import org.wso2.carbon.identity.role.v2.mgt.core.RoleManagementService; import org.wso2.carbon.identity.role.v2.mgt.core.exception.IdentityRoleManagementException; @@ -2667,7 +2668,7 @@ public String createApplication(ApplicationDTO applicationModel, String tenantDo try { ServiceProvider application = applicationModel.getServiceProvider(); addedInbounds = addInboundAuthenticationProtocolsToApplication( - application, applicationModel.getInboundProtocolConfigurationDto()); + application, applicationModel.getInboundProtocolConfigurationDto(), tenantDomain); return createApplication(application, tenantDomain, username); } catch (IdentityApplicationManagementException identityApplicationManagementException) { @@ -2683,7 +2684,7 @@ public String createApplication(ApplicationDTO applicationModel, String tenantDo } private List addInboundAuthenticationProtocolsToApplication( - ServiceProvider application, InboundProtocolsDTO inboundProtocolsModel) + ServiceProvider application, InboundProtocolsDTO inboundProtocolsModel, String tenantDomain) throws IdentityApplicationManagementException { if (inboundProtocolsModel == null) { @@ -2718,10 +2719,15 @@ private List addInboundAuthenticationProtoco } InboundAuthenticationConfig alreadyAddedInboundConfigs = application.getInboundAuthenticationConfig(); InboundAuthenticationConfig inboundAuthConfig = new InboundAuthenticationConfig(); - if (alreadyAddedInboundConfigs != null) { - List alreadyAddedInbounds = - Arrays.asList(alreadyAddedInboundConfigs.getInboundAuthenticationRequestConfigs()); - addedInbounds.addAll(alreadyAddedInbounds); + try { + if (alreadyAddedInboundConfigs != null && !OrganizationManagementUtil.isOrganization(tenantDomain)) { + List alreadyAddedInbounds = + Arrays.asList(alreadyAddedInboundConfigs.getInboundAuthenticationRequestConfigs()); + addedInbounds.addAll(alreadyAddedInbounds); + } + } catch (OrganizationManagementException e) { + throw new IdentityApplicationManagementException("Error while checking the organization status of the " + + "application: " + application.getApplicationName(), e); } inboundAuthConfig.setInboundAuthenticationRequestConfigs( addedInbounds.toArray(new InboundAuthenticationRequestConfig[0]) diff --git a/components/application-mgt/org.wso2.carbon.identity.application.mgt/src/test/java/org/wso2/carbon/identity/application/mgt/ApplicationManagementServiceImplTest.java b/components/application-mgt/org.wso2.carbon.identity.application.mgt/src/test/java/org/wso2/carbon/identity/application/mgt/ApplicationManagementServiceImplTest.java index 78ca8e755346..46c556a07b83 100644 --- a/components/application-mgt/org.wso2.carbon.identity.application.mgt/src/test/java/org/wso2/carbon/identity/application/mgt/ApplicationManagementServiceImplTest.java +++ b/components/application-mgt/org.wso2.carbon.identity.application.mgt/src/test/java/org/wso2/carbon/identity/application/mgt/ApplicationManagementServiceImplTest.java @@ -84,6 +84,7 @@ import org.wso2.carbon.identity.organization.management.service.OrganizationManager; import org.wso2.carbon.identity.organization.management.service.exception.OrganizationManagementException; import org.wso2.carbon.identity.organization.management.service.exception.OrganizationManagementServerException; +import org.wso2.carbon.identity.organization.management.service.util.OrganizationManagementUtil; import org.wso2.carbon.identity.secret.mgt.core.SecretManager; import org.wso2.carbon.identity.secret.mgt.core.SecretManagerImpl; import org.wso2.carbon.identity.secret.mgt.core.SecretResolveManager; @@ -155,6 +156,7 @@ public class ApplicationManagementServiceImplTest { private static final String APPLICATION_TEMPLATE_VERSION_2 = "v1.0.1"; private static final String APPLICATION_INBOUND_AUTH_KEY_1 = "Test_auth_key1"; private static final String APPLICATION_INBOUND_AUTH_KEY_2 = "Test_auth_key2"; + private static final String APPLICATION_INBOUND_AUTH_KEY_OAUTH2 = "auth key"; private static final String APPLICATION_NAME_FILTER_1 = "name ew application1"; private static final String APPLICATION_NAME_FILTER_2 = "name co 2"; private static final String APPLICATION_NAME_FILTER_3 = "name ew application3"; @@ -617,9 +619,19 @@ public void testGetCountOfApplicationsWithFilterExcludingSystemPortals(String fi // Deleting all added applications. applicationManagementService.deleteApplications(SUPER_TENANT_ID); } - - @Test - public void testCreateAndGetApplicationWithProtocolService() throws IdentityApplicationManagementException { + + @DataProvider(name = "organizationDataProvider") + public Object[][] getOrganizationDataProvider() { + + return new Object[][]{ + {false}, + {true} + }; + } + + @Test(dataProvider = "organizationDataProvider") + public void testCreateAndGetApplicationWithProtocolService(boolean isOrganization) throws + IdentityApplicationManagementException { ApplicationDTO.Builder applicationDTOBuilder = new ApplicationDTO.Builder(); ServiceProvider inputSP1 = new ServiceProvider(); @@ -632,48 +644,83 @@ public void testCreateAndGetApplicationWithProtocolService() throws IdentityAppl InboundProtocolsDTO inbounds = setInboundProtocol(); inbounds.addProtocolConfiguration(() -> ApplicationConstants.StandardInboundProtocols.SAML2); applicationDTOBuilder.inboundProtocolConfigurationDto(inbounds); - - // Mocking protocol service. - ApplicationManagementServiceComponentHolder.getInstance().addApplicationInboundAuthConfigHandler( - customSAML2InboundAuthConfigHandler()); - - // Creating application. - applicationManagementService.createApplication(applicationDTOBuilder.build(), SUPER_TENANT_DOMAIN_NAME, - USERNAME_1); + + try (MockedStatic organizationMgtUtilMockedStatic = + mockStatic(OrganizationManagementUtil.class)) { + organizationMgtUtilMockedStatic.when(() -> OrganizationManagementUtil.isOrganization(anyString())). + thenReturn(isOrganization); + // Mocking protocol service. + ApplicationInboundAuthConfigHandler customSAML2InboundAuthConfigHandler = + customSAML2InboundAuthConfigHandler(isOrganization); + ApplicationInboundAuthConfigHandler customOAuth2InboundAuthConfigHandler = + customOAuth2InboundAuthConfigHandler(); + ApplicationManagementServiceComponentHolder.getInstance().addApplicationInboundAuthConfigHandler( + customSAML2InboundAuthConfigHandler); + if (isOrganization) { + ApplicationManagementServiceComponentHolder.getInstance().addApplicationInboundAuthConfigHandler( + customOAuth2InboundAuthConfigHandler); + } + // Creating application. + applicationManagementService.createApplication(applicationDTOBuilder.build(), SUPER_TENANT_DOMAIN_NAME, + USERNAME_1); + ApplicationManagementServiceComponentHolder.getInstance().removeApplicationInboundConfigHandler( + customSAML2InboundAuthConfigHandler); + ApplicationManagementServiceComponentHolder.getInstance().removeApplicationInboundConfigHandler( + customOAuth2InboundAuthConfigHandler); + } ServiceProvider applicationByResourceId = applicationManagementService.getApplicationByResourceId(inputSP1 .getApplicationResourceId(), SUPER_TENANT_DOMAIN_NAME); Assert.assertEquals(applicationByResourceId.getApplicationName(), APPLICATION_NAME_1); - // There should be 2 inbound protocol configurations. The one that already exists and the one that is created. - Assert.assertEquals(applicationByResourceId.getInboundAuthenticationConfig() - .getInboundAuthenticationRequestConfigs().length, 2); - for (InboundAuthenticationRequestConfig inboundAuthenticationRequestConfig : applicationByResourceId - .getInboundAuthenticationConfig().getInboundAuthenticationRequestConfigs()) { - // This is the existing inbound protocol configuration. Validate the existing inbound protocol - // configuration is unchanged. - if (ApplicationConstants.StandardInboundProtocols.OAUTH2.equals(inboundAuthenticationRequestConfig - .getInboundAuthType())) { - Assert.assertEquals(inboundAuthenticationRequestConfig.getInboundAuthKey(), - "auth key"); - } - // This is the newly created inbound protocol configuration. Validate the newly created inbound protocol - // is added. - if (ApplicationConstants.StandardInboundProtocols.SAML2.equals(inboundAuthenticationRequestConfig - .getInboundAuthType())) { - Assert.assertEquals(inboundAuthenticationRequestConfig.getInboundAuthKey(), - APPLICATION_INBOUND_AUTH_KEY_1); + if (!isOrganization) { + /* + There should be 2 inbound protocol configurations. The one that already exists and the one that + is created. + */ + Assert.assertEquals(applicationByResourceId.getInboundAuthenticationConfig() + .getInboundAuthenticationRequestConfigs().length, 2); + for (InboundAuthenticationRequestConfig inboundAuthenticationRequestConfig : applicationByResourceId + .getInboundAuthenticationConfig().getInboundAuthenticationRequestConfigs()) { + /* + This is the existing inbound protocol configuration. Validate the existing inbound protocol + configuration is unchanged. + */ + if (ApplicationConstants.StandardInboundProtocols.OAUTH2.equals(inboundAuthenticationRequestConfig + .getInboundAuthType())) { + Assert.assertEquals(inboundAuthenticationRequestConfig.getInboundAuthKey(), + APPLICATION_INBOUND_AUTH_KEY_OAUTH2); + } + /* + This is the newly created inbound protocol configuration. Validate the newly created inbound + protocol is added. + */ + if (ApplicationConstants.StandardInboundProtocols.SAML2.equals(inboundAuthenticationRequestConfig + .getInboundAuthType())) { + Assert.assertEquals(inboundAuthenticationRequestConfig.getInboundAuthKey(), + APPLICATION_INBOUND_AUTH_KEY_1); + } } + } else { + /* + There should be 1 inbound protocol configurations since in the sub organization level, saml inbound + protocol configurations are not allowed. + */ + Assert.assertEquals(applicationByResourceId.getInboundAuthenticationConfig() + .getInboundAuthenticationRequestConfigs().length, 1); + InboundAuthenticationRequestConfig inboundAuthenticationRequestConfig = applicationByResourceId + .getInboundAuthenticationConfig().getInboundAuthenticationRequestConfigs()[0]; + Assert.assertEquals(inboundAuthenticationRequestConfig.getInboundAuthKey(), + APPLICATION_INBOUND_AUTH_KEY_OAUTH2); } - applicationManagementService.deleteApplications(SUPER_TENANT_ID); } - private ApplicationInboundAuthConfigHandler customSAML2InboundAuthConfigHandler() { + private ApplicationInboundAuthConfigHandler customSAML2InboundAuthConfigHandler(boolean isOrganization) { return new ApplicationInboundAuthConfigHandler() { @Override public boolean canHandle(InboundProtocolsDTO inboundProtocolsDTO) { - return true; + return !isOrganization; } @Override @@ -717,6 +764,56 @@ public InboundProtocolConfigurationDTO handleConfigRetrieval(String appId) }; } + private ApplicationInboundAuthConfigHandler customOAuth2InboundAuthConfigHandler() { + + return new ApplicationInboundAuthConfigHandler() { + @Override + public boolean canHandle(InboundProtocolsDTO inboundProtocolsDTO) { + + return true; + } + + @Override + public boolean canHandle(String protocolName) { + + return ApplicationConstants.StandardInboundProtocols.OAUTH2.equals(protocolName); + } + + @Override + public InboundAuthenticationRequestConfig handleConfigCreation(ServiceProvider serviceProvider, + InboundProtocolsDTO inboundProtocolsDTO) + throws IdentityApplicationManagementException { + + InboundAuthenticationRequestConfig inboundAuthenticationRequestConfig = new + InboundAuthenticationRequestConfig(); + inboundAuthenticationRequestConfig.setInboundAuthKey(APPLICATION_INBOUND_AUTH_KEY_OAUTH2); + inboundAuthenticationRequestConfig.setInboundAuthType( + ApplicationConstants.StandardInboundProtocols.OAUTH2); + return inboundAuthenticationRequestConfig; + } + + @Override + public InboundAuthenticationRequestConfig handleConfigUpdate( + ServiceProvider application, InboundProtocolConfigurationDTO inboundProtocolsDTO) + throws IdentityApplicationManagementException { + + return null; + } + + @Override + public void handleConfigDeletion(String appId) throws IdentityApplicationManagementException { + + } + + @Override + public InboundProtocolConfigurationDTO handleConfigRetrieval(String appId) + throws IdentityApplicationManagementException { + + return null; + } + }; + } + @DataProvider(name = "getSAMLApplicationDataProvider") public Object[][] getSAMLApplicationDataProvider() { From c8e891b35ab689ee7e682a5b83ae6e3f01612ed3 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 9 Jan 2025 11:36:41 +0000 Subject: [PATCH 07/10] [WSO2 Release] [Jenkins #8235] [Release 7.7.85] prepare release v7.7.85 --- .../org.wso2.carbon.identity.action.execution/pom.xml | 2 +- .../org.wso2.carbon.identity.action.management/pom.xml | 2 +- components/action-mgt/pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.api.resource.mgt/pom.xml | 2 +- components/api-resource-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.application.common/pom.xml | 2 +- .../org.wso2.carbon.identity.application.mgt.ui/pom.xml | 2 +- .../org.wso2.carbon.identity.application.mgt/pom.xml | 2 +- components/application-mgt/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- components/authentication-framework/pom.xml | 2 +- components/captcha-mgt/org.wso2.carbon.captcha.mgt/pom.xml | 2 +- components/captcha-mgt/pom.xml | 2 +- components/carbon-authenticators/pom.xml | 2 +- .../org.wso2.carbon.identity.authenticator.thrift/pom.xml | 2 +- components/carbon-authenticators/thrift-authenticator/pom.xml | 2 +- .../org.wso2.carbon.identity.central.log.mgt/pom.xml | 2 +- components/central-logger/pom.xml | 2 +- .../org.wso2.carbon.identity.certificate.management/pom.xml | 2 +- components/certificate-mgt/pom.xml | 2 +- components/claim-mgt/org.wso2.carbon.claim.mgt.ui/pom.xml | 2 +- components/claim-mgt/org.wso2.carbon.claim.mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.claim.metadata.mgt.ui/pom.xml | 2 +- .../org.wso2.carbon.identity.claim.metadata.mgt/pom.xml | 2 +- components/claim-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.client.attestation.mgt/pom.xml | 2 +- components/client-attestation-mgt/pom.xml | 2 +- .../pom.xml | 4 ++-- .../org.wso2.carbon.identity.configuration.mgt.core/pom.xml | 2 +- .../pom.xml | 2 +- components/configuration-mgt/pom.xml | 2 +- .../consent-mgt/org.wso2.carbon.identity.consent.mgt/pom.xml | 2 +- components/consent-mgt/pom.xml | 2 +- .../pom.xml | 2 +- components/consent-server-configs-mgt/pom.xml | 2 +- .../cors-mgt/org.wso2.carbon.identity.cors.mgt.core/pom.xml | 2 +- components/cors-mgt/pom.xml | 2 +- .../org.wso2.carbon.directory.server.manager.common/pom.xml | 2 +- .../org.wso2.carbon.directory.server.manager.ui/pom.xml | 2 +- .../org.wso2.carbon.directory.server.manager/pom.xml | 2 +- components/directory-server-manager/pom.xml | 2 +- .../org.wso2.carbon.identity.extension.mgt/pom.xml | 2 +- components/extension-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.functions.library.mgt.ui/pom.xml | 2 +- .../org.wso2.carbon.identity.functions.library.mgt/pom.xml | 2 +- components/functions-library-mgt/pom.xml | 2 +- .../identity-core/org.wso2.carbon.identity.base/pom.xml | 2 +- .../identity-core/org.wso2.carbon.identity.core.ui/pom.xml | 2 +- .../identity-core/org.wso2.carbon.identity.core/pom.xml | 2 +- components/identity-core/pom.xml | 2 +- .../identity-event/org.wso2.carbon.identity.event/pom.xml | 2 +- components/identity-event/pom.xml | 2 +- .../org.wso2.carbon.identity.mgt.endpoint.util/pom.xml | 2 +- .../identity-mgt/org.wso2.carbon.identity.mgt.ui/pom.xml | 2 +- components/identity-mgt/org.wso2.carbon.identity.mgt/pom.xml | 2 +- components/identity-mgt/pom.xml | 2 +- components/idp-mgt/org.wso2.carbon.idp.mgt.ui/pom.xml | 2 +- components/idp-mgt/org.wso2.carbon.idp.mgt/pom.xml | 2 +- components/idp-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.input.validation.mgt/pom.xml | 2 +- components/input-validation-mgt/pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.unique.claim.mgt/pom.xml | 2 +- components/multi-attribute-login/pom.xml | 2 +- .../org.wso2.carbon.identity.notification.mgt/pom.xml | 2 +- components/notification-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.provisioning/pom.xml | 2 +- components/provisioning/pom.xml | 2 +- .../role-mgt/org.wso2.carbon.identity.role.mgt.core/pom.xml | 2 +- .../org.wso2.carbon.identity.role.v2.mgt.core/pom.xml | 2 +- components/role-mgt/pom.xml | 2 +- .../rule-mgt/org.wso2.carbon.identity.rule.management/pom.xml | 2 +- .../rule-mgt/org.wso2.carbon.identity.rule.metadata/pom.xml | 2 +- components/rule-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.secret.mgt.core/pom.xml | 2 +- components/secret-mgt/pom.xml | 2 +- .../security-mgt/org.wso2.carbon.security.mgt.ui/pom.xml | 2 +- components/security-mgt/org.wso2.carbon.security.mgt/pom.xml | 2 +- components/security-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.template.mgt.ui/pom.xml | 2 +- .../org.wso2.carbon.identity.template.mgt/pom.xml | 2 +- components/template-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.trusted.app.mgt/pom.xml | 2 +- components/trusted-app-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.user.functionality.mgt/pom.xml | 2 +- components/user-functionality-mgt/pom.xml | 2 +- .../user-mgt/org.wso2.carbon.identity.user.profile.ui/pom.xml | 2 +- .../user-mgt/org.wso2.carbon.identity.user.profile/pom.xml | 2 +- .../org.wso2.carbon.identity.user.registration/pom.xml | 2 +- components/user-mgt/org.wso2.carbon.role.mgt.ui/pom.xml | 2 +- components/user-mgt/org.wso2.carbon.user.mgt.common/pom.xml | 2 +- components/user-mgt/org.wso2.carbon.user.mgt.ui/pom.xml | 2 +- components/user-mgt/org.wso2.carbon.user.mgt/pom.xml | 2 +- components/user-mgt/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.user.store.configuration/pom.xml | 2 +- .../org.wso2.carbon.identity.user.store.count/pom.xml | 2 +- components/user-store/pom.xml | 2 +- .../pom.xml | 2 +- features/action-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/api-resource-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.application.mgt.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- features/application-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/authentication-framework/pom.xml | 2 +- features/carbon-authenticators/pom.xml | 2 +- .../pom.xml | 2 +- features/carbon-authenticators/thrift-authenticator/pom.xml | 2 +- features/categories/authorization/pom.xml | 2 +- features/categories/inbound-authentication/pom.xml | 2 +- features/categories/inbound-provisioning/pom.xml | 2 +- features/categories/keystore-mgt/pom.xml | 2 +- features/categories/notification-mgt/pom.xml | 2 +- features/categories/outbound-authentication/pom.xml | 2 +- features/categories/outbound-provisioning/pom.xml | 2 +- features/categories/pom.xml | 2 +- features/categories/user-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/central-logger/pom.xml | 2 +- .../pom.xml | 2 +- features/certificate-mgt/pom.xml | 2 +- features/claim-mgt/org.wso2.carbon.claim.mgt.feature/pom.xml | 2 +- .../org.wso2.carbon.claim.mgt.server.feature/pom.xml | 2 +- .../claim-mgt/org.wso2.carbon.claim.mgt.ui.feature/pom.xml | 2 +- features/claim-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/client-attestation-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/configuration-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/consent-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/consent-server-configs-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.cors.mgt.server.feature/pom.xml | 2 +- features/cors-mgt/pom.xml | 2 +- .../org.wso2.carbon.directory.service.mgr.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.directory.service.mgr.ui.feature/pom.xml | 2 +- features/directory-server-manager/pom.xml | 2 +- .../org.wso2.carbon.identity.extension.mgt.feature/pom.xml | 2 +- features/extension-mgt/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- features/functions-library-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.core.feature/pom.xml | 2 +- .../org.wso2.carbon.identity.core.server.feature/pom.xml | 2 +- .../org.wso2.carbon.identity.core.ui.feature/pom.xml | 2 +- features/identity-core/pom.xml | 2 +- .../org.wso2.carbon.identity.event.feature/pom.xml | 2 +- .../org.wso2.carbon.identity.event.server.feature/pom.xml | 2 +- features/identity-event/pom.xml | 2 +- .../identity-mgt/org.wso2.carbon.identity.mgt.feature/pom.xml | 2 +- .../org.wso2.carbon.identity.mgt.server.feature/pom.xml | 2 +- .../org.wso2.carbon.identity.mgt.ui.feature/pom.xml | 2 +- features/identity-mgt/pom.xml | 2 +- features/idp-mgt/org.wso2.carbon.idp.mgt.feature/pom.xml | 2 +- .../idp-mgt/org.wso2.carbon.idp.mgt.server.feature/pom.xml | 2 +- features/idp-mgt/org.wso2.carbon.idp.mgt.ui.feature/pom.xml | 2 +- features/idp-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/input-validation-mgt/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- features/multi-attribute-login/pom.xml | 2 +- .../org.wso2.carbon.identity.notification.mgt.feature/pom.xml | 2 +- .../pom.xml | 2 +- features/notification-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/provisioning/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- features/role-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/rule-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/secret-mgt/pom.xml | 2 +- .../security-mgt/org.wso2.carbon.security.mgt.feature/pom.xml | 2 +- .../org.wso2.carbon.security.mgt.server.feature/pom.xml | 2 +- .../org.wso2.carbon.security.mgt.ui.feature/pom.xml | 2 +- features/security-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.template.mgt.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.template.mgt.ui.feature/pom.xml | 2 +- features/template-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/trusted-app-mgt/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- features/user-functionality-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.user.profile.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.user.profile.ui.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- features/user-mgt/org.wso2.carbon.role.mgt.ui.feature/pom.xml | 2 +- features/user-mgt/org.wso2.carbon.user.mgt.feature/pom.xml | 2 +- .../user-mgt/org.wso2.carbon.user.mgt.server.feature/pom.xml | 2 +- features/user-mgt/org.wso2.carbon.user.mgt.ui.feature/pom.xml | 2 +- features/user-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/user-store/pom.xml | 2 +- pom.xml | 4 ++-- service-stubs/identity/org.wso2.carbon.claim.mgt.stub/pom.xml | 2 +- .../org.wso2.carbon.directory.server.manager.stub/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.application.mgt.stub/pom.xml | 2 +- .../org.wso2.carbon.identity.claim.metadata.mgt.stub/pom.xml | 2 +- .../pom.xml | 2 +- .../identity/org.wso2.carbon.identity.governance.stub/pom.xml | 2 +- .../identity/org.wso2.carbon.identity.mgt.stub/pom.xml | 2 +- .../org.wso2.carbon.identity.user.profile.stub/pom.xml | 2 +- .../org.wso2.carbon.identity.user.registration.stub/pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.user.store.count.stub/pom.xml | 2 +- service-stubs/identity/org.wso2.carbon.idp.mgt.stub/pom.xml | 2 +- .../identity/org.wso2.carbon.security.mgt.stub/pom.xml | 2 +- service-stubs/identity/org.wso2.carbon.user.mgt.stub/pom.xml | 2 +- service-stubs/identity/pom.xml | 2 +- test-utils/org.wso2.carbon.identity.testutil/pom.xml | 2 +- 228 files changed, 230 insertions(+), 230 deletions(-) diff --git a/components/action-mgt/org.wso2.carbon.identity.action.execution/pom.xml b/components/action-mgt/org.wso2.carbon.identity.action.execution/pom.xml index 6f747d807b63..f2ee340a77a1 100644 --- a/components/action-mgt/org.wso2.carbon.identity.action.execution/pom.xml +++ b/components/action-mgt/org.wso2.carbon.identity.action.execution/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework action-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/action-mgt/org.wso2.carbon.identity.action.management/pom.xml b/components/action-mgt/org.wso2.carbon.identity.action.management/pom.xml index fd8839549f6c..604e8312c8b9 100644 --- a/components/action-mgt/org.wso2.carbon.identity.action.management/pom.xml +++ b/components/action-mgt/org.wso2.carbon.identity.action.management/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework action-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/action-mgt/pom.xml b/components/action-mgt/pom.xml index 7a9a506fbe61..ec7c84e09ea8 100644 --- a/components/action-mgt/pom.xml +++ b/components/action-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.collection.mgt/pom.xml b/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.collection.mgt/pom.xml index 0fc02afe8cbb..4b745ec7f303 100644 --- a/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.collection.mgt/pom.xml +++ b/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.collection.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework api-resource-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt/pom.xml b/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt/pom.xml index 59036ea2be74..31db3d52849f 100644 --- a/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt/pom.xml +++ b/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework api-resource-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml org.wso2.carbon.identity.api.resource.mgt diff --git a/components/api-resource-mgt/pom.xml b/components/api-resource-mgt/pom.xml index 1e352bccb136..079ac79ded6f 100644 --- a/components/api-resource-mgt/pom.xml +++ b/components/api-resource-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/application-mgt/org.wso2.carbon.identity.application.common/pom.xml b/components/application-mgt/org.wso2.carbon.identity.application.common/pom.xml index b3e482815a55..682bf46e1f33 100644 --- a/components/application-mgt/org.wso2.carbon.identity.application.common/pom.xml +++ b/components/application-mgt/org.wso2.carbon.identity.application.common/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.framework application-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/application-mgt/org.wso2.carbon.identity.application.mgt.ui/pom.xml b/components/application-mgt/org.wso2.carbon.identity.application.mgt.ui/pom.xml index 6bb266d334c1..189e8d0dfac6 100644 --- a/components/application-mgt/org.wso2.carbon.identity.application.mgt.ui/pom.xml +++ b/components/application-mgt/org.wso2.carbon.identity.application.mgt.ui/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework application-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/application-mgt/org.wso2.carbon.identity.application.mgt/pom.xml b/components/application-mgt/org.wso2.carbon.identity.application.mgt/pom.xml index 5bb7835a5dcf..efad579efdb1 100644 --- a/components/application-mgt/org.wso2.carbon.identity.application.mgt/pom.xml +++ b/components/application-mgt/org.wso2.carbon.identity.application.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework application-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml org.wso2.carbon.identity.application.mgt diff --git a/components/application-mgt/pom.xml b/components/application-mgt/pom.xml index dfa29ef01806..bce5df14b828 100644 --- a/components/application-mgt/pom.xml +++ b/components/application-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/authentication-framework/org.wso2.carbon.identity.application.authentication.endpoint.util/pom.xml b/components/authentication-framework/org.wso2.carbon.identity.application.authentication.endpoint.util/pom.xml index a9288756912d..83ca90004560 100644 --- a/components/authentication-framework/org.wso2.carbon.identity.application.authentication.endpoint.util/pom.xml +++ b/components/authentication-framework/org.wso2.carbon.identity.application.authentication.endpoint.util/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework authentication-framework - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/authentication-framework/org.wso2.carbon.identity.application.authentication.framework/pom.xml b/components/authentication-framework/org.wso2.carbon.identity.application.authentication.framework/pom.xml index 2a4fc8062e0c..c3fa33594fcc 100644 --- a/components/authentication-framework/org.wso2.carbon.identity.application.authentication.framework/pom.xml +++ b/components/authentication-framework/org.wso2.carbon.identity.application.authentication.framework/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework authentication-framework - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/authentication-framework/pom.xml b/components/authentication-framework/pom.xml index b1a35ef2563f..b0746f454913 100644 --- a/components/authentication-framework/pom.xml +++ b/components/authentication-framework/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/captcha-mgt/org.wso2.carbon.captcha.mgt/pom.xml b/components/captcha-mgt/org.wso2.carbon.captcha.mgt/pom.xml index c75a3bb61ecb..5549584513e7 100644 --- a/components/captcha-mgt/org.wso2.carbon.captcha.mgt/pom.xml +++ b/components/captcha-mgt/org.wso2.carbon.captcha.mgt/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework captcha-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/captcha-mgt/pom.xml b/components/captcha-mgt/pom.xml index 487344bbc8fd..06714ec8605e 100644 --- a/components/captcha-mgt/pom.xml +++ b/components/captcha-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/carbon-authenticators/pom.xml b/components/carbon-authenticators/pom.xml index 09a3cb4b5372..560f0fcf8f8b 100644 --- a/components/carbon-authenticators/pom.xml +++ b/components/carbon-authenticators/pom.xml @@ -17,7 +17,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.authenticator.thrift/pom.xml b/components/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.authenticator.thrift/pom.xml index af088ccee1f5..0cfdab1ffa5c 100644 --- a/components/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.authenticator.thrift/pom.xml +++ b/components/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.authenticator.thrift/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework thrift-authenticator - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/carbon-authenticators/thrift-authenticator/pom.xml b/components/carbon-authenticators/thrift-authenticator/pom.xml index 9acc125a0269..bf38950e2c2d 100644 --- a/components/carbon-authenticators/thrift-authenticator/pom.xml +++ b/components/carbon-authenticators/thrift-authenticator/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework carbon-authenticators - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/central-logger/org.wso2.carbon.identity.central.log.mgt/pom.xml b/components/central-logger/org.wso2.carbon.identity.central.log.mgt/pom.xml index 4e0c9df725f8..fcf8c9ac5872 100644 --- a/components/central-logger/org.wso2.carbon.identity.central.log.mgt/pom.xml +++ b/components/central-logger/org.wso2.carbon.identity.central.log.mgt/pom.xml @@ -21,7 +21,7 @@ central-logger org.wso2.carbon.identity.framework - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml 4.0.0 diff --git a/components/central-logger/pom.xml b/components/central-logger/pom.xml index c5eb15198f10..f4e6cbe8c5d4 100644 --- a/components/central-logger/pom.xml +++ b/components/central-logger/pom.xml @@ -21,7 +21,7 @@ identity-framework org.wso2.carbon.identity.framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/certificate-mgt/org.wso2.carbon.identity.certificate.management/pom.xml b/components/certificate-mgt/org.wso2.carbon.identity.certificate.management/pom.xml index 2a04884f7405..6ea544338cb0 100644 --- a/components/certificate-mgt/org.wso2.carbon.identity.certificate.management/pom.xml +++ b/components/certificate-mgt/org.wso2.carbon.identity.certificate.management/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework certificate-mgt - 7.7.85-SNAPSHOT + 7.7.85 4.0.0 diff --git a/components/certificate-mgt/pom.xml b/components/certificate-mgt/pom.xml index d684d5e8f2a6..653ddf6f4558 100644 --- a/components/certificate-mgt/pom.xml +++ b/components/certificate-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/claim-mgt/org.wso2.carbon.claim.mgt.ui/pom.xml b/components/claim-mgt/org.wso2.carbon.claim.mgt.ui/pom.xml index a426fd90787b..575c0b6e215a 100644 --- a/components/claim-mgt/org.wso2.carbon.claim.mgt.ui/pom.xml +++ b/components/claim-mgt/org.wso2.carbon.claim.mgt.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework claim-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/claim-mgt/org.wso2.carbon.claim.mgt/pom.xml b/components/claim-mgt/org.wso2.carbon.claim.mgt/pom.xml index 5be5a74d45df..acddc6c3fb76 100644 --- a/components/claim-mgt/org.wso2.carbon.claim.mgt/pom.xml +++ b/components/claim-mgt/org.wso2.carbon.claim.mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework claim-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt.ui/pom.xml b/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt.ui/pom.xml index 3e02d6e4e51c..7f6300af2a5d 100644 --- a/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt.ui/pom.xml +++ b/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt.ui/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework claim-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt/pom.xml b/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt/pom.xml index 8930007eb31e..30edfeeb1055 100644 --- a/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt/pom.xml +++ b/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework claim-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/claim-mgt/pom.xml b/components/claim-mgt/pom.xml index 46f9e77a9fc8..6a7fc470aa0a 100644 --- a/components/claim-mgt/pom.xml +++ b/components/claim-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt/pom.xml b/components/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt/pom.xml index 8ab0411664f3..ae097784a15c 100644 --- a/components/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt/pom.xml +++ b/components/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt/pom.xml @@ -23,7 +23,7 @@ org.wso2.carbon.identity.framework client-attestation-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/client-attestation-mgt/pom.xml b/components/client-attestation-mgt/pom.xml index d67842d32c0e..6a6ca5396f58 100644 --- a/components/client-attestation-mgt/pom.xml +++ b/components/client-attestation-mgt/pom.xml @@ -23,7 +23,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/configuration-mgt/org.wso2.carbon.identity.api.server.configuration.mgt/pom.xml b/components/configuration-mgt/org.wso2.carbon.identity.api.server.configuration.mgt/pom.xml index 8fe716055313..17c3a084bb2f 100644 --- a/components/configuration-mgt/org.wso2.carbon.identity.api.server.configuration.mgt/pom.xml +++ b/components/configuration-mgt/org.wso2.carbon.identity.api.server.configuration.mgt/pom.xml @@ -23,11 +23,11 @@ org.wso2.carbon.identity.framework configuration-mgt - 7.7.85-SNAPSHOT + 7.7.85 org.wso2.carbon.identity.api.server.configuration.mgt - 7.7.85-SNAPSHOT + 7.7.85 jar WSO2 Carbon - Configuration Management API Identity Configuration Management API diff --git a/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.core/pom.xml b/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.core/pom.xml index 61a02f1c0ac7..f56ecc88cfa1 100644 --- a/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.core/pom.xml +++ b/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.core/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework configuration-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.endpoint/pom.xml b/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.endpoint/pom.xml index c77cb51b22ee..879f8f4fe704 100644 --- a/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.endpoint/pom.xml +++ b/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.endpoint/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework configuration-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/configuration-mgt/pom.xml b/components/configuration-mgt/pom.xml index 78fe74747d8b..4be0d27c01fc 100644 --- a/components/configuration-mgt/pom.xml +++ b/components/configuration-mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/consent-mgt/org.wso2.carbon.identity.consent.mgt/pom.xml b/components/consent-mgt/org.wso2.carbon.identity.consent.mgt/pom.xml index 97928c464eca..3f378d9ac7cd 100644 --- a/components/consent-mgt/org.wso2.carbon.identity.consent.mgt/pom.xml +++ b/components/consent-mgt/org.wso2.carbon.identity.consent.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework consent-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/consent-mgt/pom.xml b/components/consent-mgt/pom.xml index dd757cc3ba0e..129fbd4ae512 100644 --- a/components/consent-mgt/pom.xml +++ b/components/consent-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt/pom.xml b/components/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt/pom.xml index c427b252e429..c70870a589c0 100644 --- a/components/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt/pom.xml +++ b/components/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework consent-server-configs-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/consent-server-configs-mgt/pom.xml b/components/consent-server-configs-mgt/pom.xml index 7fed7c256d66..2f09e317e96b 100644 --- a/components/consent-server-configs-mgt/pom.xml +++ b/components/consent-server-configs-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/cors-mgt/org.wso2.carbon.identity.cors.mgt.core/pom.xml b/components/cors-mgt/org.wso2.carbon.identity.cors.mgt.core/pom.xml index 9453062e232d..57fd0d28b3f1 100644 --- a/components/cors-mgt/org.wso2.carbon.identity.cors.mgt.core/pom.xml +++ b/components/cors-mgt/org.wso2.carbon.identity.cors.mgt.core/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework cors-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/cors-mgt/pom.xml b/components/cors-mgt/pom.xml index c8ed2862c57d..a9f5ad93969d 100644 --- a/components/cors-mgt/pom.xml +++ b/components/cors-mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/directory-server-manager/org.wso2.carbon.directory.server.manager.common/pom.xml b/components/directory-server-manager/org.wso2.carbon.directory.server.manager.common/pom.xml index 6d958fba8d0b..a55294e7fbdb 100644 --- a/components/directory-server-manager/org.wso2.carbon.directory.server.manager.common/pom.xml +++ b/components/directory-server-manager/org.wso2.carbon.directory.server.manager.common/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework directory-server-manager - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/directory-server-manager/org.wso2.carbon.directory.server.manager.ui/pom.xml b/components/directory-server-manager/org.wso2.carbon.directory.server.manager.ui/pom.xml index dc1b9cbd11b0..78a199bf75b9 100644 --- a/components/directory-server-manager/org.wso2.carbon.directory.server.manager.ui/pom.xml +++ b/components/directory-server-manager/org.wso2.carbon.directory.server.manager.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework directory-server-manager - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/directory-server-manager/org.wso2.carbon.directory.server.manager/pom.xml b/components/directory-server-manager/org.wso2.carbon.directory.server.manager/pom.xml index 5f3ab17d5981..f11640eba911 100644 --- a/components/directory-server-manager/org.wso2.carbon.directory.server.manager/pom.xml +++ b/components/directory-server-manager/org.wso2.carbon.directory.server.manager/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework directory-server-manager - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/directory-server-manager/pom.xml b/components/directory-server-manager/pom.xml index 971aa483fb88..d7966972ec96 100644 --- a/components/directory-server-manager/pom.xml +++ b/components/directory-server-manager/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/extension-mgt/org.wso2.carbon.identity.extension.mgt/pom.xml b/components/extension-mgt/org.wso2.carbon.identity.extension.mgt/pom.xml index 24d24a0ee649..3bbd47a75a8b 100644 --- a/components/extension-mgt/org.wso2.carbon.identity.extension.mgt/pom.xml +++ b/components/extension-mgt/org.wso2.carbon.identity.extension.mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework extension-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/extension-mgt/pom.xml b/components/extension-mgt/pom.xml index b532aee683e8..5b3d392b3270 100644 --- a/components/extension-mgt/pom.xml +++ b/components/extension-mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui/pom.xml b/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui/pom.xml index 9954dfa66519..4f46058466de 100644 --- a/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui/pom.xml +++ b/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui/pom.xml @@ -21,7 +21,7 @@ functions-library-mgt org.wso2.carbon.identity.framework - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml 4.0.0 diff --git a/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt/pom.xml b/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt/pom.xml index 19e067161e6f..004be01a65e6 100644 --- a/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt/pom.xml +++ b/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt/pom.xml @@ -21,7 +21,7 @@ functions-library-mgt org.wso2.carbon.identity.framework - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml 4.0.0 diff --git a/components/functions-library-mgt/pom.xml b/components/functions-library-mgt/pom.xml index ca32b1364799..298e4dfa2387 100644 --- a/components/functions-library-mgt/pom.xml +++ b/components/functions-library-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/identity-core/org.wso2.carbon.identity.base/pom.xml b/components/identity-core/org.wso2.carbon.identity.base/pom.xml index b2e15ac64b35..ea9962d9830d 100644 --- a/components/identity-core/org.wso2.carbon.identity.base/pom.xml +++ b/components/identity-core/org.wso2.carbon.identity.base/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-core - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/identity-core/org.wso2.carbon.identity.core.ui/pom.xml b/components/identity-core/org.wso2.carbon.identity.core.ui/pom.xml index b172dad2605e..4682351eded0 100644 --- a/components/identity-core/org.wso2.carbon.identity.core.ui/pom.xml +++ b/components/identity-core/org.wso2.carbon.identity.core.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-core - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/identity-core/org.wso2.carbon.identity.core/pom.xml b/components/identity-core/org.wso2.carbon.identity.core/pom.xml index e3b0c593450e..3b0c14eb0810 100644 --- a/components/identity-core/org.wso2.carbon.identity.core/pom.xml +++ b/components/identity-core/org.wso2.carbon.identity.core/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-core - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/identity-core/pom.xml b/components/identity-core/pom.xml index db66840b4dee..f211ec46cb22 100644 --- a/components/identity-core/pom.xml +++ b/components/identity-core/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/identity-event/org.wso2.carbon.identity.event/pom.xml b/components/identity-event/org.wso2.carbon.identity.event/pom.xml index b310beb914a0..ae346309ad80 100644 --- a/components/identity-event/org.wso2.carbon.identity.event/pom.xml +++ b/components/identity-event/org.wso2.carbon.identity.event/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-event - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/identity-event/pom.xml b/components/identity-event/pom.xml index 0ba493869aa4..a5491575cf47 100644 --- a/components/identity-event/pom.xml +++ b/components/identity-event/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/identity-mgt/org.wso2.carbon.identity.mgt.endpoint.util/pom.xml b/components/identity-mgt/org.wso2.carbon.identity.mgt.endpoint.util/pom.xml index 6c66b9f9fb82..0a6d60c85867 100644 --- a/components/identity-mgt/org.wso2.carbon.identity.mgt.endpoint.util/pom.xml +++ b/components/identity-mgt/org.wso2.carbon.identity.mgt.endpoint.util/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/identity-mgt/org.wso2.carbon.identity.mgt.ui/pom.xml b/components/identity-mgt/org.wso2.carbon.identity.mgt.ui/pom.xml index b4d7e833ef88..abc0d4db5fe6 100644 --- a/components/identity-mgt/org.wso2.carbon.identity.mgt.ui/pom.xml +++ b/components/identity-mgt/org.wso2.carbon.identity.mgt.ui/pom.xml @@ -23,7 +23,7 @@ org.wso2.carbon.identity.framework identity-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/identity-mgt/org.wso2.carbon.identity.mgt/pom.xml b/components/identity-mgt/org.wso2.carbon.identity.mgt/pom.xml index 07edc7a4c29f..828661366259 100644 --- a/components/identity-mgt/org.wso2.carbon.identity.mgt/pom.xml +++ b/components/identity-mgt/org.wso2.carbon.identity.mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/identity-mgt/pom.xml b/components/identity-mgt/pom.xml index 19828723a740..18422a48b5ee 100644 --- a/components/identity-mgt/pom.xml +++ b/components/identity-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/idp-mgt/org.wso2.carbon.idp.mgt.ui/pom.xml b/components/idp-mgt/org.wso2.carbon.idp.mgt.ui/pom.xml index d78e102846d8..269955a99274 100644 --- a/components/idp-mgt/org.wso2.carbon.idp.mgt.ui/pom.xml +++ b/components/idp-mgt/org.wso2.carbon.idp.mgt.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-provider-management - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/idp-mgt/org.wso2.carbon.idp.mgt/pom.xml b/components/idp-mgt/org.wso2.carbon.idp.mgt/pom.xml index f40700a84b98..8b2ae1b11f9e 100644 --- a/components/idp-mgt/org.wso2.carbon.idp.mgt/pom.xml +++ b/components/idp-mgt/org.wso2.carbon.idp.mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-provider-management - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/idp-mgt/pom.xml b/components/idp-mgt/pom.xml index dcfe1e460bac..f55492593c14 100644 --- a/components/idp-mgt/pom.xml +++ b/components/idp-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt/pom.xml b/components/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt/pom.xml index 5041ccc1f551..57451a4189c6 100644 --- a/components/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt/pom.xml +++ b/components/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework input-validation-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/input-validation-mgt/pom.xml b/components/input-validation-mgt/pom.xml index 0e798ae003a8..f2b3e17a2136 100644 --- a/components/input-validation-mgt/pom.xml +++ b/components/input-validation-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt/pom.xml b/components/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt/pom.xml index cff83792a2fd..d2f6b53ca781 100644 --- a/components/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt/pom.xml +++ b/components/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt/pom.xml @@ -21,7 +21,7 @@ multi-attribute-login org.wso2.carbon.identity.framework - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml 4.0.0 diff --git a/components/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt/pom.xml b/components/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt/pom.xml index 716064172cc7..5f44b127450c 100644 --- a/components/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt/pom.xml +++ b/components/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt/pom.xml @@ -21,7 +21,7 @@ multi-attribute-login org.wso2.carbon.identity.framework - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml 4.0.0 diff --git a/components/multi-attribute-login/pom.xml b/components/multi-attribute-login/pom.xml index 0bfc2a7750ad..8feaeb323585 100644 --- a/components/multi-attribute-login/pom.xml +++ b/components/multi-attribute-login/pom.xml @@ -21,7 +21,7 @@ identity-framework org.wso2.carbon.identity.framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml 4.0.0 diff --git a/components/notification-mgt/org.wso2.carbon.identity.notification.mgt/pom.xml b/components/notification-mgt/org.wso2.carbon.identity.notification.mgt/pom.xml index 305ad250f0a4..f0b66837f974 100644 --- a/components/notification-mgt/org.wso2.carbon.identity.notification.mgt/pom.xml +++ b/components/notification-mgt/org.wso2.carbon.identity.notification.mgt/pom.xml @@ -23,7 +23,7 @@ org.wso2.carbon.identity.framework notification-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/notification-mgt/pom.xml b/components/notification-mgt/pom.xml index 80ec9548bd5d..364164bebde6 100644 --- a/components/notification-mgt/pom.xml +++ b/components/notification-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/provisioning/org.wso2.carbon.identity.provisioning/pom.xml b/components/provisioning/org.wso2.carbon.identity.provisioning/pom.xml index 02ef4b3a6370..bd80bae8627c 100644 --- a/components/provisioning/org.wso2.carbon.identity.provisioning/pom.xml +++ b/components/provisioning/org.wso2.carbon.identity.provisioning/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework provisioning - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/provisioning/pom.xml b/components/provisioning/pom.xml index 2e90a49a3444..9e013382161a 100644 --- a/components/provisioning/pom.xml +++ b/components/provisioning/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/role-mgt/org.wso2.carbon.identity.role.mgt.core/pom.xml b/components/role-mgt/org.wso2.carbon.identity.role.mgt.core/pom.xml index 555eb56342b3..f7379d2156b9 100644 --- a/components/role-mgt/org.wso2.carbon.identity.role.mgt.core/pom.xml +++ b/components/role-mgt/org.wso2.carbon.identity.role.mgt.core/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework role-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core/pom.xml b/components/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core/pom.xml index 02fbba6ed832..0ce374e3afd2 100644 --- a/components/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core/pom.xml +++ b/components/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework role-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/role-mgt/pom.xml b/components/role-mgt/pom.xml index a581f96e75ad..782fb9b1688b 100644 --- a/components/role-mgt/pom.xml +++ b/components/role-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/rule-mgt/org.wso2.carbon.identity.rule.management/pom.xml b/components/rule-mgt/org.wso2.carbon.identity.rule.management/pom.xml index 4b7c715e82fc..b1ddd03bfc95 100644 --- a/components/rule-mgt/org.wso2.carbon.identity.rule.management/pom.xml +++ b/components/rule-mgt/org.wso2.carbon.identity.rule.management/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework rule-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/rule-mgt/org.wso2.carbon.identity.rule.metadata/pom.xml b/components/rule-mgt/org.wso2.carbon.identity.rule.metadata/pom.xml index 450093737f8f..3845ee7d8317 100644 --- a/components/rule-mgt/org.wso2.carbon.identity.rule.metadata/pom.xml +++ b/components/rule-mgt/org.wso2.carbon.identity.rule.metadata/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework rule-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/rule-mgt/pom.xml b/components/rule-mgt/pom.xml index e0e4066e6935..2700db11990e 100644 --- a/components/rule-mgt/pom.xml +++ b/components/rule-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/secret-mgt/org.wso2.carbon.identity.secret.mgt.core/pom.xml b/components/secret-mgt/org.wso2.carbon.identity.secret.mgt.core/pom.xml index a3987b114dbb..10f0a4a638a4 100644 --- a/components/secret-mgt/org.wso2.carbon.identity.secret.mgt.core/pom.xml +++ b/components/secret-mgt/org.wso2.carbon.identity.secret.mgt.core/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework secret-mgt - 7.7.85-SNAPSHOT + 7.7.85 4.0.0 diff --git a/components/secret-mgt/pom.xml b/components/secret-mgt/pom.xml index 06b9b5d20348..83557bd25887 100644 --- a/components/secret-mgt/pom.xml +++ b/components/secret-mgt/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/security-mgt/org.wso2.carbon.security.mgt.ui/pom.xml b/components/security-mgt/org.wso2.carbon.security.mgt.ui/pom.xml index 79e5a9e6d4ff..7ada7db0827d 100644 --- a/components/security-mgt/org.wso2.carbon.security.mgt.ui/pom.xml +++ b/components/security-mgt/org.wso2.carbon.security.mgt.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework security-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/security-mgt/org.wso2.carbon.security.mgt/pom.xml b/components/security-mgt/org.wso2.carbon.security.mgt/pom.xml index 09ba6961acd4..93030bc4e503 100644 --- a/components/security-mgt/org.wso2.carbon.security.mgt/pom.xml +++ b/components/security-mgt/org.wso2.carbon.security.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework security-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/security-mgt/pom.xml b/components/security-mgt/pom.xml index ba589c0b99a0..24dc1039fd5e 100644 --- a/components/security-mgt/pom.xml +++ b/components/security-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/template-mgt/org.wso2.carbon.identity.template.mgt.ui/pom.xml b/components/template-mgt/org.wso2.carbon.identity.template.mgt.ui/pom.xml index 2f4d3aae496b..24f20a488f36 100644 --- a/components/template-mgt/org.wso2.carbon.identity.template.mgt.ui/pom.xml +++ b/components/template-mgt/org.wso2.carbon.identity.template.mgt.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework template-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml 4.0.0 diff --git a/components/template-mgt/org.wso2.carbon.identity.template.mgt/pom.xml b/components/template-mgt/org.wso2.carbon.identity.template.mgt/pom.xml index 1092f278e823..08130867ef72 100644 --- a/components/template-mgt/org.wso2.carbon.identity.template.mgt/pom.xml +++ b/components/template-mgt/org.wso2.carbon.identity.template.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework template-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml 4.0.0 diff --git a/components/template-mgt/pom.xml b/components/template-mgt/pom.xml index 8fe305602b54..d67ab2a9865b 100644 --- a/components/template-mgt/pom.xml +++ b/components/template-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt/pom.xml b/components/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt/pom.xml index e19385e56184..ed19d74cb504 100644 --- a/components/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt/pom.xml +++ b/components/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework trusted-app-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/trusted-app-mgt/pom.xml b/components/trusted-app-mgt/pom.xml index 5c00b4e6b78f..7aaa98cd0a2b 100644 --- a/components/trusted-app-mgt/pom.xml +++ b/components/trusted-app-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt/pom.xml b/components/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt/pom.xml index f2c4ac0896ac..508b0627311a 100644 --- a/components/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt/pom.xml +++ b/components/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt/pom.xml @@ -21,7 +21,7 @@ user-functionality-mgt org.wso2.carbon.identity.framework - 7.7.85-SNAPSHOT + 7.7.85 4.0.0 diff --git a/components/user-functionality-mgt/pom.xml b/components/user-functionality-mgt/pom.xml index 360be18aef5c..0482afa6a160 100644 --- a/components/user-functionality-mgt/pom.xml +++ b/components/user-functionality-mgt/pom.xml @@ -21,7 +21,7 @@ identity-framework org.wso2.carbon.identity.framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/user-mgt/org.wso2.carbon.identity.user.profile.ui/pom.xml b/components/user-mgt/org.wso2.carbon.identity.user.profile.ui/pom.xml index f8e0de023a31..60dccd9dcafd 100644 --- a/components/user-mgt/org.wso2.carbon.identity.user.profile.ui/pom.xml +++ b/components/user-mgt/org.wso2.carbon.identity.user.profile.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/user-mgt/org.wso2.carbon.identity.user.profile/pom.xml b/components/user-mgt/org.wso2.carbon.identity.user.profile/pom.xml index 3e1ca5f9846e..30d2f068e522 100644 --- a/components/user-mgt/org.wso2.carbon.identity.user.profile/pom.xml +++ b/components/user-mgt/org.wso2.carbon.identity.user.profile/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/user-mgt/org.wso2.carbon.identity.user.registration/pom.xml b/components/user-mgt/org.wso2.carbon.identity.user.registration/pom.xml index 7418745ea9b9..c2dc77b29892 100644 --- a/components/user-mgt/org.wso2.carbon.identity.user.registration/pom.xml +++ b/components/user-mgt/org.wso2.carbon.identity.user.registration/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/user-mgt/org.wso2.carbon.role.mgt.ui/pom.xml b/components/user-mgt/org.wso2.carbon.role.mgt.ui/pom.xml index 79c87ea10729..9be4b85e2f51 100644 --- a/components/user-mgt/org.wso2.carbon.role.mgt.ui/pom.xml +++ b/components/user-mgt/org.wso2.carbon.role.mgt.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/user-mgt/org.wso2.carbon.user.mgt.common/pom.xml b/components/user-mgt/org.wso2.carbon.user.mgt.common/pom.xml index 0eac299f066c..859ce4ff04fe 100644 --- a/components/user-mgt/org.wso2.carbon.user.mgt.common/pom.xml +++ b/components/user-mgt/org.wso2.carbon.user.mgt.common/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/user-mgt/org.wso2.carbon.user.mgt.ui/pom.xml b/components/user-mgt/org.wso2.carbon.user.mgt.ui/pom.xml index cf5d866463fd..672116314256 100644 --- a/components/user-mgt/org.wso2.carbon.user.mgt.ui/pom.xml +++ b/components/user-mgt/org.wso2.carbon.user.mgt.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/user-mgt/org.wso2.carbon.user.mgt/pom.xml b/components/user-mgt/org.wso2.carbon.user.mgt/pom.xml index fc26147bf1bd..8247659e2422 100644 --- a/components/user-mgt/org.wso2.carbon.user.mgt/pom.xml +++ b/components/user-mgt/org.wso2.carbon.user.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/user-mgt/pom.xml b/components/user-mgt/pom.xml index b4c2f3ec03c5..c7cb34bb7630 100644 --- a/components/user-mgt/pom.xml +++ b/components/user-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/components/user-store/org.wso2.carbon.identity.user.store.configuration.deployer/pom.xml b/components/user-store/org.wso2.carbon.identity.user.store.configuration.deployer/pom.xml index fbcaebe14bf0..fa01028c4860 100644 --- a/components/user-store/org.wso2.carbon.identity.user.store.configuration.deployer/pom.xml +++ b/components/user-store/org.wso2.carbon.identity.user.store.configuration.deployer/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-store - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/user-store/org.wso2.carbon.identity.user.store.configuration.ui/pom.xml b/components/user-store/org.wso2.carbon.identity.user.store.configuration.ui/pom.xml index af5c6e5ed4d6..afb5354bc3d4 100644 --- a/components/user-store/org.wso2.carbon.identity.user.store.configuration.ui/pom.xml +++ b/components/user-store/org.wso2.carbon.identity.user.store.configuration.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-store - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/user-store/org.wso2.carbon.identity.user.store.configuration/pom.xml b/components/user-store/org.wso2.carbon.identity.user.store.configuration/pom.xml index ac2b3d575334..bf3fe41b59f0 100644 --- a/components/user-store/org.wso2.carbon.identity.user.store.configuration/pom.xml +++ b/components/user-store/org.wso2.carbon.identity.user.store.configuration/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-store - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/user-store/org.wso2.carbon.identity.user.store.count/pom.xml b/components/user-store/org.wso2.carbon.identity.user.store.count/pom.xml index 5f1a058ac147..1e7843cca137 100644 --- a/components/user-store/org.wso2.carbon.identity.user.store.count/pom.xml +++ b/components/user-store/org.wso2.carbon.identity.user.store.count/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-store - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/components/user-store/pom.xml b/components/user-store/pom.xml index 2e49b7ce5b84..f30b1d64cde9 100644 --- a/components/user-store/pom.xml +++ b/components/user-store/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/features/action-mgt/org.wso2.carbon.identity.action.management.server.feature/pom.xml b/features/action-mgt/org.wso2.carbon.identity.action.management.server.feature/pom.xml index 87a7eb99755e..73abf96131e9 100644 --- a/features/action-mgt/org.wso2.carbon.identity.action.management.server.feature/pom.xml +++ b/features/action-mgt/org.wso2.carbon.identity.action.management.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework action-management-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/action-mgt/pom.xml b/features/action-mgt/pom.xml index 01a813b02d4f..316c49e27f5b 100644 --- a/features/action-mgt/pom.xml +++ b/features/action-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/features/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt.server.feature/pom.xml b/features/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt.server.feature/pom.xml index 4ac607e4873b..4b98fa1a23ba 100644 --- a/features/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt.server.feature/pom.xml +++ b/features/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework api-resource-management-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/api-resource-mgt/pom.xml b/features/api-resource-mgt/pom.xml index 9dc83f778def..caa954f344a9 100644 --- a/features/api-resource-mgt/pom.xml +++ b/features/api-resource-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/features/application-mgt/org.wso2.carbon.identity.application.mgt.feature/pom.xml b/features/application-mgt/org.wso2.carbon.identity.application.mgt.feature/pom.xml index 7cf0b1846633..e12958b10c22 100644 --- a/features/application-mgt/org.wso2.carbon.identity.application.mgt.feature/pom.xml +++ b/features/application-mgt/org.wso2.carbon.identity.application.mgt.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework application-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/application-mgt/org.wso2.carbon.identity.application.mgt.server.feature/pom.xml b/features/application-mgt/org.wso2.carbon.identity.application.mgt.server.feature/pom.xml index 3c600331c990..5931e6e447a9 100644 --- a/features/application-mgt/org.wso2.carbon.identity.application.mgt.server.feature/pom.xml +++ b/features/application-mgt/org.wso2.carbon.identity.application.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework application-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/application-mgt/org.wso2.carbon.identity.application.mgt.ui.feature/pom.xml b/features/application-mgt/org.wso2.carbon.identity.application.mgt.ui.feature/pom.xml index 0b46e17ada36..3fee06ba12ff 100644 --- a/features/application-mgt/org.wso2.carbon.identity.application.mgt.ui.feature/pom.xml +++ b/features/application-mgt/org.wso2.carbon.identity.application.mgt.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework application-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/application-mgt/pom.xml b/features/application-mgt/pom.xml index 5483d210b365..64e7894771ef 100644 --- a/features/application-mgt/pom.xml +++ b/features/application-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/features/authentication-framework/org.wso2.carbon.identity.application.authentication.framework.server.feature/pom.xml b/features/authentication-framework/org.wso2.carbon.identity.application.authentication.framework.server.feature/pom.xml index bec991c73821..554e3e2f44e3 100644 --- a/features/authentication-framework/org.wso2.carbon.identity.application.authentication.framework.server.feature/pom.xml +++ b/features/authentication-framework/org.wso2.carbon.identity.application.authentication.framework.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework authentication-framework-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/authentication-framework/pom.xml b/features/authentication-framework/pom.xml index aae09b1f1d96..6d91d1c0502f 100644 --- a/features/authentication-framework/pom.xml +++ b/features/authentication-framework/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/features/carbon-authenticators/pom.xml b/features/carbon-authenticators/pom.xml index 7806e8190dbc..7c4e25c54b7d 100644 --- a/features/carbon-authenticators/pom.xml +++ b/features/carbon-authenticators/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/features/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.thrift.authentication.feature/pom.xml b/features/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.thrift.authentication.feature/pom.xml index 10b9b110aa44..5b2f614c29dd 100644 --- a/features/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.thrift.authentication.feature/pom.xml +++ b/features/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.thrift.authentication.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework thrift-authenticator-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/carbon-authenticators/thrift-authenticator/pom.xml b/features/carbon-authenticators/thrift-authenticator/pom.xml index c57a073c74b5..b67daf9b1d10 100644 --- a/features/carbon-authenticators/thrift-authenticator/pom.xml +++ b/features/carbon-authenticators/thrift-authenticator/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-authenticator-features - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/categories/authorization/pom.xml b/features/categories/authorization/pom.xml index eff30edb82d2..1cc83a189900 100644 --- a/features/categories/authorization/pom.xml +++ b/features/categories/authorization/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../../pom.xml diff --git a/features/categories/inbound-authentication/pom.xml b/features/categories/inbound-authentication/pom.xml index 4b10d20d0b72..5a27b6e7c7a9 100644 --- a/features/categories/inbound-authentication/pom.xml +++ b/features/categories/inbound-authentication/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../../pom.xml diff --git a/features/categories/inbound-provisioning/pom.xml b/features/categories/inbound-provisioning/pom.xml index b8fdd7a46880..953137392e51 100644 --- a/features/categories/inbound-provisioning/pom.xml +++ b/features/categories/inbound-provisioning/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../../pom.xml diff --git a/features/categories/keystore-mgt/pom.xml b/features/categories/keystore-mgt/pom.xml index d8a73a3bb484..51f62a7174fa 100644 --- a/features/categories/keystore-mgt/pom.xml +++ b/features/categories/keystore-mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../../pom.xml diff --git a/features/categories/notification-mgt/pom.xml b/features/categories/notification-mgt/pom.xml index 4e8ed1b70f9c..49319250bad4 100644 --- a/features/categories/notification-mgt/pom.xml +++ b/features/categories/notification-mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../../pom.xml diff --git a/features/categories/outbound-authentication/pom.xml b/features/categories/outbound-authentication/pom.xml index 830a30cf3546..f86d799b651f 100644 --- a/features/categories/outbound-authentication/pom.xml +++ b/features/categories/outbound-authentication/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../../pom.xml diff --git a/features/categories/outbound-provisioning/pom.xml b/features/categories/outbound-provisioning/pom.xml index fd67181e1844..30f0ae0f86f8 100644 --- a/features/categories/outbound-provisioning/pom.xml +++ b/features/categories/outbound-provisioning/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../../pom.xml diff --git a/features/categories/pom.xml b/features/categories/pom.xml index 0ed3f813ad6c..3fecb795ca41 100644 --- a/features/categories/pom.xml +++ b/features/categories/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/features/categories/user-mgt/pom.xml b/features/categories/user-mgt/pom.xml index 9c29be93e9bf..73826fa48f40 100644 --- a/features/categories/user-mgt/pom.xml +++ b/features/categories/user-mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../../pom.xml diff --git a/features/central-logger/org.wso2.carbon.identity.central.log.mgt.server.feature/pom.xml b/features/central-logger/org.wso2.carbon.identity.central.log.mgt.server.feature/pom.xml index f77a761cb30a..c7356951db7f 100644 --- a/features/central-logger/org.wso2.carbon.identity.central.log.mgt.server.feature/pom.xml +++ b/features/central-logger/org.wso2.carbon.identity.central.log.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework central-logger-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/central-logger/pom.xml b/features/central-logger/pom.xml index 7167b158171f..c6db5197a8b8 100644 --- a/features/central-logger/pom.xml +++ b/features/central-logger/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml 4.0.0 diff --git a/features/certificate-mgt/org.wso2.carbon.identity.certificate.management.server.feature/pom.xml b/features/certificate-mgt/org.wso2.carbon.identity.certificate.management.server.feature/pom.xml index e00f1db7fcb6..456a4d105c21 100644 --- a/features/certificate-mgt/org.wso2.carbon.identity.certificate.management.server.feature/pom.xml +++ b/features/certificate-mgt/org.wso2.carbon.identity.certificate.management.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework certificate-management-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/certificate-mgt/pom.xml b/features/certificate-mgt/pom.xml index 96164e36ef2a..62461d6b5d7f 100644 --- a/features/certificate-mgt/pom.xml +++ b/features/certificate-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/features/claim-mgt/org.wso2.carbon.claim.mgt.feature/pom.xml b/features/claim-mgt/org.wso2.carbon.claim.mgt.feature/pom.xml index cebacb00692e..964858685800 100644 --- a/features/claim-mgt/org.wso2.carbon.claim.mgt.feature/pom.xml +++ b/features/claim-mgt/org.wso2.carbon.claim.mgt.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework claim-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/claim-mgt/org.wso2.carbon.claim.mgt.server.feature/pom.xml b/features/claim-mgt/org.wso2.carbon.claim.mgt.server.feature/pom.xml index 66b5a0f9b6ac..b9fbc17e6495 100644 --- a/features/claim-mgt/org.wso2.carbon.claim.mgt.server.feature/pom.xml +++ b/features/claim-mgt/org.wso2.carbon.claim.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework claim-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/claim-mgt/org.wso2.carbon.claim.mgt.ui.feature/pom.xml b/features/claim-mgt/org.wso2.carbon.claim.mgt.ui.feature/pom.xml index deaffde0e6cd..f3a289ec985a 100644 --- a/features/claim-mgt/org.wso2.carbon.claim.mgt.ui.feature/pom.xml +++ b/features/claim-mgt/org.wso2.carbon.claim.mgt.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework claim-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/claim-mgt/pom.xml b/features/claim-mgt/pom.xml index e1746a120466..99f60770112b 100644 --- a/features/claim-mgt/pom.xml +++ b/features/claim-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/features/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt.server.feature/pom.xml b/features/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt.server.feature/pom.xml index f007b43e2f72..3d323bc69996 100644 --- a/features/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt.server.feature/pom.xml +++ b/features/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt.server.feature/pom.xml @@ -23,7 +23,7 @@ org.wso2.carbon.identity.framework client-attestation-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/client-attestation-mgt/pom.xml b/features/client-attestation-mgt/pom.xml index 486e56ca64c7..1fc4a3a64530 100644 --- a/features/client-attestation-mgt/pom.xml +++ b/features/client-attestation-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml 4.0.0 diff --git a/features/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.server.feature/pom.xml b/features/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.server.feature/pom.xml index b34423f3e25f..347715f4f546 100644 --- a/features/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.server.feature/pom.xml +++ b/features/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.server.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework configuration-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/configuration-mgt/pom.xml b/features/configuration-mgt/pom.xml index f2a6c73af268..b30ecf2083e1 100644 --- a/features/configuration-mgt/pom.xml +++ b/features/configuration-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/features/consent-mgt/org.wso2.carbon.identity.consent.mgt.server.feature/pom.xml b/features/consent-mgt/org.wso2.carbon.identity.consent.mgt.server.feature/pom.xml index 51d5d8be272c..56b3ddfdc246 100644 --- a/features/consent-mgt/org.wso2.carbon.identity.consent.mgt.server.feature/pom.xml +++ b/features/consent-mgt/org.wso2.carbon.identity.consent.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-consent-mgt-aggregator - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/consent-mgt/pom.xml b/features/consent-mgt/pom.xml index fc778446b57c..11bb1aa3f752 100644 --- a/features/consent-mgt/pom.xml +++ b/features/consent-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/features/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt.server.feature/pom.xml b/features/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt.server.feature/pom.xml index 67d91fa30889..27a57f25cf57 100644 --- a/features/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt.server.feature/pom.xml +++ b/features/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework consent-server-configs-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/consent-server-configs-mgt/pom.xml b/features/consent-server-configs-mgt/pom.xml index 32f86e89d937..3d89c2ec6554 100644 --- a/features/consent-server-configs-mgt/pom.xml +++ b/features/consent-server-configs-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml 4.0.0 diff --git a/features/cors-mgt/org.wso2.carbon.identity.cors.mgt.server.feature/pom.xml b/features/cors-mgt/org.wso2.carbon.identity.cors.mgt.server.feature/pom.xml index 388d84204616..c11a2112bda1 100644 --- a/features/cors-mgt/org.wso2.carbon.identity.cors.mgt.server.feature/pom.xml +++ b/features/cors-mgt/org.wso2.carbon.identity.cors.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework cors-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/cors-mgt/pom.xml b/features/cors-mgt/pom.xml index 41f85a48a685..48369411ef3a 100644 --- a/features/cors-mgt/pom.xml +++ b/features/cors-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.feature/pom.xml b/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.feature/pom.xml index 2eacd3c25a2a..15dcf0f519e1 100644 --- a/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.feature/pom.xml +++ b/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework directory-server-manager-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.server.feature/pom.xml b/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.server.feature/pom.xml index e885f0131635..ddf6f273a2a8 100644 --- a/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.server.feature/pom.xml +++ b/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework directory-server-manager-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.ui.feature/pom.xml b/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.ui.feature/pom.xml index b5ebe7f5a963..17a7876ddb03 100644 --- a/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.ui.feature/pom.xml +++ b/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework directory-server-manager-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/directory-server-manager/pom.xml b/features/directory-server-manager/pom.xml index 0fb1b9b59c2c..4ffa926e1132 100644 --- a/features/directory-server-manager/pom.xml +++ b/features/directory-server-manager/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/features/extension-mgt/org.wso2.carbon.identity.extension.mgt.feature/pom.xml b/features/extension-mgt/org.wso2.carbon.identity.extension.mgt.feature/pom.xml index 0890ecdcbd95..75850871e0fc 100644 --- a/features/extension-mgt/org.wso2.carbon.identity.extension.mgt.feature/pom.xml +++ b/features/extension-mgt/org.wso2.carbon.identity.extension.mgt.feature/pom.xml @@ -19,7 +19,7 @@ extension-management-feature org.wso2.carbon.identity.framework - 7.7.85-SNAPSHOT + 7.7.85 org.wso2.carbon.identity.extension.mgt.feature diff --git a/features/extension-mgt/pom.xml b/features/extension-mgt/pom.xml index 1f0b91adcae1..29a517432bfa 100644 --- a/features/extension-mgt/pom.xml +++ b/features/extension-mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.feature/pom.xml b/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.feature/pom.xml index be2470179590..46a03ea5ce9d 100644 --- a/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.feature/pom.xml +++ b/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework functions-library-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml 4.0.0 diff --git a/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.server.feature/pom.xml b/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.server.feature/pom.xml index 11e075830e47..2a039be2d1df 100644 --- a/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.server.feature/pom.xml +++ b/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework functions-library-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml 4.0.0 diff --git a/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui.feature/pom.xml b/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui.feature/pom.xml index c4d9d9b52b5d..548fa85e8d12 100644 --- a/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui.feature/pom.xml +++ b/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework functions-library-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml 4.0.0 diff --git a/features/functions-library-mgt/pom.xml b/features/functions-library-mgt/pom.xml index ff4eb5e1e700..d73f114146a3 100644 --- a/features/functions-library-mgt/pom.xml +++ b/features/functions-library-mgt/pom.xml @@ -28,7 +28,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/features/identity-core/org.wso2.carbon.identity.core.feature/pom.xml b/features/identity-core/org.wso2.carbon.identity.core.feature/pom.xml index d21b193d09b9..06e1b5cf7146 100644 --- a/features/identity-core/org.wso2.carbon.identity.core.feature/pom.xml +++ b/features/identity-core/org.wso2.carbon.identity.core.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-core-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/identity-core/org.wso2.carbon.identity.core.server.feature/pom.xml b/features/identity-core/org.wso2.carbon.identity.core.server.feature/pom.xml index 7d20abb7d51a..d44eee91d571 100644 --- a/features/identity-core/org.wso2.carbon.identity.core.server.feature/pom.xml +++ b/features/identity-core/org.wso2.carbon.identity.core.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-core-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/identity-core/org.wso2.carbon.identity.core.ui.feature/pom.xml b/features/identity-core/org.wso2.carbon.identity.core.ui.feature/pom.xml index 78da576433b2..4e4688cf3af5 100644 --- a/features/identity-core/org.wso2.carbon.identity.core.ui.feature/pom.xml +++ b/features/identity-core/org.wso2.carbon.identity.core.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-core-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/identity-core/pom.xml b/features/identity-core/pom.xml index 85c7cf916173..a5db2c8c2795 100644 --- a/features/identity-core/pom.xml +++ b/features/identity-core/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/features/identity-event/org.wso2.carbon.identity.event.feature/pom.xml b/features/identity-event/org.wso2.carbon.identity.event.feature/pom.xml index 40c4bbbe3ff9..4096cb82d0ee 100644 --- a/features/identity-event/org.wso2.carbon.identity.event.feature/pom.xml +++ b/features/identity-event/org.wso2.carbon.identity.event.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-event-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/identity-event/org.wso2.carbon.identity.event.server.feature/pom.xml b/features/identity-event/org.wso2.carbon.identity.event.server.feature/pom.xml index c3cbf92c904f..942050840e36 100644 --- a/features/identity-event/org.wso2.carbon.identity.event.server.feature/pom.xml +++ b/features/identity-event/org.wso2.carbon.identity.event.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-event-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/identity-event/pom.xml b/features/identity-event/pom.xml index a5edcf4d4227..cb762f7188db 100644 --- a/features/identity-event/pom.xml +++ b/features/identity-event/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/features/identity-mgt/org.wso2.carbon.identity.mgt.feature/pom.xml b/features/identity-mgt/org.wso2.carbon.identity.mgt.feature/pom.xml index 2ccee4f13788..458bf37fb39c 100644 --- a/features/identity-mgt/org.wso2.carbon.identity.mgt.feature/pom.xml +++ b/features/identity-mgt/org.wso2.carbon.identity.mgt.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/identity-mgt/org.wso2.carbon.identity.mgt.server.feature/pom.xml b/features/identity-mgt/org.wso2.carbon.identity.mgt.server.feature/pom.xml index b4e3b359c37d..56fc264a3c29 100644 --- a/features/identity-mgt/org.wso2.carbon.identity.mgt.server.feature/pom.xml +++ b/features/identity-mgt/org.wso2.carbon.identity.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/identity-mgt/org.wso2.carbon.identity.mgt.ui.feature/pom.xml b/features/identity-mgt/org.wso2.carbon.identity.mgt.ui.feature/pom.xml index ab925b2dbfec..5907b707180c 100644 --- a/features/identity-mgt/org.wso2.carbon.identity.mgt.ui.feature/pom.xml +++ b/features/identity-mgt/org.wso2.carbon.identity.mgt.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/identity-mgt/pom.xml b/features/identity-mgt/pom.xml index ee2b146bb487..54591e051580 100644 --- a/features/identity-mgt/pom.xml +++ b/features/identity-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/features/idp-mgt/org.wso2.carbon.idp.mgt.feature/pom.xml b/features/idp-mgt/org.wso2.carbon.idp.mgt.feature/pom.xml index fa1576d70c24..0df8244a1697 100644 --- a/features/idp-mgt/org.wso2.carbon.idp.mgt.feature/pom.xml +++ b/features/idp-mgt/org.wso2.carbon.idp.mgt.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-provider-management-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/idp-mgt/org.wso2.carbon.idp.mgt.server.feature/pom.xml b/features/idp-mgt/org.wso2.carbon.idp.mgt.server.feature/pom.xml index 9fc952ffa424..a294d6daadb7 100644 --- a/features/idp-mgt/org.wso2.carbon.idp.mgt.server.feature/pom.xml +++ b/features/idp-mgt/org.wso2.carbon.idp.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-provider-management-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/idp-mgt/org.wso2.carbon.idp.mgt.ui.feature/pom.xml b/features/idp-mgt/org.wso2.carbon.idp.mgt.ui.feature/pom.xml index cc5d50fa4bdc..3afb4afd419d 100644 --- a/features/idp-mgt/org.wso2.carbon.idp.mgt.ui.feature/pom.xml +++ b/features/idp-mgt/org.wso2.carbon.idp.mgt.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-provider-management-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/idp-mgt/pom.xml b/features/idp-mgt/pom.xml index dc99e4498e47..f60583760cc6 100644 --- a/features/idp-mgt/pom.xml +++ b/features/idp-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/features/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt.server.feature/pom.xml b/features/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt.server.feature/pom.xml index c076b0f157cb..af40b806271e 100644 --- a/features/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt.server.feature/pom.xml +++ b/features/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework input-validation-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/input-validation-mgt/pom.xml b/features/input-validation-mgt/pom.xml index 9f20386d45ad..fd117e43b3de 100644 --- a/features/input-validation-mgt/pom.xml +++ b/features/input-validation-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml 4.0.0 diff --git a/features/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt.server.feature/pom.xml b/features/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt.server.feature/pom.xml index 8ac58f41c0cb..664e1952610d 100644 --- a/features/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt.server.feature/pom.xml +++ b/features/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt.server.feature/pom.xml @@ -20,7 +20,7 @@ multi-attribute-login-feature org.wso2.carbon.identity.framework - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml 4.0.0 diff --git a/features/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt.server.feature/pom.xml b/features/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt.server.feature/pom.xml index 99edb3765751..5f50950add17 100644 --- a/features/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt.server.feature/pom.xml +++ b/features/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt.server.feature/pom.xml @@ -20,7 +20,7 @@ multi-attribute-login-feature org.wso2.carbon.identity.framework - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml 4.0.0 diff --git a/features/multi-attribute-login/pom.xml b/features/multi-attribute-login/pom.xml index 14e2c247fa79..81669e54a729 100644 --- a/features/multi-attribute-login/pom.xml +++ b/features/multi-attribute-login/pom.xml @@ -20,7 +20,7 @@ identity-framework org.wso2.carbon.identity.framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.feature/pom.xml b/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.feature/pom.xml index a764e49aab0b..f7494415dc92 100644 --- a/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.feature/pom.xml +++ b/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-notification-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.server.feature/pom.xml b/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.server.feature/pom.xml index e8b957da1059..65c7a06ed0eb 100644 --- a/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.server.feature/pom.xml +++ b/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-notification-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/notification-mgt/pom.xml b/features/notification-mgt/pom.xml index e0270b3622ce..58fb083f37bf 100644 --- a/features/notification-mgt/pom.xml +++ b/features/notification-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/features/provisioning/org.wso2.carbon.identity.provisioning.server.feature/pom.xml b/features/provisioning/org.wso2.carbon.identity.provisioning.server.feature/pom.xml index 7ebf373beedb..ed553c24b854 100644 --- a/features/provisioning/org.wso2.carbon.identity.provisioning.server.feature/pom.xml +++ b/features/provisioning/org.wso2.carbon.identity.provisioning.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework provisioning-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/provisioning/pom.xml b/features/provisioning/pom.xml index 3a48b2c6fd26..0476fa8d4eb6 100644 --- a/features/provisioning/pom.xml +++ b/features/provisioning/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/features/role-mgt/org.wso2.carbon.identity.role.mgt.core.server.feature/pom.xml b/features/role-mgt/org.wso2.carbon.identity.role.mgt.core.server.feature/pom.xml index 79c5e9e92596..13e56335747d 100644 --- a/features/role-mgt/org.wso2.carbon.identity.role.mgt.core.server.feature/pom.xml +++ b/features/role-mgt/org.wso2.carbon.identity.role.mgt.core.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework role-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml 4.0.0 diff --git a/features/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core.server.feature/pom.xml b/features/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core.server.feature/pom.xml index 4b1524dd031b..f633896376e1 100644 --- a/features/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core.server.feature/pom.xml +++ b/features/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core.server.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework role-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml 4.0.0 diff --git a/features/role-mgt/pom.xml b/features/role-mgt/pom.xml index a630cdcfc312..551fa0752dee 100644 --- a/features/role-mgt/pom.xml +++ b/features/role-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml 4.0.0 diff --git a/features/rule-mgt/org.wso2.carbon.identity.rule.management.server.feature/pom.xml b/features/rule-mgt/org.wso2.carbon.identity.rule.management.server.feature/pom.xml index d2944f5b525d..b19365d718a8 100644 --- a/features/rule-mgt/org.wso2.carbon.identity.rule.management.server.feature/pom.xml +++ b/features/rule-mgt/org.wso2.carbon.identity.rule.management.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework rule-management-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/rule-mgt/pom.xml b/features/rule-mgt/pom.xml index 865755d0ff85..b7a9fb265871 100644 --- a/features/rule-mgt/pom.xml +++ b/features/rule-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/features/secret-mgt/org.wso2.carbon.identity.secret.mgt.core.server.feature/pom.xml b/features/secret-mgt/org.wso2.carbon.identity.secret.mgt.core.server.feature/pom.xml index b5ff84b5dd64..a9456518cb67 100644 --- a/features/secret-mgt/org.wso2.carbon.identity.secret.mgt.core.server.feature/pom.xml +++ b/features/secret-mgt/org.wso2.carbon.identity.secret.mgt.core.server.feature/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework secret-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 4.0.0 diff --git a/features/secret-mgt/pom.xml b/features/secret-mgt/pom.xml index b888db7f11dc..cd3610961ee0 100644 --- a/features/secret-mgt/pom.xml +++ b/features/secret-mgt/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/features/security-mgt/org.wso2.carbon.security.mgt.feature/pom.xml b/features/security-mgt/org.wso2.carbon.security.mgt.feature/pom.xml index 1ffaffab1674..8b311e628c1b 100644 --- a/features/security-mgt/org.wso2.carbon.security.mgt.feature/pom.xml +++ b/features/security-mgt/org.wso2.carbon.security.mgt.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework security-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/security-mgt/org.wso2.carbon.security.mgt.server.feature/pom.xml b/features/security-mgt/org.wso2.carbon.security.mgt.server.feature/pom.xml index 5adb01392a09..deefb7e075fd 100644 --- a/features/security-mgt/org.wso2.carbon.security.mgt.server.feature/pom.xml +++ b/features/security-mgt/org.wso2.carbon.security.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework security-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/security-mgt/org.wso2.carbon.security.mgt.ui.feature/pom.xml b/features/security-mgt/org.wso2.carbon.security.mgt.ui.feature/pom.xml index 21d4021e5004..67b5de64143f 100644 --- a/features/security-mgt/org.wso2.carbon.security.mgt.ui.feature/pom.xml +++ b/features/security-mgt/org.wso2.carbon.security.mgt.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework security-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/security-mgt/pom.xml b/features/security-mgt/pom.xml index 5eadb0f1b2c5..6e8e37d8b64d 100644 --- a/features/security-mgt/pom.xml +++ b/features/security-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/features/template-mgt/org.wso2.carbon.identity.template.mgt.feature/pom.xml b/features/template-mgt/org.wso2.carbon.identity.template.mgt.feature/pom.xml index 81edba0c089c..20c812e7feed 100644 --- a/features/template-mgt/org.wso2.carbon.identity.template.mgt.feature/pom.xml +++ b/features/template-mgt/org.wso2.carbon.identity.template.mgt.feature/pom.xml @@ -21,7 +21,7 @@ template-management-feature org.wso2.carbon.identity.framework - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/template-mgt/org.wso2.carbon.identity.template.mgt.server.feature/pom.xml b/features/template-mgt/org.wso2.carbon.identity.template.mgt.server.feature/pom.xml index 5b767568f217..10f2f6447f41 100644 --- a/features/template-mgt/org.wso2.carbon.identity.template.mgt.server.feature/pom.xml +++ b/features/template-mgt/org.wso2.carbon.identity.template.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ template-management-feature org.wso2.carbon.identity.framework - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/template-mgt/org.wso2.carbon.identity.template.mgt.ui.feature/pom.xml b/features/template-mgt/org.wso2.carbon.identity.template.mgt.ui.feature/pom.xml index beb94d8de516..9bcdc5dd4c83 100644 --- a/features/template-mgt/org.wso2.carbon.identity.template.mgt.ui.feature/pom.xml +++ b/features/template-mgt/org.wso2.carbon.identity.template.mgt.ui.feature/pom.xml @@ -21,7 +21,7 @@ template-management-feature org.wso2.carbon.identity.framework - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/template-mgt/pom.xml b/features/template-mgt/pom.xml index 912c32eebef4..96e781dca2e7 100644 --- a/features/template-mgt/pom.xml +++ b/features/template-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/features/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt.server.feature/pom.xml b/features/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt.server.feature/pom.xml index 99fcec9c2b49..4d0b80c021f4 100644 --- a/features/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt.server.feature/pom.xml +++ b/features/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework trusted-app-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/trusted-app-mgt/pom.xml b/features/trusted-app-mgt/pom.xml index 02c7d24f7186..798883653dab 100644 --- a/features/trusted-app-mgt/pom.xml +++ b/features/trusted-app-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml 4.0.0 diff --git a/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.feature/pom.xml b/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.feature/pom.xml index e4a2b93d3503..9b44a9c3b1cd 100644 --- a/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.feature/pom.xml +++ b/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.feature/pom.xml @@ -21,7 +21,7 @@ user-functionality-mgt-feature org.wso2.carbon.identity.framework - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml 4.0.0 diff --git a/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.server.feature/pom.xml b/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.server.feature/pom.xml index d040693d5beb..15bcbede4d7d 100644 --- a/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.server.feature/pom.xml +++ b/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ user-functionality-mgt-feature org.wso2.carbon.identity.framework - 7.7.85-SNAPSHOT + 7.7.85 4.0.0 diff --git a/features/user-functionality-mgt/pom.xml b/features/user-functionality-mgt/pom.xml index 319476b8f89a..92af558c4f94 100644 --- a/features/user-functionality-mgt/pom.xml +++ b/features/user-functionality-mgt/pom.xml @@ -21,7 +21,7 @@ identity-framework org.wso2.carbon.identity.framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml 4.0.0 diff --git a/features/user-mgt/org.wso2.carbon.identity.user.profile.feature/pom.xml b/features/user-mgt/org.wso2.carbon.identity.user.profile.feature/pom.xml index 3532425c87e8..a0d272ab3ac0 100644 --- a/features/user-mgt/org.wso2.carbon.identity.user.profile.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.identity.user.profile.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.identity.user.profile.server.feature/pom.xml b/features/user-mgt/org.wso2.carbon.identity.user.profile.server.feature/pom.xml index 574d873481ff..15685f2afdb3 100644 --- a/features/user-mgt/org.wso2.carbon.identity.user.profile.server.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.identity.user.profile.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.identity.user.profile.ui.feature/pom.xml b/features/user-mgt/org.wso2.carbon.identity.user.profile.ui.feature/pom.xml index 5ef8350d7452..659f707b6882 100644 --- a/features/user-mgt/org.wso2.carbon.identity.user.profile.ui.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.identity.user.profile.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.identity.user.registration.feature/pom.xml b/features/user-mgt/org.wso2.carbon.identity.user.registration.feature/pom.xml index 3126b8929f30..2e6575a7a871 100644 --- a/features/user-mgt/org.wso2.carbon.identity.user.registration.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.identity.user.registration.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.identity.user.registration.server.feature/pom.xml b/features/user-mgt/org.wso2.carbon.identity.user.registration.server.feature/pom.xml index fdb89a5426e9..47c8d46bd8ae 100644 --- a/features/user-mgt/org.wso2.carbon.identity.user.registration.server.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.identity.user.registration.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.identity.user.registration.ui.feature/pom.xml b/features/user-mgt/org.wso2.carbon.identity.user.registration.ui.feature/pom.xml index fcc765c067dc..6e37f2be0b04 100644 --- a/features/user-mgt/org.wso2.carbon.identity.user.registration.ui.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.identity.user.registration.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.role.mgt.ui.feature/pom.xml b/features/user-mgt/org.wso2.carbon.role.mgt.ui.feature/pom.xml index 7b0e470a42f5..999e092e66f4 100644 --- a/features/user-mgt/org.wso2.carbon.role.mgt.ui.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.role.mgt.ui.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.user.mgt.feature/pom.xml b/features/user-mgt/org.wso2.carbon.user.mgt.feature/pom.xml index 3d175a33680c..9f317be1c965 100644 --- a/features/user-mgt/org.wso2.carbon.user.mgt.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.user.mgt.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.user.mgt.server.feature/pom.xml b/features/user-mgt/org.wso2.carbon.user.mgt.server.feature/pom.xml index bedeca806f90..983c27027b0f 100644 --- a/features/user-mgt/org.wso2.carbon.user.mgt.server.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.user.mgt.server.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.user.mgt.ui.feature/pom.xml b/features/user-mgt/org.wso2.carbon.user.mgt.ui.feature/pom.xml index d5627684073b..f5761bc91b78 100644 --- a/features/user-mgt/org.wso2.carbon.user.mgt.ui.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.user.mgt.ui.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/user-mgt/pom.xml b/features/user-mgt/pom.xml index 12820342be79..220191f30e86 100644 --- a/features/user-mgt/pom.xml +++ b/features/user-mgt/pom.xml @@ -17,7 +17,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/features/user-store/org.wso2.carbon.identity.user.store.configuration.server.feature/pom.xml b/features/user-store/org.wso2.carbon.identity.user.store.configuration.server.feature/pom.xml index 4715ab742212..971f0719c286 100644 --- a/features/user-store/org.wso2.carbon.identity.user.store.configuration.server.feature/pom.xml +++ b/features/user-store/org.wso2.carbon.identity.user.store.configuration.server.feature/pom.xml @@ -23,7 +23,7 @@ org.wso2.carbon.identity.framework user-store-feature - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/features/user-store/pom.xml b/features/user-store/pom.xml index 4793100df1c4..74e6e396e71c 100644 --- a/features/user-store/pom.xml +++ b/features/user-store/pom.xml @@ -23,7 +23,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/pom.xml b/pom.xml index d303795c821c..36318f2db33d 100644 --- a/pom.xml +++ b/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework pom - 7.7.85-SNAPSHOT + 7.7.85 WSO2 Carbon - Platform Aggregator Pom http://wso2.org @@ -36,7 +36,7 @@ https://github.com/wso2/carbon-identity-framework.git scm:git:https://github.com/wso2/carbon-identity-framework.git scm:git:https://github.com/wso2/carbon-identity-framework.git - HEAD + v7.7.85 diff --git a/service-stubs/identity/org.wso2.carbon.claim.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.claim.mgt.stub/pom.xml index a54dc4b250f9..9b04d66d7bfd 100644 --- a/service-stubs/identity/org.wso2.carbon.claim.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.claim.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.directory.server.manager.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.directory.server.manager.stub/pom.xml index 58a99dd96abb..82236157f2b7 100644 --- a/service-stubs/identity/org.wso2.carbon.directory.server.manager.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.directory.server.manager.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.application.authentication.framework.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.application.authentication.framework.stub/pom.xml index 17f615344d0e..6ecd13984f09 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.application.authentication.framework.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.application.authentication.framework.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml 4.0.0 diff --git a/service-stubs/identity/org.wso2.carbon.identity.application.default.authentication.sequence.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.application.default.authentication.sequence.mgt.stub/pom.xml index 4f6f9970d2c4..d72d8890b3cf 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.application.default.authentication.sequence.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.application.default.authentication.sequence.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.application.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.application.mgt.stub/pom.xml index 2f77077f4ec8..4a1265601abc 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.application.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.application.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.claim.metadata.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.claim.metadata.mgt.stub/pom.xml index dc4b3cabf0df..60886577bd18 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.claim.metadata.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.claim.metadata.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.functions.library.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.functions.library.mgt.stub/pom.xml index bfa88520f1b4..1df0755b96ac 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.functions.library.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.functions.library.mgt.stub/pom.xml @@ -21,7 +21,7 @@ carbon-service-stubs org.wso2.carbon.identity.framework - 7.7.85-SNAPSHOT + 7.7.85 4.0.0 diff --git a/service-stubs/identity/org.wso2.carbon.identity.governance.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.governance.stub/pom.xml index 0a3750fce3b9..b80a99b7b056 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.governance.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.governance.stub/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.mgt.stub/pom.xml index 4f13283101dd..e1045474bd2a 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.user.profile.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.user.profile.stub/pom.xml index aabb90795c68..312badaa3b39 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.user.profile.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.user.profile.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.user.registration.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.user.registration.stub/pom.xml index b2b2af9cd1ef..dba3d429c839 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.user.registration.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.user.registration.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.user.store.configuration.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.user.store.configuration.stub/pom.xml index a5b8ff8eaf61..d1e02a4896d3 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.user.store.configuration.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.user.store.configuration.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.user.store.count.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.user.store.count.stub/pom.xml index cce228c66c86..f0d13083886a 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.user.store.count.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.user.store.count.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.idp.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.idp.mgt.stub/pom.xml index 73c82142281f..6de8fbecb2cf 100644 --- a/service-stubs/identity/org.wso2.carbon.idp.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.idp.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.security.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.security.mgt.stub/pom.xml index 681cbde21995..97723050dba1 100644 --- a/service-stubs/identity/org.wso2.carbon.security.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.security.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.user.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.user.mgt.stub/pom.xml index 04b0515d833f..4ec9b712c218 100644 --- a/service-stubs/identity/org.wso2.carbon.user.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.user.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.85-SNAPSHOT + 7.7.85 ../pom.xml diff --git a/service-stubs/identity/pom.xml b/service-stubs/identity/pom.xml index 4acb6cfd3bfa..df774f6d5f4e 100644 --- a/service-stubs/identity/pom.xml +++ b/service-stubs/identity/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml diff --git a/test-utils/org.wso2.carbon.identity.testutil/pom.xml b/test-utils/org.wso2.carbon.identity.testutil/pom.xml index 4608efcc1346..df049ffb40aa 100644 --- a/test-utils/org.wso2.carbon.identity.testutil/pom.xml +++ b/test-utils/org.wso2.carbon.identity.testutil/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85-SNAPSHOT + 7.7.85 ../../pom.xml From 2f90b3a0189a53d1b9766a69fd70053d909e4ba3 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 9 Jan 2025 11:36:45 +0000 Subject: [PATCH 08/10] [WSO2 Release] [Jenkins #8235] [Release 7.7.85] prepare for next development iteration --- .../org.wso2.carbon.identity.action.execution/pom.xml | 2 +- .../org.wso2.carbon.identity.action.management/pom.xml | 2 +- components/action-mgt/pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.api.resource.mgt/pom.xml | 2 +- components/api-resource-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.application.common/pom.xml | 2 +- .../org.wso2.carbon.identity.application.mgt.ui/pom.xml | 2 +- .../org.wso2.carbon.identity.application.mgt/pom.xml | 2 +- components/application-mgt/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- components/authentication-framework/pom.xml | 2 +- components/captcha-mgt/org.wso2.carbon.captcha.mgt/pom.xml | 2 +- components/captcha-mgt/pom.xml | 2 +- components/carbon-authenticators/pom.xml | 2 +- .../org.wso2.carbon.identity.authenticator.thrift/pom.xml | 2 +- components/carbon-authenticators/thrift-authenticator/pom.xml | 2 +- .../org.wso2.carbon.identity.central.log.mgt/pom.xml | 2 +- components/central-logger/pom.xml | 2 +- .../org.wso2.carbon.identity.certificate.management/pom.xml | 2 +- components/certificate-mgt/pom.xml | 2 +- components/claim-mgt/org.wso2.carbon.claim.mgt.ui/pom.xml | 2 +- components/claim-mgt/org.wso2.carbon.claim.mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.claim.metadata.mgt.ui/pom.xml | 2 +- .../org.wso2.carbon.identity.claim.metadata.mgt/pom.xml | 2 +- components/claim-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.client.attestation.mgt/pom.xml | 2 +- components/client-attestation-mgt/pom.xml | 2 +- .../pom.xml | 4 ++-- .../org.wso2.carbon.identity.configuration.mgt.core/pom.xml | 2 +- .../pom.xml | 2 +- components/configuration-mgt/pom.xml | 2 +- .../consent-mgt/org.wso2.carbon.identity.consent.mgt/pom.xml | 2 +- components/consent-mgt/pom.xml | 2 +- .../pom.xml | 2 +- components/consent-server-configs-mgt/pom.xml | 2 +- .../cors-mgt/org.wso2.carbon.identity.cors.mgt.core/pom.xml | 2 +- components/cors-mgt/pom.xml | 2 +- .../org.wso2.carbon.directory.server.manager.common/pom.xml | 2 +- .../org.wso2.carbon.directory.server.manager.ui/pom.xml | 2 +- .../org.wso2.carbon.directory.server.manager/pom.xml | 2 +- components/directory-server-manager/pom.xml | 2 +- .../org.wso2.carbon.identity.extension.mgt/pom.xml | 2 +- components/extension-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.functions.library.mgt.ui/pom.xml | 2 +- .../org.wso2.carbon.identity.functions.library.mgt/pom.xml | 2 +- components/functions-library-mgt/pom.xml | 2 +- .../identity-core/org.wso2.carbon.identity.base/pom.xml | 2 +- .../identity-core/org.wso2.carbon.identity.core.ui/pom.xml | 2 +- .../identity-core/org.wso2.carbon.identity.core/pom.xml | 2 +- components/identity-core/pom.xml | 2 +- .../identity-event/org.wso2.carbon.identity.event/pom.xml | 2 +- components/identity-event/pom.xml | 2 +- .../org.wso2.carbon.identity.mgt.endpoint.util/pom.xml | 2 +- .../identity-mgt/org.wso2.carbon.identity.mgt.ui/pom.xml | 2 +- components/identity-mgt/org.wso2.carbon.identity.mgt/pom.xml | 2 +- components/identity-mgt/pom.xml | 2 +- components/idp-mgt/org.wso2.carbon.idp.mgt.ui/pom.xml | 2 +- components/idp-mgt/org.wso2.carbon.idp.mgt/pom.xml | 2 +- components/idp-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.input.validation.mgt/pom.xml | 2 +- components/input-validation-mgt/pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.unique.claim.mgt/pom.xml | 2 +- components/multi-attribute-login/pom.xml | 2 +- .../org.wso2.carbon.identity.notification.mgt/pom.xml | 2 +- components/notification-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.provisioning/pom.xml | 2 +- components/provisioning/pom.xml | 2 +- .../role-mgt/org.wso2.carbon.identity.role.mgt.core/pom.xml | 2 +- .../org.wso2.carbon.identity.role.v2.mgt.core/pom.xml | 2 +- components/role-mgt/pom.xml | 2 +- .../rule-mgt/org.wso2.carbon.identity.rule.management/pom.xml | 2 +- .../rule-mgt/org.wso2.carbon.identity.rule.metadata/pom.xml | 2 +- components/rule-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.secret.mgt.core/pom.xml | 2 +- components/secret-mgt/pom.xml | 2 +- .../security-mgt/org.wso2.carbon.security.mgt.ui/pom.xml | 2 +- components/security-mgt/org.wso2.carbon.security.mgt/pom.xml | 2 +- components/security-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.template.mgt.ui/pom.xml | 2 +- .../org.wso2.carbon.identity.template.mgt/pom.xml | 2 +- components/template-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.trusted.app.mgt/pom.xml | 2 +- components/trusted-app-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.user.functionality.mgt/pom.xml | 2 +- components/user-functionality-mgt/pom.xml | 2 +- .../user-mgt/org.wso2.carbon.identity.user.profile.ui/pom.xml | 2 +- .../user-mgt/org.wso2.carbon.identity.user.profile/pom.xml | 2 +- .../org.wso2.carbon.identity.user.registration/pom.xml | 2 +- components/user-mgt/org.wso2.carbon.role.mgt.ui/pom.xml | 2 +- components/user-mgt/org.wso2.carbon.user.mgt.common/pom.xml | 2 +- components/user-mgt/org.wso2.carbon.user.mgt.ui/pom.xml | 2 +- components/user-mgt/org.wso2.carbon.user.mgt/pom.xml | 2 +- components/user-mgt/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.user.store.configuration/pom.xml | 2 +- .../org.wso2.carbon.identity.user.store.count/pom.xml | 2 +- components/user-store/pom.xml | 2 +- .../pom.xml | 2 +- features/action-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/api-resource-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.application.mgt.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- features/application-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/authentication-framework/pom.xml | 2 +- features/carbon-authenticators/pom.xml | 2 +- .../pom.xml | 2 +- features/carbon-authenticators/thrift-authenticator/pom.xml | 2 +- features/categories/authorization/pom.xml | 2 +- features/categories/inbound-authentication/pom.xml | 2 +- features/categories/inbound-provisioning/pom.xml | 2 +- features/categories/keystore-mgt/pom.xml | 2 +- features/categories/notification-mgt/pom.xml | 2 +- features/categories/outbound-authentication/pom.xml | 2 +- features/categories/outbound-provisioning/pom.xml | 2 +- features/categories/pom.xml | 2 +- features/categories/user-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/central-logger/pom.xml | 2 +- .../pom.xml | 2 +- features/certificate-mgt/pom.xml | 2 +- features/claim-mgt/org.wso2.carbon.claim.mgt.feature/pom.xml | 2 +- .../org.wso2.carbon.claim.mgt.server.feature/pom.xml | 2 +- .../claim-mgt/org.wso2.carbon.claim.mgt.ui.feature/pom.xml | 2 +- features/claim-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/client-attestation-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/configuration-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/consent-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/consent-server-configs-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.cors.mgt.server.feature/pom.xml | 2 +- features/cors-mgt/pom.xml | 2 +- .../org.wso2.carbon.directory.service.mgr.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.directory.service.mgr.ui.feature/pom.xml | 2 +- features/directory-server-manager/pom.xml | 2 +- .../org.wso2.carbon.identity.extension.mgt.feature/pom.xml | 2 +- features/extension-mgt/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- features/functions-library-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.core.feature/pom.xml | 2 +- .../org.wso2.carbon.identity.core.server.feature/pom.xml | 2 +- .../org.wso2.carbon.identity.core.ui.feature/pom.xml | 2 +- features/identity-core/pom.xml | 2 +- .../org.wso2.carbon.identity.event.feature/pom.xml | 2 +- .../org.wso2.carbon.identity.event.server.feature/pom.xml | 2 +- features/identity-event/pom.xml | 2 +- .../identity-mgt/org.wso2.carbon.identity.mgt.feature/pom.xml | 2 +- .../org.wso2.carbon.identity.mgt.server.feature/pom.xml | 2 +- .../org.wso2.carbon.identity.mgt.ui.feature/pom.xml | 2 +- features/identity-mgt/pom.xml | 2 +- features/idp-mgt/org.wso2.carbon.idp.mgt.feature/pom.xml | 2 +- .../idp-mgt/org.wso2.carbon.idp.mgt.server.feature/pom.xml | 2 +- features/idp-mgt/org.wso2.carbon.idp.mgt.ui.feature/pom.xml | 2 +- features/idp-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/input-validation-mgt/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- features/multi-attribute-login/pom.xml | 2 +- .../org.wso2.carbon.identity.notification.mgt.feature/pom.xml | 2 +- .../pom.xml | 2 +- features/notification-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/provisioning/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- features/role-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/rule-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/secret-mgt/pom.xml | 2 +- .../security-mgt/org.wso2.carbon.security.mgt.feature/pom.xml | 2 +- .../org.wso2.carbon.security.mgt.server.feature/pom.xml | 2 +- .../org.wso2.carbon.security.mgt.ui.feature/pom.xml | 2 +- features/security-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.template.mgt.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.template.mgt.ui.feature/pom.xml | 2 +- features/template-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/trusted-app-mgt/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- features/user-functionality-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.user.profile.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.user.profile.ui.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- features/user-mgt/org.wso2.carbon.role.mgt.ui.feature/pom.xml | 2 +- features/user-mgt/org.wso2.carbon.user.mgt.feature/pom.xml | 2 +- .../user-mgt/org.wso2.carbon.user.mgt.server.feature/pom.xml | 2 +- features/user-mgt/org.wso2.carbon.user.mgt.ui.feature/pom.xml | 2 +- features/user-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/user-store/pom.xml | 2 +- pom.xml | 4 ++-- service-stubs/identity/org.wso2.carbon.claim.mgt.stub/pom.xml | 2 +- .../org.wso2.carbon.directory.server.manager.stub/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.application.mgt.stub/pom.xml | 2 +- .../org.wso2.carbon.identity.claim.metadata.mgt.stub/pom.xml | 2 +- .../pom.xml | 2 +- .../identity/org.wso2.carbon.identity.governance.stub/pom.xml | 2 +- .../identity/org.wso2.carbon.identity.mgt.stub/pom.xml | 2 +- .../org.wso2.carbon.identity.user.profile.stub/pom.xml | 2 +- .../org.wso2.carbon.identity.user.registration.stub/pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.user.store.count.stub/pom.xml | 2 +- service-stubs/identity/org.wso2.carbon.idp.mgt.stub/pom.xml | 2 +- .../identity/org.wso2.carbon.security.mgt.stub/pom.xml | 2 +- service-stubs/identity/org.wso2.carbon.user.mgt.stub/pom.xml | 2 +- service-stubs/identity/pom.xml | 2 +- test-utils/org.wso2.carbon.identity.testutil/pom.xml | 2 +- 228 files changed, 230 insertions(+), 230 deletions(-) diff --git a/components/action-mgt/org.wso2.carbon.identity.action.execution/pom.xml b/components/action-mgt/org.wso2.carbon.identity.action.execution/pom.xml index f2ee340a77a1..ecd246d66485 100644 --- a/components/action-mgt/org.wso2.carbon.identity.action.execution/pom.xml +++ b/components/action-mgt/org.wso2.carbon.identity.action.execution/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework action-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/action-mgt/org.wso2.carbon.identity.action.management/pom.xml b/components/action-mgt/org.wso2.carbon.identity.action.management/pom.xml index 604e8312c8b9..e5479edbaa83 100644 --- a/components/action-mgt/org.wso2.carbon.identity.action.management/pom.xml +++ b/components/action-mgt/org.wso2.carbon.identity.action.management/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework action-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/action-mgt/pom.xml b/components/action-mgt/pom.xml index ec7c84e09ea8..fef6fcbcb5eb 100644 --- a/components/action-mgt/pom.xml +++ b/components/action-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.collection.mgt/pom.xml b/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.collection.mgt/pom.xml index 4b745ec7f303..e60cae5cd560 100644 --- a/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.collection.mgt/pom.xml +++ b/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.collection.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework api-resource-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt/pom.xml b/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt/pom.xml index 31db3d52849f..90d207d8c253 100644 --- a/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt/pom.xml +++ b/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework api-resource-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml org.wso2.carbon.identity.api.resource.mgt diff --git a/components/api-resource-mgt/pom.xml b/components/api-resource-mgt/pom.xml index 079ac79ded6f..d78a6d875108 100644 --- a/components/api-resource-mgt/pom.xml +++ b/components/api-resource-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/application-mgt/org.wso2.carbon.identity.application.common/pom.xml b/components/application-mgt/org.wso2.carbon.identity.application.common/pom.xml index 682bf46e1f33..3ef15161fe36 100644 --- a/components/application-mgt/org.wso2.carbon.identity.application.common/pom.xml +++ b/components/application-mgt/org.wso2.carbon.identity.application.common/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.framework application-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/application-mgt/org.wso2.carbon.identity.application.mgt.ui/pom.xml b/components/application-mgt/org.wso2.carbon.identity.application.mgt.ui/pom.xml index 189e8d0dfac6..add6192cd151 100644 --- a/components/application-mgt/org.wso2.carbon.identity.application.mgt.ui/pom.xml +++ b/components/application-mgt/org.wso2.carbon.identity.application.mgt.ui/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework application-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/application-mgt/org.wso2.carbon.identity.application.mgt/pom.xml b/components/application-mgt/org.wso2.carbon.identity.application.mgt/pom.xml index efad579efdb1..959253f07895 100644 --- a/components/application-mgt/org.wso2.carbon.identity.application.mgt/pom.xml +++ b/components/application-mgt/org.wso2.carbon.identity.application.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework application-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml org.wso2.carbon.identity.application.mgt diff --git a/components/application-mgt/pom.xml b/components/application-mgt/pom.xml index bce5df14b828..f0e7585416af 100644 --- a/components/application-mgt/pom.xml +++ b/components/application-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/authentication-framework/org.wso2.carbon.identity.application.authentication.endpoint.util/pom.xml b/components/authentication-framework/org.wso2.carbon.identity.application.authentication.endpoint.util/pom.xml index 83ca90004560..d40883f6c327 100644 --- a/components/authentication-framework/org.wso2.carbon.identity.application.authentication.endpoint.util/pom.xml +++ b/components/authentication-framework/org.wso2.carbon.identity.application.authentication.endpoint.util/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework authentication-framework - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/authentication-framework/org.wso2.carbon.identity.application.authentication.framework/pom.xml b/components/authentication-framework/org.wso2.carbon.identity.application.authentication.framework/pom.xml index c3fa33594fcc..2de6e90c6698 100644 --- a/components/authentication-framework/org.wso2.carbon.identity.application.authentication.framework/pom.xml +++ b/components/authentication-framework/org.wso2.carbon.identity.application.authentication.framework/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework authentication-framework - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/authentication-framework/pom.xml b/components/authentication-framework/pom.xml index b0746f454913..964f903384a7 100644 --- a/components/authentication-framework/pom.xml +++ b/components/authentication-framework/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/captcha-mgt/org.wso2.carbon.captcha.mgt/pom.xml b/components/captcha-mgt/org.wso2.carbon.captcha.mgt/pom.xml index 5549584513e7..19c344e8f064 100644 --- a/components/captcha-mgt/org.wso2.carbon.captcha.mgt/pom.xml +++ b/components/captcha-mgt/org.wso2.carbon.captcha.mgt/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework captcha-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/captcha-mgt/pom.xml b/components/captcha-mgt/pom.xml index 06714ec8605e..16a798e2874a 100644 --- a/components/captcha-mgt/pom.xml +++ b/components/captcha-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/carbon-authenticators/pom.xml b/components/carbon-authenticators/pom.xml index 560f0fcf8f8b..c4133af1922b 100644 --- a/components/carbon-authenticators/pom.xml +++ b/components/carbon-authenticators/pom.xml @@ -17,7 +17,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.authenticator.thrift/pom.xml b/components/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.authenticator.thrift/pom.xml index 0cfdab1ffa5c..01a521d939f0 100644 --- a/components/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.authenticator.thrift/pom.xml +++ b/components/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.authenticator.thrift/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework thrift-authenticator - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/carbon-authenticators/thrift-authenticator/pom.xml b/components/carbon-authenticators/thrift-authenticator/pom.xml index bf38950e2c2d..00de7a035854 100644 --- a/components/carbon-authenticators/thrift-authenticator/pom.xml +++ b/components/carbon-authenticators/thrift-authenticator/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework carbon-authenticators - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/central-logger/org.wso2.carbon.identity.central.log.mgt/pom.xml b/components/central-logger/org.wso2.carbon.identity.central.log.mgt/pom.xml index fcf8c9ac5872..7dfb6eee09ef 100644 --- a/components/central-logger/org.wso2.carbon.identity.central.log.mgt/pom.xml +++ b/components/central-logger/org.wso2.carbon.identity.central.log.mgt/pom.xml @@ -21,7 +21,7 @@ central-logger org.wso2.carbon.identity.framework - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml 4.0.0 diff --git a/components/central-logger/pom.xml b/components/central-logger/pom.xml index f4e6cbe8c5d4..fd16f07c8217 100644 --- a/components/central-logger/pom.xml +++ b/components/central-logger/pom.xml @@ -21,7 +21,7 @@ identity-framework org.wso2.carbon.identity.framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/certificate-mgt/org.wso2.carbon.identity.certificate.management/pom.xml b/components/certificate-mgt/org.wso2.carbon.identity.certificate.management/pom.xml index 6ea544338cb0..f5ac510d1311 100644 --- a/components/certificate-mgt/org.wso2.carbon.identity.certificate.management/pom.xml +++ b/components/certificate-mgt/org.wso2.carbon.identity.certificate.management/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework certificate-mgt - 7.7.85 + 7.7.86-SNAPSHOT 4.0.0 diff --git a/components/certificate-mgt/pom.xml b/components/certificate-mgt/pom.xml index 653ddf6f4558..dd620d6adcc8 100644 --- a/components/certificate-mgt/pom.xml +++ b/components/certificate-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/claim-mgt/org.wso2.carbon.claim.mgt.ui/pom.xml b/components/claim-mgt/org.wso2.carbon.claim.mgt.ui/pom.xml index 575c0b6e215a..a436a6518e17 100644 --- a/components/claim-mgt/org.wso2.carbon.claim.mgt.ui/pom.xml +++ b/components/claim-mgt/org.wso2.carbon.claim.mgt.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework claim-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/claim-mgt/org.wso2.carbon.claim.mgt/pom.xml b/components/claim-mgt/org.wso2.carbon.claim.mgt/pom.xml index acddc6c3fb76..29b3b5c7b1d0 100644 --- a/components/claim-mgt/org.wso2.carbon.claim.mgt/pom.xml +++ b/components/claim-mgt/org.wso2.carbon.claim.mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework claim-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt.ui/pom.xml b/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt.ui/pom.xml index 7f6300af2a5d..5a6acd5981ea 100644 --- a/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt.ui/pom.xml +++ b/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt.ui/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework claim-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt/pom.xml b/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt/pom.xml index 30edfeeb1055..c3a4200fa7ae 100644 --- a/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt/pom.xml +++ b/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework claim-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/claim-mgt/pom.xml b/components/claim-mgt/pom.xml index 6a7fc470aa0a..7a81b83fbb19 100644 --- a/components/claim-mgt/pom.xml +++ b/components/claim-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt/pom.xml b/components/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt/pom.xml index ae097784a15c..d3b99ee21c63 100644 --- a/components/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt/pom.xml +++ b/components/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt/pom.xml @@ -23,7 +23,7 @@ org.wso2.carbon.identity.framework client-attestation-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/client-attestation-mgt/pom.xml b/components/client-attestation-mgt/pom.xml index 6a6ca5396f58..632bad67be81 100644 --- a/components/client-attestation-mgt/pom.xml +++ b/components/client-attestation-mgt/pom.xml @@ -23,7 +23,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/configuration-mgt/org.wso2.carbon.identity.api.server.configuration.mgt/pom.xml b/components/configuration-mgt/org.wso2.carbon.identity.api.server.configuration.mgt/pom.xml index 17c3a084bb2f..420480762a28 100644 --- a/components/configuration-mgt/org.wso2.carbon.identity.api.server.configuration.mgt/pom.xml +++ b/components/configuration-mgt/org.wso2.carbon.identity.api.server.configuration.mgt/pom.xml @@ -23,11 +23,11 @@ org.wso2.carbon.identity.framework configuration-mgt - 7.7.85 + 7.7.86-SNAPSHOT org.wso2.carbon.identity.api.server.configuration.mgt - 7.7.85 + 7.7.86-SNAPSHOT jar WSO2 Carbon - Configuration Management API Identity Configuration Management API diff --git a/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.core/pom.xml b/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.core/pom.xml index f56ecc88cfa1..34a424848653 100644 --- a/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.core/pom.xml +++ b/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.core/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework configuration-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.endpoint/pom.xml b/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.endpoint/pom.xml index 879f8f4fe704..5ec1bb5dc35e 100644 --- a/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.endpoint/pom.xml +++ b/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.endpoint/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework configuration-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/configuration-mgt/pom.xml b/components/configuration-mgt/pom.xml index 4be0d27c01fc..29b54e0143a9 100644 --- a/components/configuration-mgt/pom.xml +++ b/components/configuration-mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/consent-mgt/org.wso2.carbon.identity.consent.mgt/pom.xml b/components/consent-mgt/org.wso2.carbon.identity.consent.mgt/pom.xml index 3f378d9ac7cd..42bf914d45b3 100644 --- a/components/consent-mgt/org.wso2.carbon.identity.consent.mgt/pom.xml +++ b/components/consent-mgt/org.wso2.carbon.identity.consent.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework consent-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/consent-mgt/pom.xml b/components/consent-mgt/pom.xml index 129fbd4ae512..08cb780f62f6 100644 --- a/components/consent-mgt/pom.xml +++ b/components/consent-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt/pom.xml b/components/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt/pom.xml index c70870a589c0..ce48c0249ad1 100644 --- a/components/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt/pom.xml +++ b/components/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework consent-server-configs-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/consent-server-configs-mgt/pom.xml b/components/consent-server-configs-mgt/pom.xml index 2f09e317e96b..c6d7c5d00ac1 100644 --- a/components/consent-server-configs-mgt/pom.xml +++ b/components/consent-server-configs-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/cors-mgt/org.wso2.carbon.identity.cors.mgt.core/pom.xml b/components/cors-mgt/org.wso2.carbon.identity.cors.mgt.core/pom.xml index 57fd0d28b3f1..669d50395330 100644 --- a/components/cors-mgt/org.wso2.carbon.identity.cors.mgt.core/pom.xml +++ b/components/cors-mgt/org.wso2.carbon.identity.cors.mgt.core/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework cors-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/cors-mgt/pom.xml b/components/cors-mgt/pom.xml index a9f5ad93969d..706548c10ed8 100644 --- a/components/cors-mgt/pom.xml +++ b/components/cors-mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/directory-server-manager/org.wso2.carbon.directory.server.manager.common/pom.xml b/components/directory-server-manager/org.wso2.carbon.directory.server.manager.common/pom.xml index a55294e7fbdb..e4f79481f833 100644 --- a/components/directory-server-manager/org.wso2.carbon.directory.server.manager.common/pom.xml +++ b/components/directory-server-manager/org.wso2.carbon.directory.server.manager.common/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework directory-server-manager - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/directory-server-manager/org.wso2.carbon.directory.server.manager.ui/pom.xml b/components/directory-server-manager/org.wso2.carbon.directory.server.manager.ui/pom.xml index 78a199bf75b9..d466fc4937b0 100644 --- a/components/directory-server-manager/org.wso2.carbon.directory.server.manager.ui/pom.xml +++ b/components/directory-server-manager/org.wso2.carbon.directory.server.manager.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework directory-server-manager - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/directory-server-manager/org.wso2.carbon.directory.server.manager/pom.xml b/components/directory-server-manager/org.wso2.carbon.directory.server.manager/pom.xml index f11640eba911..276ecbb16795 100644 --- a/components/directory-server-manager/org.wso2.carbon.directory.server.manager/pom.xml +++ b/components/directory-server-manager/org.wso2.carbon.directory.server.manager/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework directory-server-manager - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/directory-server-manager/pom.xml b/components/directory-server-manager/pom.xml index d7966972ec96..a1783cabedb9 100644 --- a/components/directory-server-manager/pom.xml +++ b/components/directory-server-manager/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/extension-mgt/org.wso2.carbon.identity.extension.mgt/pom.xml b/components/extension-mgt/org.wso2.carbon.identity.extension.mgt/pom.xml index 3bbd47a75a8b..ff21863e5a00 100644 --- a/components/extension-mgt/org.wso2.carbon.identity.extension.mgt/pom.xml +++ b/components/extension-mgt/org.wso2.carbon.identity.extension.mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework extension-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/extension-mgt/pom.xml b/components/extension-mgt/pom.xml index 5b3d392b3270..78dc75b60650 100644 --- a/components/extension-mgt/pom.xml +++ b/components/extension-mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui/pom.xml b/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui/pom.xml index 4f46058466de..146148f62986 100644 --- a/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui/pom.xml +++ b/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui/pom.xml @@ -21,7 +21,7 @@ functions-library-mgt org.wso2.carbon.identity.framework - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml 4.0.0 diff --git a/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt/pom.xml b/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt/pom.xml index 004be01a65e6..c83aebb3c75c 100644 --- a/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt/pom.xml +++ b/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt/pom.xml @@ -21,7 +21,7 @@ functions-library-mgt org.wso2.carbon.identity.framework - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml 4.0.0 diff --git a/components/functions-library-mgt/pom.xml b/components/functions-library-mgt/pom.xml index 298e4dfa2387..e4f673498bc8 100644 --- a/components/functions-library-mgt/pom.xml +++ b/components/functions-library-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/identity-core/org.wso2.carbon.identity.base/pom.xml b/components/identity-core/org.wso2.carbon.identity.base/pom.xml index ea9962d9830d..5efdc099408a 100644 --- a/components/identity-core/org.wso2.carbon.identity.base/pom.xml +++ b/components/identity-core/org.wso2.carbon.identity.base/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-core - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/identity-core/org.wso2.carbon.identity.core.ui/pom.xml b/components/identity-core/org.wso2.carbon.identity.core.ui/pom.xml index 4682351eded0..def504ba7d32 100644 --- a/components/identity-core/org.wso2.carbon.identity.core.ui/pom.xml +++ b/components/identity-core/org.wso2.carbon.identity.core.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-core - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/identity-core/org.wso2.carbon.identity.core/pom.xml b/components/identity-core/org.wso2.carbon.identity.core/pom.xml index 3b0c14eb0810..060c68b290f1 100644 --- a/components/identity-core/org.wso2.carbon.identity.core/pom.xml +++ b/components/identity-core/org.wso2.carbon.identity.core/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-core - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/identity-core/pom.xml b/components/identity-core/pom.xml index f211ec46cb22..572a6581efbe 100644 --- a/components/identity-core/pom.xml +++ b/components/identity-core/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/identity-event/org.wso2.carbon.identity.event/pom.xml b/components/identity-event/org.wso2.carbon.identity.event/pom.xml index ae346309ad80..5a3296cc1fc0 100644 --- a/components/identity-event/org.wso2.carbon.identity.event/pom.xml +++ b/components/identity-event/org.wso2.carbon.identity.event/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-event - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/identity-event/pom.xml b/components/identity-event/pom.xml index a5491575cf47..95ce9db8f91e 100644 --- a/components/identity-event/pom.xml +++ b/components/identity-event/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/identity-mgt/org.wso2.carbon.identity.mgt.endpoint.util/pom.xml b/components/identity-mgt/org.wso2.carbon.identity.mgt.endpoint.util/pom.xml index 0a6d60c85867..1dc7f0a2fb7b 100644 --- a/components/identity-mgt/org.wso2.carbon.identity.mgt.endpoint.util/pom.xml +++ b/components/identity-mgt/org.wso2.carbon.identity.mgt.endpoint.util/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/identity-mgt/org.wso2.carbon.identity.mgt.ui/pom.xml b/components/identity-mgt/org.wso2.carbon.identity.mgt.ui/pom.xml index abc0d4db5fe6..c7070e9bfa42 100644 --- a/components/identity-mgt/org.wso2.carbon.identity.mgt.ui/pom.xml +++ b/components/identity-mgt/org.wso2.carbon.identity.mgt.ui/pom.xml @@ -23,7 +23,7 @@ org.wso2.carbon.identity.framework identity-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/identity-mgt/org.wso2.carbon.identity.mgt/pom.xml b/components/identity-mgt/org.wso2.carbon.identity.mgt/pom.xml index 828661366259..71e4484747e0 100644 --- a/components/identity-mgt/org.wso2.carbon.identity.mgt/pom.xml +++ b/components/identity-mgt/org.wso2.carbon.identity.mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/identity-mgt/pom.xml b/components/identity-mgt/pom.xml index 18422a48b5ee..b9ebf64ae302 100644 --- a/components/identity-mgt/pom.xml +++ b/components/identity-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/idp-mgt/org.wso2.carbon.idp.mgt.ui/pom.xml b/components/idp-mgt/org.wso2.carbon.idp.mgt.ui/pom.xml index 269955a99274..08851699e7cd 100644 --- a/components/idp-mgt/org.wso2.carbon.idp.mgt.ui/pom.xml +++ b/components/idp-mgt/org.wso2.carbon.idp.mgt.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-provider-management - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/idp-mgt/org.wso2.carbon.idp.mgt/pom.xml b/components/idp-mgt/org.wso2.carbon.idp.mgt/pom.xml index 8b2ae1b11f9e..d9129dd71ce8 100644 --- a/components/idp-mgt/org.wso2.carbon.idp.mgt/pom.xml +++ b/components/idp-mgt/org.wso2.carbon.idp.mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-provider-management - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/idp-mgt/pom.xml b/components/idp-mgt/pom.xml index f55492593c14..d0a821b1f158 100644 --- a/components/idp-mgt/pom.xml +++ b/components/idp-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt/pom.xml b/components/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt/pom.xml index 57451a4189c6..3444ef7c8234 100644 --- a/components/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt/pom.xml +++ b/components/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework input-validation-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/input-validation-mgt/pom.xml b/components/input-validation-mgt/pom.xml index f2b3e17a2136..613d83ad4f7e 100644 --- a/components/input-validation-mgt/pom.xml +++ b/components/input-validation-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt/pom.xml b/components/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt/pom.xml index d2f6b53ca781..3eb87f99261c 100644 --- a/components/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt/pom.xml +++ b/components/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt/pom.xml @@ -21,7 +21,7 @@ multi-attribute-login org.wso2.carbon.identity.framework - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml 4.0.0 diff --git a/components/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt/pom.xml b/components/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt/pom.xml index 5f44b127450c..3ab86c9becb4 100644 --- a/components/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt/pom.xml +++ b/components/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt/pom.xml @@ -21,7 +21,7 @@ multi-attribute-login org.wso2.carbon.identity.framework - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml 4.0.0 diff --git a/components/multi-attribute-login/pom.xml b/components/multi-attribute-login/pom.xml index 8feaeb323585..279faca5df25 100644 --- a/components/multi-attribute-login/pom.xml +++ b/components/multi-attribute-login/pom.xml @@ -21,7 +21,7 @@ identity-framework org.wso2.carbon.identity.framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/components/notification-mgt/org.wso2.carbon.identity.notification.mgt/pom.xml b/components/notification-mgt/org.wso2.carbon.identity.notification.mgt/pom.xml index f0b66837f974..605d334a8d09 100644 --- a/components/notification-mgt/org.wso2.carbon.identity.notification.mgt/pom.xml +++ b/components/notification-mgt/org.wso2.carbon.identity.notification.mgt/pom.xml @@ -23,7 +23,7 @@ org.wso2.carbon.identity.framework notification-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/notification-mgt/pom.xml b/components/notification-mgt/pom.xml index 364164bebde6..a557b9687e46 100644 --- a/components/notification-mgt/pom.xml +++ b/components/notification-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/provisioning/org.wso2.carbon.identity.provisioning/pom.xml b/components/provisioning/org.wso2.carbon.identity.provisioning/pom.xml index bd80bae8627c..fa2b6720cfb3 100644 --- a/components/provisioning/org.wso2.carbon.identity.provisioning/pom.xml +++ b/components/provisioning/org.wso2.carbon.identity.provisioning/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework provisioning - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/provisioning/pom.xml b/components/provisioning/pom.xml index 9e013382161a..61d20baca5ba 100644 --- a/components/provisioning/pom.xml +++ b/components/provisioning/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/role-mgt/org.wso2.carbon.identity.role.mgt.core/pom.xml b/components/role-mgt/org.wso2.carbon.identity.role.mgt.core/pom.xml index f7379d2156b9..8bace96b465a 100644 --- a/components/role-mgt/org.wso2.carbon.identity.role.mgt.core/pom.xml +++ b/components/role-mgt/org.wso2.carbon.identity.role.mgt.core/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework role-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core/pom.xml b/components/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core/pom.xml index 0ce374e3afd2..7537ec1ee018 100644 --- a/components/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core/pom.xml +++ b/components/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework role-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/role-mgt/pom.xml b/components/role-mgt/pom.xml index 782fb9b1688b..596fe70cfdf4 100644 --- a/components/role-mgt/pom.xml +++ b/components/role-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/rule-mgt/org.wso2.carbon.identity.rule.management/pom.xml b/components/rule-mgt/org.wso2.carbon.identity.rule.management/pom.xml index b1ddd03bfc95..d35c54de2a76 100644 --- a/components/rule-mgt/org.wso2.carbon.identity.rule.management/pom.xml +++ b/components/rule-mgt/org.wso2.carbon.identity.rule.management/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework rule-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/rule-mgt/org.wso2.carbon.identity.rule.metadata/pom.xml b/components/rule-mgt/org.wso2.carbon.identity.rule.metadata/pom.xml index 3845ee7d8317..55d556f0142a 100644 --- a/components/rule-mgt/org.wso2.carbon.identity.rule.metadata/pom.xml +++ b/components/rule-mgt/org.wso2.carbon.identity.rule.metadata/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework rule-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/rule-mgt/pom.xml b/components/rule-mgt/pom.xml index 2700db11990e..014d1d569141 100644 --- a/components/rule-mgt/pom.xml +++ b/components/rule-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/secret-mgt/org.wso2.carbon.identity.secret.mgt.core/pom.xml b/components/secret-mgt/org.wso2.carbon.identity.secret.mgt.core/pom.xml index 10f0a4a638a4..890aca43022c 100644 --- a/components/secret-mgt/org.wso2.carbon.identity.secret.mgt.core/pom.xml +++ b/components/secret-mgt/org.wso2.carbon.identity.secret.mgt.core/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework secret-mgt - 7.7.85 + 7.7.86-SNAPSHOT 4.0.0 diff --git a/components/secret-mgt/pom.xml b/components/secret-mgt/pom.xml index 83557bd25887..6f0ecf963cb8 100644 --- a/components/secret-mgt/pom.xml +++ b/components/secret-mgt/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/security-mgt/org.wso2.carbon.security.mgt.ui/pom.xml b/components/security-mgt/org.wso2.carbon.security.mgt.ui/pom.xml index 7ada7db0827d..19a4eaa449ae 100644 --- a/components/security-mgt/org.wso2.carbon.security.mgt.ui/pom.xml +++ b/components/security-mgt/org.wso2.carbon.security.mgt.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework security-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/security-mgt/org.wso2.carbon.security.mgt/pom.xml b/components/security-mgt/org.wso2.carbon.security.mgt/pom.xml index 93030bc4e503..02b0a7679adc 100644 --- a/components/security-mgt/org.wso2.carbon.security.mgt/pom.xml +++ b/components/security-mgt/org.wso2.carbon.security.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework security-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/security-mgt/pom.xml b/components/security-mgt/pom.xml index 24dc1039fd5e..65822bd3d7f1 100644 --- a/components/security-mgt/pom.xml +++ b/components/security-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/template-mgt/org.wso2.carbon.identity.template.mgt.ui/pom.xml b/components/template-mgt/org.wso2.carbon.identity.template.mgt.ui/pom.xml index 24f20a488f36..1c0d9f5ffdeb 100644 --- a/components/template-mgt/org.wso2.carbon.identity.template.mgt.ui/pom.xml +++ b/components/template-mgt/org.wso2.carbon.identity.template.mgt.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework template-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml 4.0.0 diff --git a/components/template-mgt/org.wso2.carbon.identity.template.mgt/pom.xml b/components/template-mgt/org.wso2.carbon.identity.template.mgt/pom.xml index 08130867ef72..a480ba3b7361 100644 --- a/components/template-mgt/org.wso2.carbon.identity.template.mgt/pom.xml +++ b/components/template-mgt/org.wso2.carbon.identity.template.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework template-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml 4.0.0 diff --git a/components/template-mgt/pom.xml b/components/template-mgt/pom.xml index d67ab2a9865b..1ff102534746 100644 --- a/components/template-mgt/pom.xml +++ b/components/template-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt/pom.xml b/components/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt/pom.xml index ed19d74cb504..e34caeef995f 100644 --- a/components/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt/pom.xml +++ b/components/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework trusted-app-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/trusted-app-mgt/pom.xml b/components/trusted-app-mgt/pom.xml index 7aaa98cd0a2b..98f7c4b1bdd3 100644 --- a/components/trusted-app-mgt/pom.xml +++ b/components/trusted-app-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt/pom.xml b/components/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt/pom.xml index 508b0627311a..50c42db4d5e5 100644 --- a/components/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt/pom.xml +++ b/components/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt/pom.xml @@ -21,7 +21,7 @@ user-functionality-mgt org.wso2.carbon.identity.framework - 7.7.85 + 7.7.86-SNAPSHOT 4.0.0 diff --git a/components/user-functionality-mgt/pom.xml b/components/user-functionality-mgt/pom.xml index 0482afa6a160..aef9bb2a7cc4 100644 --- a/components/user-functionality-mgt/pom.xml +++ b/components/user-functionality-mgt/pom.xml @@ -21,7 +21,7 @@ identity-framework org.wso2.carbon.identity.framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/user-mgt/org.wso2.carbon.identity.user.profile.ui/pom.xml b/components/user-mgt/org.wso2.carbon.identity.user.profile.ui/pom.xml index 60dccd9dcafd..076b27a06da2 100644 --- a/components/user-mgt/org.wso2.carbon.identity.user.profile.ui/pom.xml +++ b/components/user-mgt/org.wso2.carbon.identity.user.profile.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/user-mgt/org.wso2.carbon.identity.user.profile/pom.xml b/components/user-mgt/org.wso2.carbon.identity.user.profile/pom.xml index 30d2f068e522..18c445f1081e 100644 --- a/components/user-mgt/org.wso2.carbon.identity.user.profile/pom.xml +++ b/components/user-mgt/org.wso2.carbon.identity.user.profile/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/user-mgt/org.wso2.carbon.identity.user.registration/pom.xml b/components/user-mgt/org.wso2.carbon.identity.user.registration/pom.xml index c2dc77b29892..127e92e7a16b 100644 --- a/components/user-mgt/org.wso2.carbon.identity.user.registration/pom.xml +++ b/components/user-mgt/org.wso2.carbon.identity.user.registration/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/user-mgt/org.wso2.carbon.role.mgt.ui/pom.xml b/components/user-mgt/org.wso2.carbon.role.mgt.ui/pom.xml index 9be4b85e2f51..faae609d8d36 100644 --- a/components/user-mgt/org.wso2.carbon.role.mgt.ui/pom.xml +++ b/components/user-mgt/org.wso2.carbon.role.mgt.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/user-mgt/org.wso2.carbon.user.mgt.common/pom.xml b/components/user-mgt/org.wso2.carbon.user.mgt.common/pom.xml index 859ce4ff04fe..d1e3454dd1f8 100644 --- a/components/user-mgt/org.wso2.carbon.user.mgt.common/pom.xml +++ b/components/user-mgt/org.wso2.carbon.user.mgt.common/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/user-mgt/org.wso2.carbon.user.mgt.ui/pom.xml b/components/user-mgt/org.wso2.carbon.user.mgt.ui/pom.xml index 672116314256..450de07e01f0 100644 --- a/components/user-mgt/org.wso2.carbon.user.mgt.ui/pom.xml +++ b/components/user-mgt/org.wso2.carbon.user.mgt.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/user-mgt/org.wso2.carbon.user.mgt/pom.xml b/components/user-mgt/org.wso2.carbon.user.mgt/pom.xml index 8247659e2422..ed720fb3df62 100644 --- a/components/user-mgt/org.wso2.carbon.user.mgt/pom.xml +++ b/components/user-mgt/org.wso2.carbon.user.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/user-mgt/pom.xml b/components/user-mgt/pom.xml index c7cb34bb7630..91de8ee789c8 100644 --- a/components/user-mgt/pom.xml +++ b/components/user-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/components/user-store/org.wso2.carbon.identity.user.store.configuration.deployer/pom.xml b/components/user-store/org.wso2.carbon.identity.user.store.configuration.deployer/pom.xml index fa01028c4860..c6f3936492e0 100644 --- a/components/user-store/org.wso2.carbon.identity.user.store.configuration.deployer/pom.xml +++ b/components/user-store/org.wso2.carbon.identity.user.store.configuration.deployer/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-store - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/user-store/org.wso2.carbon.identity.user.store.configuration.ui/pom.xml b/components/user-store/org.wso2.carbon.identity.user.store.configuration.ui/pom.xml index afb5354bc3d4..c030ad0da349 100644 --- a/components/user-store/org.wso2.carbon.identity.user.store.configuration.ui/pom.xml +++ b/components/user-store/org.wso2.carbon.identity.user.store.configuration.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-store - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/user-store/org.wso2.carbon.identity.user.store.configuration/pom.xml b/components/user-store/org.wso2.carbon.identity.user.store.configuration/pom.xml index bf3fe41b59f0..4bd3096d7095 100644 --- a/components/user-store/org.wso2.carbon.identity.user.store.configuration/pom.xml +++ b/components/user-store/org.wso2.carbon.identity.user.store.configuration/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-store - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/user-store/org.wso2.carbon.identity.user.store.count/pom.xml b/components/user-store/org.wso2.carbon.identity.user.store.count/pom.xml index 1e7843cca137..c3b55eb70cca 100644 --- a/components/user-store/org.wso2.carbon.identity.user.store.count/pom.xml +++ b/components/user-store/org.wso2.carbon.identity.user.store.count/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-store - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/components/user-store/pom.xml b/components/user-store/pom.xml index f30b1d64cde9..b47213db40b1 100644 --- a/components/user-store/pom.xml +++ b/components/user-store/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/features/action-mgt/org.wso2.carbon.identity.action.management.server.feature/pom.xml b/features/action-mgt/org.wso2.carbon.identity.action.management.server.feature/pom.xml index 73abf96131e9..fe37cc337623 100644 --- a/features/action-mgt/org.wso2.carbon.identity.action.management.server.feature/pom.xml +++ b/features/action-mgt/org.wso2.carbon.identity.action.management.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework action-management-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/action-mgt/pom.xml b/features/action-mgt/pom.xml index 316c49e27f5b..31622653e0ef 100644 --- a/features/action-mgt/pom.xml +++ b/features/action-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/features/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt.server.feature/pom.xml b/features/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt.server.feature/pom.xml index 4b98fa1a23ba..44c42c704b80 100644 --- a/features/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt.server.feature/pom.xml +++ b/features/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework api-resource-management-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/api-resource-mgt/pom.xml b/features/api-resource-mgt/pom.xml index caa954f344a9..e545cbd814d0 100644 --- a/features/api-resource-mgt/pom.xml +++ b/features/api-resource-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/features/application-mgt/org.wso2.carbon.identity.application.mgt.feature/pom.xml b/features/application-mgt/org.wso2.carbon.identity.application.mgt.feature/pom.xml index e12958b10c22..4caeb0367cd7 100644 --- a/features/application-mgt/org.wso2.carbon.identity.application.mgt.feature/pom.xml +++ b/features/application-mgt/org.wso2.carbon.identity.application.mgt.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework application-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/application-mgt/org.wso2.carbon.identity.application.mgt.server.feature/pom.xml b/features/application-mgt/org.wso2.carbon.identity.application.mgt.server.feature/pom.xml index 5931e6e447a9..1cf7245c24f8 100644 --- a/features/application-mgt/org.wso2.carbon.identity.application.mgt.server.feature/pom.xml +++ b/features/application-mgt/org.wso2.carbon.identity.application.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework application-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/application-mgt/org.wso2.carbon.identity.application.mgt.ui.feature/pom.xml b/features/application-mgt/org.wso2.carbon.identity.application.mgt.ui.feature/pom.xml index 3fee06ba12ff..aef37bc6352d 100644 --- a/features/application-mgt/org.wso2.carbon.identity.application.mgt.ui.feature/pom.xml +++ b/features/application-mgt/org.wso2.carbon.identity.application.mgt.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework application-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/application-mgt/pom.xml b/features/application-mgt/pom.xml index 64e7894771ef..83568c96648b 100644 --- a/features/application-mgt/pom.xml +++ b/features/application-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/features/authentication-framework/org.wso2.carbon.identity.application.authentication.framework.server.feature/pom.xml b/features/authentication-framework/org.wso2.carbon.identity.application.authentication.framework.server.feature/pom.xml index 554e3e2f44e3..111f3dd9ada1 100644 --- a/features/authentication-framework/org.wso2.carbon.identity.application.authentication.framework.server.feature/pom.xml +++ b/features/authentication-framework/org.wso2.carbon.identity.application.authentication.framework.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework authentication-framework-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/authentication-framework/pom.xml b/features/authentication-framework/pom.xml index 6d91d1c0502f..e2261cdf7e1e 100644 --- a/features/authentication-framework/pom.xml +++ b/features/authentication-framework/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/features/carbon-authenticators/pom.xml b/features/carbon-authenticators/pom.xml index 7c4e25c54b7d..6a452b26dc21 100644 --- a/features/carbon-authenticators/pom.xml +++ b/features/carbon-authenticators/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/features/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.thrift.authentication.feature/pom.xml b/features/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.thrift.authentication.feature/pom.xml index 5b2f614c29dd..b4823f64ce23 100644 --- a/features/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.thrift.authentication.feature/pom.xml +++ b/features/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.thrift.authentication.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework thrift-authenticator-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/carbon-authenticators/thrift-authenticator/pom.xml b/features/carbon-authenticators/thrift-authenticator/pom.xml index b67daf9b1d10..fbe12d8ff228 100644 --- a/features/carbon-authenticators/thrift-authenticator/pom.xml +++ b/features/carbon-authenticators/thrift-authenticator/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-authenticator-features - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/categories/authorization/pom.xml b/features/categories/authorization/pom.xml index 1cc83a189900..ea7728708340 100644 --- a/features/categories/authorization/pom.xml +++ b/features/categories/authorization/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../../pom.xml diff --git a/features/categories/inbound-authentication/pom.xml b/features/categories/inbound-authentication/pom.xml index 5a27b6e7c7a9..bbd936046a39 100644 --- a/features/categories/inbound-authentication/pom.xml +++ b/features/categories/inbound-authentication/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../../pom.xml diff --git a/features/categories/inbound-provisioning/pom.xml b/features/categories/inbound-provisioning/pom.xml index 953137392e51..e3e138c275ce 100644 --- a/features/categories/inbound-provisioning/pom.xml +++ b/features/categories/inbound-provisioning/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../../pom.xml diff --git a/features/categories/keystore-mgt/pom.xml b/features/categories/keystore-mgt/pom.xml index 51f62a7174fa..e19210d33bb1 100644 --- a/features/categories/keystore-mgt/pom.xml +++ b/features/categories/keystore-mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../../pom.xml diff --git a/features/categories/notification-mgt/pom.xml b/features/categories/notification-mgt/pom.xml index 49319250bad4..9186a6a8cf1e 100644 --- a/features/categories/notification-mgt/pom.xml +++ b/features/categories/notification-mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../../pom.xml diff --git a/features/categories/outbound-authentication/pom.xml b/features/categories/outbound-authentication/pom.xml index f86d799b651f..337f2d104332 100644 --- a/features/categories/outbound-authentication/pom.xml +++ b/features/categories/outbound-authentication/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../../pom.xml diff --git a/features/categories/outbound-provisioning/pom.xml b/features/categories/outbound-provisioning/pom.xml index 30f0ae0f86f8..99febd9ceaba 100644 --- a/features/categories/outbound-provisioning/pom.xml +++ b/features/categories/outbound-provisioning/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../../pom.xml diff --git a/features/categories/pom.xml b/features/categories/pom.xml index 3fecb795ca41..f618b4e45867 100644 --- a/features/categories/pom.xml +++ b/features/categories/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/features/categories/user-mgt/pom.xml b/features/categories/user-mgt/pom.xml index 73826fa48f40..813132110ff6 100644 --- a/features/categories/user-mgt/pom.xml +++ b/features/categories/user-mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../../pom.xml diff --git a/features/central-logger/org.wso2.carbon.identity.central.log.mgt.server.feature/pom.xml b/features/central-logger/org.wso2.carbon.identity.central.log.mgt.server.feature/pom.xml index c7356951db7f..0a50834c2fa6 100644 --- a/features/central-logger/org.wso2.carbon.identity.central.log.mgt.server.feature/pom.xml +++ b/features/central-logger/org.wso2.carbon.identity.central.log.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework central-logger-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/central-logger/pom.xml b/features/central-logger/pom.xml index c6db5197a8b8..5b99bda12a50 100644 --- a/features/central-logger/pom.xml +++ b/features/central-logger/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/certificate-mgt/org.wso2.carbon.identity.certificate.management.server.feature/pom.xml b/features/certificate-mgt/org.wso2.carbon.identity.certificate.management.server.feature/pom.xml index 456a4d105c21..754d087ede28 100644 --- a/features/certificate-mgt/org.wso2.carbon.identity.certificate.management.server.feature/pom.xml +++ b/features/certificate-mgt/org.wso2.carbon.identity.certificate.management.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework certificate-management-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/certificate-mgt/pom.xml b/features/certificate-mgt/pom.xml index 62461d6b5d7f..caa48e72504f 100644 --- a/features/certificate-mgt/pom.xml +++ b/features/certificate-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/features/claim-mgt/org.wso2.carbon.claim.mgt.feature/pom.xml b/features/claim-mgt/org.wso2.carbon.claim.mgt.feature/pom.xml index 964858685800..431cd3238e7c 100644 --- a/features/claim-mgt/org.wso2.carbon.claim.mgt.feature/pom.xml +++ b/features/claim-mgt/org.wso2.carbon.claim.mgt.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework claim-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/claim-mgt/org.wso2.carbon.claim.mgt.server.feature/pom.xml b/features/claim-mgt/org.wso2.carbon.claim.mgt.server.feature/pom.xml index b9fbc17e6495..ede2d86d7859 100644 --- a/features/claim-mgt/org.wso2.carbon.claim.mgt.server.feature/pom.xml +++ b/features/claim-mgt/org.wso2.carbon.claim.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework claim-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/claim-mgt/org.wso2.carbon.claim.mgt.ui.feature/pom.xml b/features/claim-mgt/org.wso2.carbon.claim.mgt.ui.feature/pom.xml index f3a289ec985a..8844a2e2dfb8 100644 --- a/features/claim-mgt/org.wso2.carbon.claim.mgt.ui.feature/pom.xml +++ b/features/claim-mgt/org.wso2.carbon.claim.mgt.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework claim-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/claim-mgt/pom.xml b/features/claim-mgt/pom.xml index 99f60770112b..fc6e56264d24 100644 --- a/features/claim-mgt/pom.xml +++ b/features/claim-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/features/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt.server.feature/pom.xml b/features/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt.server.feature/pom.xml index 3d323bc69996..3548a3e67420 100644 --- a/features/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt.server.feature/pom.xml +++ b/features/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt.server.feature/pom.xml @@ -23,7 +23,7 @@ org.wso2.carbon.identity.framework client-attestation-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/client-attestation-mgt/pom.xml b/features/client-attestation-mgt/pom.xml index 1fc4a3a64530..7f0d521dcd82 100644 --- a/features/client-attestation-mgt/pom.xml +++ b/features/client-attestation-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.server.feature/pom.xml b/features/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.server.feature/pom.xml index 347715f4f546..c6b84b611f1a 100644 --- a/features/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.server.feature/pom.xml +++ b/features/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.server.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework configuration-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/configuration-mgt/pom.xml b/features/configuration-mgt/pom.xml index b30ecf2083e1..360f27ee1e62 100644 --- a/features/configuration-mgt/pom.xml +++ b/features/configuration-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/features/consent-mgt/org.wso2.carbon.identity.consent.mgt.server.feature/pom.xml b/features/consent-mgt/org.wso2.carbon.identity.consent.mgt.server.feature/pom.xml index 56b3ddfdc246..8b1b715053de 100644 --- a/features/consent-mgt/org.wso2.carbon.identity.consent.mgt.server.feature/pom.xml +++ b/features/consent-mgt/org.wso2.carbon.identity.consent.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-consent-mgt-aggregator - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/consent-mgt/pom.xml b/features/consent-mgt/pom.xml index 11bb1aa3f752..b9941bd9a07a 100644 --- a/features/consent-mgt/pom.xml +++ b/features/consent-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/features/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt.server.feature/pom.xml b/features/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt.server.feature/pom.xml index 27a57f25cf57..61d87c587828 100644 --- a/features/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt.server.feature/pom.xml +++ b/features/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework consent-server-configs-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/consent-server-configs-mgt/pom.xml b/features/consent-server-configs-mgt/pom.xml index 3d89c2ec6554..4aa0f8429090 100644 --- a/features/consent-server-configs-mgt/pom.xml +++ b/features/consent-server-configs-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/cors-mgt/org.wso2.carbon.identity.cors.mgt.server.feature/pom.xml b/features/cors-mgt/org.wso2.carbon.identity.cors.mgt.server.feature/pom.xml index c11a2112bda1..e8743800e3d4 100644 --- a/features/cors-mgt/org.wso2.carbon.identity.cors.mgt.server.feature/pom.xml +++ b/features/cors-mgt/org.wso2.carbon.identity.cors.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework cors-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/cors-mgt/pom.xml b/features/cors-mgt/pom.xml index 48369411ef3a..569446af4264 100644 --- a/features/cors-mgt/pom.xml +++ b/features/cors-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.feature/pom.xml b/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.feature/pom.xml index 15dcf0f519e1..737434eeaacd 100644 --- a/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.feature/pom.xml +++ b/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework directory-server-manager-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.server.feature/pom.xml b/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.server.feature/pom.xml index ddf6f273a2a8..ff140befa45e 100644 --- a/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.server.feature/pom.xml +++ b/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework directory-server-manager-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.ui.feature/pom.xml b/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.ui.feature/pom.xml index 17a7876ddb03..1bb40cf8aa91 100644 --- a/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.ui.feature/pom.xml +++ b/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework directory-server-manager-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/directory-server-manager/pom.xml b/features/directory-server-manager/pom.xml index 4ffa926e1132..9ddf51cf8853 100644 --- a/features/directory-server-manager/pom.xml +++ b/features/directory-server-manager/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/features/extension-mgt/org.wso2.carbon.identity.extension.mgt.feature/pom.xml b/features/extension-mgt/org.wso2.carbon.identity.extension.mgt.feature/pom.xml index 75850871e0fc..557393c710a1 100644 --- a/features/extension-mgt/org.wso2.carbon.identity.extension.mgt.feature/pom.xml +++ b/features/extension-mgt/org.wso2.carbon.identity.extension.mgt.feature/pom.xml @@ -19,7 +19,7 @@ extension-management-feature org.wso2.carbon.identity.framework - 7.7.85 + 7.7.86-SNAPSHOT org.wso2.carbon.identity.extension.mgt.feature diff --git a/features/extension-mgt/pom.xml b/features/extension-mgt/pom.xml index 29a517432bfa..22fa1b1835e8 100644 --- a/features/extension-mgt/pom.xml +++ b/features/extension-mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.feature/pom.xml b/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.feature/pom.xml index 46a03ea5ce9d..780209e75c1b 100644 --- a/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.feature/pom.xml +++ b/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework functions-library-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml 4.0.0 diff --git a/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.server.feature/pom.xml b/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.server.feature/pom.xml index 2a039be2d1df..b3bbfaefd4dd 100644 --- a/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.server.feature/pom.xml +++ b/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework functions-library-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml 4.0.0 diff --git a/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui.feature/pom.xml b/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui.feature/pom.xml index 548fa85e8d12..a993d839be47 100644 --- a/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui.feature/pom.xml +++ b/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework functions-library-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml 4.0.0 diff --git a/features/functions-library-mgt/pom.xml b/features/functions-library-mgt/pom.xml index d73f114146a3..0a2907f76403 100644 --- a/features/functions-library-mgt/pom.xml +++ b/features/functions-library-mgt/pom.xml @@ -28,7 +28,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/features/identity-core/org.wso2.carbon.identity.core.feature/pom.xml b/features/identity-core/org.wso2.carbon.identity.core.feature/pom.xml index 06e1b5cf7146..04c4f1cbdf3e 100644 --- a/features/identity-core/org.wso2.carbon.identity.core.feature/pom.xml +++ b/features/identity-core/org.wso2.carbon.identity.core.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-core-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/identity-core/org.wso2.carbon.identity.core.server.feature/pom.xml b/features/identity-core/org.wso2.carbon.identity.core.server.feature/pom.xml index d44eee91d571..6ac96718aeba 100644 --- a/features/identity-core/org.wso2.carbon.identity.core.server.feature/pom.xml +++ b/features/identity-core/org.wso2.carbon.identity.core.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-core-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/identity-core/org.wso2.carbon.identity.core.ui.feature/pom.xml b/features/identity-core/org.wso2.carbon.identity.core.ui.feature/pom.xml index 4e4688cf3af5..026ae8109744 100644 --- a/features/identity-core/org.wso2.carbon.identity.core.ui.feature/pom.xml +++ b/features/identity-core/org.wso2.carbon.identity.core.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-core-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/identity-core/pom.xml b/features/identity-core/pom.xml index a5db2c8c2795..1e38a94b8a68 100644 --- a/features/identity-core/pom.xml +++ b/features/identity-core/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/features/identity-event/org.wso2.carbon.identity.event.feature/pom.xml b/features/identity-event/org.wso2.carbon.identity.event.feature/pom.xml index 4096cb82d0ee..5d12c21d1517 100644 --- a/features/identity-event/org.wso2.carbon.identity.event.feature/pom.xml +++ b/features/identity-event/org.wso2.carbon.identity.event.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-event-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/identity-event/org.wso2.carbon.identity.event.server.feature/pom.xml b/features/identity-event/org.wso2.carbon.identity.event.server.feature/pom.xml index 942050840e36..a727baa2acad 100644 --- a/features/identity-event/org.wso2.carbon.identity.event.server.feature/pom.xml +++ b/features/identity-event/org.wso2.carbon.identity.event.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-event-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/identity-event/pom.xml b/features/identity-event/pom.xml index cb762f7188db..56746deb5ead 100644 --- a/features/identity-event/pom.xml +++ b/features/identity-event/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/features/identity-mgt/org.wso2.carbon.identity.mgt.feature/pom.xml b/features/identity-mgt/org.wso2.carbon.identity.mgt.feature/pom.xml index 458bf37fb39c..1fa5a9d66f76 100644 --- a/features/identity-mgt/org.wso2.carbon.identity.mgt.feature/pom.xml +++ b/features/identity-mgt/org.wso2.carbon.identity.mgt.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/identity-mgt/org.wso2.carbon.identity.mgt.server.feature/pom.xml b/features/identity-mgt/org.wso2.carbon.identity.mgt.server.feature/pom.xml index 56fc264a3c29..5132c904da9c 100644 --- a/features/identity-mgt/org.wso2.carbon.identity.mgt.server.feature/pom.xml +++ b/features/identity-mgt/org.wso2.carbon.identity.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/identity-mgt/org.wso2.carbon.identity.mgt.ui.feature/pom.xml b/features/identity-mgt/org.wso2.carbon.identity.mgt.ui.feature/pom.xml index 5907b707180c..55e8635400be 100644 --- a/features/identity-mgt/org.wso2.carbon.identity.mgt.ui.feature/pom.xml +++ b/features/identity-mgt/org.wso2.carbon.identity.mgt.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/identity-mgt/pom.xml b/features/identity-mgt/pom.xml index 54591e051580..100bad836f53 100644 --- a/features/identity-mgt/pom.xml +++ b/features/identity-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/features/idp-mgt/org.wso2.carbon.idp.mgt.feature/pom.xml b/features/idp-mgt/org.wso2.carbon.idp.mgt.feature/pom.xml index 0df8244a1697..f5e4142c5103 100644 --- a/features/idp-mgt/org.wso2.carbon.idp.mgt.feature/pom.xml +++ b/features/idp-mgt/org.wso2.carbon.idp.mgt.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-provider-management-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/idp-mgt/org.wso2.carbon.idp.mgt.server.feature/pom.xml b/features/idp-mgt/org.wso2.carbon.idp.mgt.server.feature/pom.xml index a294d6daadb7..462aa341ee29 100644 --- a/features/idp-mgt/org.wso2.carbon.idp.mgt.server.feature/pom.xml +++ b/features/idp-mgt/org.wso2.carbon.idp.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-provider-management-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/idp-mgt/org.wso2.carbon.idp.mgt.ui.feature/pom.xml b/features/idp-mgt/org.wso2.carbon.idp.mgt.ui.feature/pom.xml index 3afb4afd419d..13d9c15b9441 100644 --- a/features/idp-mgt/org.wso2.carbon.idp.mgt.ui.feature/pom.xml +++ b/features/idp-mgt/org.wso2.carbon.idp.mgt.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-provider-management-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/idp-mgt/pom.xml b/features/idp-mgt/pom.xml index f60583760cc6..9179a2c69c09 100644 --- a/features/idp-mgt/pom.xml +++ b/features/idp-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/features/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt.server.feature/pom.xml b/features/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt.server.feature/pom.xml index af40b806271e..81d96ebf8bb4 100644 --- a/features/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt.server.feature/pom.xml +++ b/features/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework input-validation-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/input-validation-mgt/pom.xml b/features/input-validation-mgt/pom.xml index fd117e43b3de..600ae6eed68a 100644 --- a/features/input-validation-mgt/pom.xml +++ b/features/input-validation-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt.server.feature/pom.xml b/features/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt.server.feature/pom.xml index 664e1952610d..ccf34da81e74 100644 --- a/features/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt.server.feature/pom.xml +++ b/features/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt.server.feature/pom.xml @@ -20,7 +20,7 @@ multi-attribute-login-feature org.wso2.carbon.identity.framework - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml 4.0.0 diff --git a/features/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt.server.feature/pom.xml b/features/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt.server.feature/pom.xml index 5f50950add17..937645d3ade5 100644 --- a/features/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt.server.feature/pom.xml +++ b/features/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt.server.feature/pom.xml @@ -20,7 +20,7 @@ multi-attribute-login-feature org.wso2.carbon.identity.framework - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml 4.0.0 diff --git a/features/multi-attribute-login/pom.xml b/features/multi-attribute-login/pom.xml index 81669e54a729..66fc7e781968 100644 --- a/features/multi-attribute-login/pom.xml +++ b/features/multi-attribute-login/pom.xml @@ -20,7 +20,7 @@ identity-framework org.wso2.carbon.identity.framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.feature/pom.xml b/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.feature/pom.xml index f7494415dc92..7721f57a7d0b 100644 --- a/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.feature/pom.xml +++ b/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-notification-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.server.feature/pom.xml b/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.server.feature/pom.xml index 65c7a06ed0eb..8ecebf342098 100644 --- a/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.server.feature/pom.xml +++ b/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-notification-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/notification-mgt/pom.xml b/features/notification-mgt/pom.xml index 58fb083f37bf..6e845f7b2af9 100644 --- a/features/notification-mgt/pom.xml +++ b/features/notification-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/features/provisioning/org.wso2.carbon.identity.provisioning.server.feature/pom.xml b/features/provisioning/org.wso2.carbon.identity.provisioning.server.feature/pom.xml index ed553c24b854..c26c12d7817d 100644 --- a/features/provisioning/org.wso2.carbon.identity.provisioning.server.feature/pom.xml +++ b/features/provisioning/org.wso2.carbon.identity.provisioning.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework provisioning-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/provisioning/pom.xml b/features/provisioning/pom.xml index 0476fa8d4eb6..4fc39db516bb 100644 --- a/features/provisioning/pom.xml +++ b/features/provisioning/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/features/role-mgt/org.wso2.carbon.identity.role.mgt.core.server.feature/pom.xml b/features/role-mgt/org.wso2.carbon.identity.role.mgt.core.server.feature/pom.xml index 13e56335747d..0b2fed9497ee 100644 --- a/features/role-mgt/org.wso2.carbon.identity.role.mgt.core.server.feature/pom.xml +++ b/features/role-mgt/org.wso2.carbon.identity.role.mgt.core.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework role-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml 4.0.0 diff --git a/features/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core.server.feature/pom.xml b/features/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core.server.feature/pom.xml index f633896376e1..57afeed76606 100644 --- a/features/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core.server.feature/pom.xml +++ b/features/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core.server.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework role-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml 4.0.0 diff --git a/features/role-mgt/pom.xml b/features/role-mgt/pom.xml index 551fa0752dee..e3a12a437ad1 100644 --- a/features/role-mgt/pom.xml +++ b/features/role-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/rule-mgt/org.wso2.carbon.identity.rule.management.server.feature/pom.xml b/features/rule-mgt/org.wso2.carbon.identity.rule.management.server.feature/pom.xml index b19365d718a8..bd0a10051236 100644 --- a/features/rule-mgt/org.wso2.carbon.identity.rule.management.server.feature/pom.xml +++ b/features/rule-mgt/org.wso2.carbon.identity.rule.management.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework rule-management-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/rule-mgt/pom.xml b/features/rule-mgt/pom.xml index b7a9fb265871..33e023f1dda5 100644 --- a/features/rule-mgt/pom.xml +++ b/features/rule-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/features/secret-mgt/org.wso2.carbon.identity.secret.mgt.core.server.feature/pom.xml b/features/secret-mgt/org.wso2.carbon.identity.secret.mgt.core.server.feature/pom.xml index a9456518cb67..3d495c40d2f5 100644 --- a/features/secret-mgt/org.wso2.carbon.identity.secret.mgt.core.server.feature/pom.xml +++ b/features/secret-mgt/org.wso2.carbon.identity.secret.mgt.core.server.feature/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework secret-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT 4.0.0 diff --git a/features/secret-mgt/pom.xml b/features/secret-mgt/pom.xml index cd3610961ee0..593389afa1b3 100644 --- a/features/secret-mgt/pom.xml +++ b/features/secret-mgt/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/features/security-mgt/org.wso2.carbon.security.mgt.feature/pom.xml b/features/security-mgt/org.wso2.carbon.security.mgt.feature/pom.xml index 8b311e628c1b..88d6847319f6 100644 --- a/features/security-mgt/org.wso2.carbon.security.mgt.feature/pom.xml +++ b/features/security-mgt/org.wso2.carbon.security.mgt.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework security-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/security-mgt/org.wso2.carbon.security.mgt.server.feature/pom.xml b/features/security-mgt/org.wso2.carbon.security.mgt.server.feature/pom.xml index deefb7e075fd..3edaa4bf9b8d 100644 --- a/features/security-mgt/org.wso2.carbon.security.mgt.server.feature/pom.xml +++ b/features/security-mgt/org.wso2.carbon.security.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework security-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/security-mgt/org.wso2.carbon.security.mgt.ui.feature/pom.xml b/features/security-mgt/org.wso2.carbon.security.mgt.ui.feature/pom.xml index 67b5de64143f..c333aa7231e6 100644 --- a/features/security-mgt/org.wso2.carbon.security.mgt.ui.feature/pom.xml +++ b/features/security-mgt/org.wso2.carbon.security.mgt.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework security-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/security-mgt/pom.xml b/features/security-mgt/pom.xml index 6e8e37d8b64d..3dedf385ce4b 100644 --- a/features/security-mgt/pom.xml +++ b/features/security-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/features/template-mgt/org.wso2.carbon.identity.template.mgt.feature/pom.xml b/features/template-mgt/org.wso2.carbon.identity.template.mgt.feature/pom.xml index 20c812e7feed..4e1e8a07d0c5 100644 --- a/features/template-mgt/org.wso2.carbon.identity.template.mgt.feature/pom.xml +++ b/features/template-mgt/org.wso2.carbon.identity.template.mgt.feature/pom.xml @@ -21,7 +21,7 @@ template-management-feature org.wso2.carbon.identity.framework - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/template-mgt/org.wso2.carbon.identity.template.mgt.server.feature/pom.xml b/features/template-mgt/org.wso2.carbon.identity.template.mgt.server.feature/pom.xml index 10f2f6447f41..fbe154040d5a 100644 --- a/features/template-mgt/org.wso2.carbon.identity.template.mgt.server.feature/pom.xml +++ b/features/template-mgt/org.wso2.carbon.identity.template.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ template-management-feature org.wso2.carbon.identity.framework - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/template-mgt/org.wso2.carbon.identity.template.mgt.ui.feature/pom.xml b/features/template-mgt/org.wso2.carbon.identity.template.mgt.ui.feature/pom.xml index 9bcdc5dd4c83..bcc92ebb5974 100644 --- a/features/template-mgt/org.wso2.carbon.identity.template.mgt.ui.feature/pom.xml +++ b/features/template-mgt/org.wso2.carbon.identity.template.mgt.ui.feature/pom.xml @@ -21,7 +21,7 @@ template-management-feature org.wso2.carbon.identity.framework - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/template-mgt/pom.xml b/features/template-mgt/pom.xml index 96e781dca2e7..2a25352ca73f 100644 --- a/features/template-mgt/pom.xml +++ b/features/template-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/features/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt.server.feature/pom.xml b/features/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt.server.feature/pom.xml index 4d0b80c021f4..05a53018c9f5 100644 --- a/features/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt.server.feature/pom.xml +++ b/features/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework trusted-app-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/trusted-app-mgt/pom.xml b/features/trusted-app-mgt/pom.xml index 798883653dab..bfacc6c00c50 100644 --- a/features/trusted-app-mgt/pom.xml +++ b/features/trusted-app-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.feature/pom.xml b/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.feature/pom.xml index 9b44a9c3b1cd..cd7c6faf4759 100644 --- a/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.feature/pom.xml +++ b/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.feature/pom.xml @@ -21,7 +21,7 @@ user-functionality-mgt-feature org.wso2.carbon.identity.framework - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml 4.0.0 diff --git a/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.server.feature/pom.xml b/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.server.feature/pom.xml index 15bcbede4d7d..381093b11f1b 100644 --- a/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.server.feature/pom.xml +++ b/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ user-functionality-mgt-feature org.wso2.carbon.identity.framework - 7.7.85 + 7.7.86-SNAPSHOT 4.0.0 diff --git a/features/user-functionality-mgt/pom.xml b/features/user-functionality-mgt/pom.xml index 92af558c4f94..15b4547c0481 100644 --- a/features/user-functionality-mgt/pom.xml +++ b/features/user-functionality-mgt/pom.xml @@ -21,7 +21,7 @@ identity-framework org.wso2.carbon.identity.framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/user-mgt/org.wso2.carbon.identity.user.profile.feature/pom.xml b/features/user-mgt/org.wso2.carbon.identity.user.profile.feature/pom.xml index a0d272ab3ac0..aa4316db01e0 100644 --- a/features/user-mgt/org.wso2.carbon.identity.user.profile.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.identity.user.profile.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.identity.user.profile.server.feature/pom.xml b/features/user-mgt/org.wso2.carbon.identity.user.profile.server.feature/pom.xml index 15685f2afdb3..a2370a920c8b 100644 --- a/features/user-mgt/org.wso2.carbon.identity.user.profile.server.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.identity.user.profile.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.identity.user.profile.ui.feature/pom.xml b/features/user-mgt/org.wso2.carbon.identity.user.profile.ui.feature/pom.xml index 659f707b6882..649fc17dcbc1 100644 --- a/features/user-mgt/org.wso2.carbon.identity.user.profile.ui.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.identity.user.profile.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.identity.user.registration.feature/pom.xml b/features/user-mgt/org.wso2.carbon.identity.user.registration.feature/pom.xml index 2e6575a7a871..52400b094e54 100644 --- a/features/user-mgt/org.wso2.carbon.identity.user.registration.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.identity.user.registration.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.identity.user.registration.server.feature/pom.xml b/features/user-mgt/org.wso2.carbon.identity.user.registration.server.feature/pom.xml index 47c8d46bd8ae..2a4a1142684b 100644 --- a/features/user-mgt/org.wso2.carbon.identity.user.registration.server.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.identity.user.registration.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.identity.user.registration.ui.feature/pom.xml b/features/user-mgt/org.wso2.carbon.identity.user.registration.ui.feature/pom.xml index 6e37f2be0b04..8c6f0b9f39df 100644 --- a/features/user-mgt/org.wso2.carbon.identity.user.registration.ui.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.identity.user.registration.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.role.mgt.ui.feature/pom.xml b/features/user-mgt/org.wso2.carbon.role.mgt.ui.feature/pom.xml index 999e092e66f4..31274592a904 100644 --- a/features/user-mgt/org.wso2.carbon.role.mgt.ui.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.role.mgt.ui.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.user.mgt.feature/pom.xml b/features/user-mgt/org.wso2.carbon.user.mgt.feature/pom.xml index 9f317be1c965..03e5eabbce35 100644 --- a/features/user-mgt/org.wso2.carbon.user.mgt.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.user.mgt.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.user.mgt.server.feature/pom.xml b/features/user-mgt/org.wso2.carbon.user.mgt.server.feature/pom.xml index 983c27027b0f..d12cb0027539 100644 --- a/features/user-mgt/org.wso2.carbon.user.mgt.server.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.user.mgt.server.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.user.mgt.ui.feature/pom.xml b/features/user-mgt/org.wso2.carbon.user.mgt.ui.feature/pom.xml index f5761bc91b78..e91a18277dcc 100644 --- a/features/user-mgt/org.wso2.carbon.user.mgt.ui.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.user.mgt.ui.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/user-mgt/pom.xml b/features/user-mgt/pom.xml index 220191f30e86..8930a74baa72 100644 --- a/features/user-mgt/pom.xml +++ b/features/user-mgt/pom.xml @@ -17,7 +17,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/features/user-store/org.wso2.carbon.identity.user.store.configuration.server.feature/pom.xml b/features/user-store/org.wso2.carbon.identity.user.store.configuration.server.feature/pom.xml index 971f0719c286..3fb08d24a670 100644 --- a/features/user-store/org.wso2.carbon.identity.user.store.configuration.server.feature/pom.xml +++ b/features/user-store/org.wso2.carbon.identity.user.store.configuration.server.feature/pom.xml @@ -23,7 +23,7 @@ org.wso2.carbon.identity.framework user-store-feature - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/features/user-store/pom.xml b/features/user-store/pom.xml index 74e6e396e71c..f0c914c6a33e 100644 --- a/features/user-store/pom.xml +++ b/features/user-store/pom.xml @@ -23,7 +23,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/pom.xml b/pom.xml index 36318f2db33d..ac639d35da1d 100644 --- a/pom.xml +++ b/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework pom - 7.7.85 + 7.7.86-SNAPSHOT WSO2 Carbon - Platform Aggregator Pom http://wso2.org @@ -36,7 +36,7 @@ https://github.com/wso2/carbon-identity-framework.git scm:git:https://github.com/wso2/carbon-identity-framework.git scm:git:https://github.com/wso2/carbon-identity-framework.git - v7.7.85 + HEAD diff --git a/service-stubs/identity/org.wso2.carbon.claim.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.claim.mgt.stub/pom.xml index 9b04d66d7bfd..c711dec5ddec 100644 --- a/service-stubs/identity/org.wso2.carbon.claim.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.claim.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.directory.server.manager.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.directory.server.manager.stub/pom.xml index 82236157f2b7..2b7d2aa9b200 100644 --- a/service-stubs/identity/org.wso2.carbon.directory.server.manager.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.directory.server.manager.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.application.authentication.framework.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.application.authentication.framework.stub/pom.xml index 6ecd13984f09..fde2de71d0cd 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.application.authentication.framework.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.application.authentication.framework.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml 4.0.0 diff --git a/service-stubs/identity/org.wso2.carbon.identity.application.default.authentication.sequence.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.application.default.authentication.sequence.mgt.stub/pom.xml index d72d8890b3cf..eb9f865d544e 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.application.default.authentication.sequence.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.application.default.authentication.sequence.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.application.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.application.mgt.stub/pom.xml index 4a1265601abc..40008ab844d0 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.application.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.application.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.claim.metadata.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.claim.metadata.mgt.stub/pom.xml index 60886577bd18..e04c8eb63cbd 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.claim.metadata.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.claim.metadata.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.functions.library.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.functions.library.mgt.stub/pom.xml index 1df0755b96ac..65093ffa22ae 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.functions.library.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.functions.library.mgt.stub/pom.xml @@ -21,7 +21,7 @@ carbon-service-stubs org.wso2.carbon.identity.framework - 7.7.85 + 7.7.86-SNAPSHOT 4.0.0 diff --git a/service-stubs/identity/org.wso2.carbon.identity.governance.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.governance.stub/pom.xml index b80a99b7b056..d592c7d42d3e 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.governance.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.governance.stub/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.mgt.stub/pom.xml index e1045474bd2a..5f16841a8bc1 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.user.profile.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.user.profile.stub/pom.xml index 312badaa3b39..58e3f21eaa11 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.user.profile.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.user.profile.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.user.registration.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.user.registration.stub/pom.xml index dba3d429c839..59986d7bf1d1 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.user.registration.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.user.registration.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.user.store.configuration.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.user.store.configuration.stub/pom.xml index d1e02a4896d3..e184a22c1bfe 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.user.store.configuration.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.user.store.configuration.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.user.store.count.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.user.store.count.stub/pom.xml index f0d13083886a..6f563aaf623c 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.user.store.count.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.user.store.count.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.idp.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.idp.mgt.stub/pom.xml index 6de8fbecb2cf..656841d5c19c 100644 --- a/service-stubs/identity/org.wso2.carbon.idp.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.idp.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.security.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.security.mgt.stub/pom.xml index 97723050dba1..c66aa6edea17 100644 --- a/service-stubs/identity/org.wso2.carbon.security.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.security.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.user.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.user.mgt.stub/pom.xml index 4ec9b712c218..9550def5076c 100644 --- a/service-stubs/identity/org.wso2.carbon.user.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.user.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.85 + 7.7.86-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/pom.xml b/service-stubs/identity/pom.xml index df774f6d5f4e..ce24d5f9e231 100644 --- a/service-stubs/identity/pom.xml +++ b/service-stubs/identity/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml diff --git a/test-utils/org.wso2.carbon.identity.testutil/pom.xml b/test-utils/org.wso2.carbon.identity.testutil/pom.xml index df049ffb40aa..cb11932194f4 100644 --- a/test-utils/org.wso2.carbon.identity.testutil/pom.xml +++ b/test-utils/org.wso2.carbon.identity.testutil/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.85 + 7.7.86-SNAPSHOT ../../pom.xml From 343738aff406a8fa8f1ab2c3866d26ed9642dca9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 10 Jan 2025 05:06:45 +0000 Subject: [PATCH 09/10] [WSO2 Release] [Jenkins #8237] [Release 7.7.86] prepare release v7.7.86 --- .../org.wso2.carbon.identity.action.execution/pom.xml | 2 +- .../org.wso2.carbon.identity.action.management/pom.xml | 2 +- components/action-mgt/pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.api.resource.mgt/pom.xml | 2 +- components/api-resource-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.application.common/pom.xml | 2 +- .../org.wso2.carbon.identity.application.mgt.ui/pom.xml | 2 +- .../org.wso2.carbon.identity.application.mgt/pom.xml | 2 +- components/application-mgt/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- components/authentication-framework/pom.xml | 2 +- components/captcha-mgt/org.wso2.carbon.captcha.mgt/pom.xml | 2 +- components/captcha-mgt/pom.xml | 2 +- components/carbon-authenticators/pom.xml | 2 +- .../org.wso2.carbon.identity.authenticator.thrift/pom.xml | 2 +- components/carbon-authenticators/thrift-authenticator/pom.xml | 2 +- .../org.wso2.carbon.identity.central.log.mgt/pom.xml | 2 +- components/central-logger/pom.xml | 2 +- .../org.wso2.carbon.identity.certificate.management/pom.xml | 2 +- components/certificate-mgt/pom.xml | 2 +- components/claim-mgt/org.wso2.carbon.claim.mgt.ui/pom.xml | 2 +- components/claim-mgt/org.wso2.carbon.claim.mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.claim.metadata.mgt.ui/pom.xml | 2 +- .../org.wso2.carbon.identity.claim.metadata.mgt/pom.xml | 2 +- components/claim-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.client.attestation.mgt/pom.xml | 2 +- components/client-attestation-mgt/pom.xml | 2 +- .../pom.xml | 4 ++-- .../org.wso2.carbon.identity.configuration.mgt.core/pom.xml | 2 +- .../pom.xml | 2 +- components/configuration-mgt/pom.xml | 2 +- .../consent-mgt/org.wso2.carbon.identity.consent.mgt/pom.xml | 2 +- components/consent-mgt/pom.xml | 2 +- .../pom.xml | 2 +- components/consent-server-configs-mgt/pom.xml | 2 +- .../cors-mgt/org.wso2.carbon.identity.cors.mgt.core/pom.xml | 2 +- components/cors-mgt/pom.xml | 2 +- .../org.wso2.carbon.directory.server.manager.common/pom.xml | 2 +- .../org.wso2.carbon.directory.server.manager.ui/pom.xml | 2 +- .../org.wso2.carbon.directory.server.manager/pom.xml | 2 +- components/directory-server-manager/pom.xml | 2 +- .../org.wso2.carbon.identity.extension.mgt/pom.xml | 2 +- components/extension-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.functions.library.mgt.ui/pom.xml | 2 +- .../org.wso2.carbon.identity.functions.library.mgt/pom.xml | 2 +- components/functions-library-mgt/pom.xml | 2 +- .../identity-core/org.wso2.carbon.identity.base/pom.xml | 2 +- .../identity-core/org.wso2.carbon.identity.core.ui/pom.xml | 2 +- .../identity-core/org.wso2.carbon.identity.core/pom.xml | 2 +- components/identity-core/pom.xml | 2 +- .../identity-event/org.wso2.carbon.identity.event/pom.xml | 2 +- components/identity-event/pom.xml | 2 +- .../org.wso2.carbon.identity.mgt.endpoint.util/pom.xml | 2 +- .../identity-mgt/org.wso2.carbon.identity.mgt.ui/pom.xml | 2 +- components/identity-mgt/org.wso2.carbon.identity.mgt/pom.xml | 2 +- components/identity-mgt/pom.xml | 2 +- components/idp-mgt/org.wso2.carbon.idp.mgt.ui/pom.xml | 2 +- components/idp-mgt/org.wso2.carbon.idp.mgt/pom.xml | 2 +- components/idp-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.input.validation.mgt/pom.xml | 2 +- components/input-validation-mgt/pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.unique.claim.mgt/pom.xml | 2 +- components/multi-attribute-login/pom.xml | 2 +- .../org.wso2.carbon.identity.notification.mgt/pom.xml | 2 +- components/notification-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.provisioning/pom.xml | 2 +- components/provisioning/pom.xml | 2 +- .../role-mgt/org.wso2.carbon.identity.role.mgt.core/pom.xml | 2 +- .../org.wso2.carbon.identity.role.v2.mgt.core/pom.xml | 2 +- components/role-mgt/pom.xml | 2 +- .../rule-mgt/org.wso2.carbon.identity.rule.management/pom.xml | 2 +- .../rule-mgt/org.wso2.carbon.identity.rule.metadata/pom.xml | 2 +- components/rule-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.secret.mgt.core/pom.xml | 2 +- components/secret-mgt/pom.xml | 2 +- .../security-mgt/org.wso2.carbon.security.mgt.ui/pom.xml | 2 +- components/security-mgt/org.wso2.carbon.security.mgt/pom.xml | 2 +- components/security-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.template.mgt.ui/pom.xml | 2 +- .../org.wso2.carbon.identity.template.mgt/pom.xml | 2 +- components/template-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.trusted.app.mgt/pom.xml | 2 +- components/trusted-app-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.user.functionality.mgt/pom.xml | 2 +- components/user-functionality-mgt/pom.xml | 2 +- .../user-mgt/org.wso2.carbon.identity.user.profile.ui/pom.xml | 2 +- .../user-mgt/org.wso2.carbon.identity.user.profile/pom.xml | 2 +- .../org.wso2.carbon.identity.user.registration/pom.xml | 2 +- components/user-mgt/org.wso2.carbon.role.mgt.ui/pom.xml | 2 +- components/user-mgt/org.wso2.carbon.user.mgt.common/pom.xml | 2 +- components/user-mgt/org.wso2.carbon.user.mgt.ui/pom.xml | 2 +- components/user-mgt/org.wso2.carbon.user.mgt/pom.xml | 2 +- components/user-mgt/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.user.store.configuration/pom.xml | 2 +- .../org.wso2.carbon.identity.user.store.count/pom.xml | 2 +- components/user-store/pom.xml | 2 +- .../pom.xml | 2 +- features/action-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/api-resource-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.application.mgt.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- features/application-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/authentication-framework/pom.xml | 2 +- features/carbon-authenticators/pom.xml | 2 +- .../pom.xml | 2 +- features/carbon-authenticators/thrift-authenticator/pom.xml | 2 +- features/categories/authorization/pom.xml | 2 +- features/categories/inbound-authentication/pom.xml | 2 +- features/categories/inbound-provisioning/pom.xml | 2 +- features/categories/keystore-mgt/pom.xml | 2 +- features/categories/notification-mgt/pom.xml | 2 +- features/categories/outbound-authentication/pom.xml | 2 +- features/categories/outbound-provisioning/pom.xml | 2 +- features/categories/pom.xml | 2 +- features/categories/user-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/central-logger/pom.xml | 2 +- .../pom.xml | 2 +- features/certificate-mgt/pom.xml | 2 +- features/claim-mgt/org.wso2.carbon.claim.mgt.feature/pom.xml | 2 +- .../org.wso2.carbon.claim.mgt.server.feature/pom.xml | 2 +- .../claim-mgt/org.wso2.carbon.claim.mgt.ui.feature/pom.xml | 2 +- features/claim-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/client-attestation-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/configuration-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/consent-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/consent-server-configs-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.cors.mgt.server.feature/pom.xml | 2 +- features/cors-mgt/pom.xml | 2 +- .../org.wso2.carbon.directory.service.mgr.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.directory.service.mgr.ui.feature/pom.xml | 2 +- features/directory-server-manager/pom.xml | 2 +- .../org.wso2.carbon.identity.extension.mgt.feature/pom.xml | 2 +- features/extension-mgt/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- features/functions-library-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.core.feature/pom.xml | 2 +- .../org.wso2.carbon.identity.core.server.feature/pom.xml | 2 +- .../org.wso2.carbon.identity.core.ui.feature/pom.xml | 2 +- features/identity-core/pom.xml | 2 +- .../org.wso2.carbon.identity.event.feature/pom.xml | 2 +- .../org.wso2.carbon.identity.event.server.feature/pom.xml | 2 +- features/identity-event/pom.xml | 2 +- .../identity-mgt/org.wso2.carbon.identity.mgt.feature/pom.xml | 2 +- .../org.wso2.carbon.identity.mgt.server.feature/pom.xml | 2 +- .../org.wso2.carbon.identity.mgt.ui.feature/pom.xml | 2 +- features/identity-mgt/pom.xml | 2 +- features/idp-mgt/org.wso2.carbon.idp.mgt.feature/pom.xml | 2 +- .../idp-mgt/org.wso2.carbon.idp.mgt.server.feature/pom.xml | 2 +- features/idp-mgt/org.wso2.carbon.idp.mgt.ui.feature/pom.xml | 2 +- features/idp-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/input-validation-mgt/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- features/multi-attribute-login/pom.xml | 2 +- .../org.wso2.carbon.identity.notification.mgt.feature/pom.xml | 2 +- .../pom.xml | 2 +- features/notification-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/provisioning/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- features/role-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/rule-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/secret-mgt/pom.xml | 2 +- .../security-mgt/org.wso2.carbon.security.mgt.feature/pom.xml | 2 +- .../org.wso2.carbon.security.mgt.server.feature/pom.xml | 2 +- .../org.wso2.carbon.security.mgt.ui.feature/pom.xml | 2 +- features/security-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.template.mgt.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.template.mgt.ui.feature/pom.xml | 2 +- features/template-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/trusted-app-mgt/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- features/user-functionality-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.user.profile.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.user.profile.ui.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- features/user-mgt/org.wso2.carbon.role.mgt.ui.feature/pom.xml | 2 +- features/user-mgt/org.wso2.carbon.user.mgt.feature/pom.xml | 2 +- .../user-mgt/org.wso2.carbon.user.mgt.server.feature/pom.xml | 2 +- features/user-mgt/org.wso2.carbon.user.mgt.ui.feature/pom.xml | 2 +- features/user-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/user-store/pom.xml | 2 +- pom.xml | 4 ++-- service-stubs/identity/org.wso2.carbon.claim.mgt.stub/pom.xml | 2 +- .../org.wso2.carbon.directory.server.manager.stub/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.application.mgt.stub/pom.xml | 2 +- .../org.wso2.carbon.identity.claim.metadata.mgt.stub/pom.xml | 2 +- .../pom.xml | 2 +- .../identity/org.wso2.carbon.identity.governance.stub/pom.xml | 2 +- .../identity/org.wso2.carbon.identity.mgt.stub/pom.xml | 2 +- .../org.wso2.carbon.identity.user.profile.stub/pom.xml | 2 +- .../org.wso2.carbon.identity.user.registration.stub/pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.user.store.count.stub/pom.xml | 2 +- service-stubs/identity/org.wso2.carbon.idp.mgt.stub/pom.xml | 2 +- .../identity/org.wso2.carbon.security.mgt.stub/pom.xml | 2 +- service-stubs/identity/org.wso2.carbon.user.mgt.stub/pom.xml | 2 +- service-stubs/identity/pom.xml | 2 +- test-utils/org.wso2.carbon.identity.testutil/pom.xml | 2 +- 228 files changed, 230 insertions(+), 230 deletions(-) diff --git a/components/action-mgt/org.wso2.carbon.identity.action.execution/pom.xml b/components/action-mgt/org.wso2.carbon.identity.action.execution/pom.xml index ecd246d66485..0b121f08a2eb 100644 --- a/components/action-mgt/org.wso2.carbon.identity.action.execution/pom.xml +++ b/components/action-mgt/org.wso2.carbon.identity.action.execution/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework action-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/action-mgt/org.wso2.carbon.identity.action.management/pom.xml b/components/action-mgt/org.wso2.carbon.identity.action.management/pom.xml index e5479edbaa83..b06c4f3ec2f8 100644 --- a/components/action-mgt/org.wso2.carbon.identity.action.management/pom.xml +++ b/components/action-mgt/org.wso2.carbon.identity.action.management/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework action-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/action-mgt/pom.xml b/components/action-mgt/pom.xml index fef6fcbcb5eb..4846bef81397 100644 --- a/components/action-mgt/pom.xml +++ b/components/action-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.collection.mgt/pom.xml b/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.collection.mgt/pom.xml index e60cae5cd560..4e7b7ebca458 100644 --- a/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.collection.mgt/pom.xml +++ b/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.collection.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework api-resource-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt/pom.xml b/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt/pom.xml index 90d207d8c253..df7751830722 100644 --- a/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt/pom.xml +++ b/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework api-resource-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml org.wso2.carbon.identity.api.resource.mgt diff --git a/components/api-resource-mgt/pom.xml b/components/api-resource-mgt/pom.xml index d78a6d875108..bf292929eff2 100644 --- a/components/api-resource-mgt/pom.xml +++ b/components/api-resource-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/application-mgt/org.wso2.carbon.identity.application.common/pom.xml b/components/application-mgt/org.wso2.carbon.identity.application.common/pom.xml index 3ef15161fe36..6c7e524b6eea 100644 --- a/components/application-mgt/org.wso2.carbon.identity.application.common/pom.xml +++ b/components/application-mgt/org.wso2.carbon.identity.application.common/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.framework application-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/application-mgt/org.wso2.carbon.identity.application.mgt.ui/pom.xml b/components/application-mgt/org.wso2.carbon.identity.application.mgt.ui/pom.xml index add6192cd151..afb3f119a149 100644 --- a/components/application-mgt/org.wso2.carbon.identity.application.mgt.ui/pom.xml +++ b/components/application-mgt/org.wso2.carbon.identity.application.mgt.ui/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework application-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/application-mgt/org.wso2.carbon.identity.application.mgt/pom.xml b/components/application-mgt/org.wso2.carbon.identity.application.mgt/pom.xml index 959253f07895..8386f7cdd72c 100644 --- a/components/application-mgt/org.wso2.carbon.identity.application.mgt/pom.xml +++ b/components/application-mgt/org.wso2.carbon.identity.application.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework application-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml org.wso2.carbon.identity.application.mgt diff --git a/components/application-mgt/pom.xml b/components/application-mgt/pom.xml index f0e7585416af..efd56f7f1625 100644 --- a/components/application-mgt/pom.xml +++ b/components/application-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/authentication-framework/org.wso2.carbon.identity.application.authentication.endpoint.util/pom.xml b/components/authentication-framework/org.wso2.carbon.identity.application.authentication.endpoint.util/pom.xml index d40883f6c327..56d0fcdfba54 100644 --- a/components/authentication-framework/org.wso2.carbon.identity.application.authentication.endpoint.util/pom.xml +++ b/components/authentication-framework/org.wso2.carbon.identity.application.authentication.endpoint.util/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework authentication-framework - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/authentication-framework/org.wso2.carbon.identity.application.authentication.framework/pom.xml b/components/authentication-framework/org.wso2.carbon.identity.application.authentication.framework/pom.xml index 2de6e90c6698..004f4f92a06b 100644 --- a/components/authentication-framework/org.wso2.carbon.identity.application.authentication.framework/pom.xml +++ b/components/authentication-framework/org.wso2.carbon.identity.application.authentication.framework/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework authentication-framework - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/authentication-framework/pom.xml b/components/authentication-framework/pom.xml index 964f903384a7..7765713ca80d 100644 --- a/components/authentication-framework/pom.xml +++ b/components/authentication-framework/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/captcha-mgt/org.wso2.carbon.captcha.mgt/pom.xml b/components/captcha-mgt/org.wso2.carbon.captcha.mgt/pom.xml index 19c344e8f064..899a9391410f 100644 --- a/components/captcha-mgt/org.wso2.carbon.captcha.mgt/pom.xml +++ b/components/captcha-mgt/org.wso2.carbon.captcha.mgt/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework captcha-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/captcha-mgt/pom.xml b/components/captcha-mgt/pom.xml index 16a798e2874a..6526585b6bba 100644 --- a/components/captcha-mgt/pom.xml +++ b/components/captcha-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/carbon-authenticators/pom.xml b/components/carbon-authenticators/pom.xml index c4133af1922b..ab2a6bd39528 100644 --- a/components/carbon-authenticators/pom.xml +++ b/components/carbon-authenticators/pom.xml @@ -17,7 +17,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.authenticator.thrift/pom.xml b/components/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.authenticator.thrift/pom.xml index 01a521d939f0..004fe71fce81 100644 --- a/components/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.authenticator.thrift/pom.xml +++ b/components/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.authenticator.thrift/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework thrift-authenticator - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/carbon-authenticators/thrift-authenticator/pom.xml b/components/carbon-authenticators/thrift-authenticator/pom.xml index 00de7a035854..6297f844b763 100644 --- a/components/carbon-authenticators/thrift-authenticator/pom.xml +++ b/components/carbon-authenticators/thrift-authenticator/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework carbon-authenticators - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/central-logger/org.wso2.carbon.identity.central.log.mgt/pom.xml b/components/central-logger/org.wso2.carbon.identity.central.log.mgt/pom.xml index 7dfb6eee09ef..db6d03000c46 100644 --- a/components/central-logger/org.wso2.carbon.identity.central.log.mgt/pom.xml +++ b/components/central-logger/org.wso2.carbon.identity.central.log.mgt/pom.xml @@ -21,7 +21,7 @@ central-logger org.wso2.carbon.identity.framework - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml 4.0.0 diff --git a/components/central-logger/pom.xml b/components/central-logger/pom.xml index fd16f07c8217..ff10cac7f0e9 100644 --- a/components/central-logger/pom.xml +++ b/components/central-logger/pom.xml @@ -21,7 +21,7 @@ identity-framework org.wso2.carbon.identity.framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/certificate-mgt/org.wso2.carbon.identity.certificate.management/pom.xml b/components/certificate-mgt/org.wso2.carbon.identity.certificate.management/pom.xml index f5ac510d1311..2f32a647176f 100644 --- a/components/certificate-mgt/org.wso2.carbon.identity.certificate.management/pom.xml +++ b/components/certificate-mgt/org.wso2.carbon.identity.certificate.management/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework certificate-mgt - 7.7.86-SNAPSHOT + 7.7.86 4.0.0 diff --git a/components/certificate-mgt/pom.xml b/components/certificate-mgt/pom.xml index dd620d6adcc8..6ac3a1bf332e 100644 --- a/components/certificate-mgt/pom.xml +++ b/components/certificate-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/claim-mgt/org.wso2.carbon.claim.mgt.ui/pom.xml b/components/claim-mgt/org.wso2.carbon.claim.mgt.ui/pom.xml index a436a6518e17..7d707cc53421 100644 --- a/components/claim-mgt/org.wso2.carbon.claim.mgt.ui/pom.xml +++ b/components/claim-mgt/org.wso2.carbon.claim.mgt.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework claim-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/claim-mgt/org.wso2.carbon.claim.mgt/pom.xml b/components/claim-mgt/org.wso2.carbon.claim.mgt/pom.xml index 29b3b5c7b1d0..e73f1dd0d6a8 100644 --- a/components/claim-mgt/org.wso2.carbon.claim.mgt/pom.xml +++ b/components/claim-mgt/org.wso2.carbon.claim.mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework claim-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt.ui/pom.xml b/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt.ui/pom.xml index 5a6acd5981ea..3a3e13709bf1 100644 --- a/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt.ui/pom.xml +++ b/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt.ui/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework claim-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt/pom.xml b/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt/pom.xml index c3a4200fa7ae..fc1c506bba43 100644 --- a/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt/pom.xml +++ b/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework claim-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/claim-mgt/pom.xml b/components/claim-mgt/pom.xml index 7a81b83fbb19..4784b386921f 100644 --- a/components/claim-mgt/pom.xml +++ b/components/claim-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt/pom.xml b/components/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt/pom.xml index d3b99ee21c63..8c661891ab96 100644 --- a/components/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt/pom.xml +++ b/components/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt/pom.xml @@ -23,7 +23,7 @@ org.wso2.carbon.identity.framework client-attestation-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/client-attestation-mgt/pom.xml b/components/client-attestation-mgt/pom.xml index 632bad67be81..95ae97374ddb 100644 --- a/components/client-attestation-mgt/pom.xml +++ b/components/client-attestation-mgt/pom.xml @@ -23,7 +23,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/configuration-mgt/org.wso2.carbon.identity.api.server.configuration.mgt/pom.xml b/components/configuration-mgt/org.wso2.carbon.identity.api.server.configuration.mgt/pom.xml index 420480762a28..1f7e101d2cc3 100644 --- a/components/configuration-mgt/org.wso2.carbon.identity.api.server.configuration.mgt/pom.xml +++ b/components/configuration-mgt/org.wso2.carbon.identity.api.server.configuration.mgt/pom.xml @@ -23,11 +23,11 @@ org.wso2.carbon.identity.framework configuration-mgt - 7.7.86-SNAPSHOT + 7.7.86 org.wso2.carbon.identity.api.server.configuration.mgt - 7.7.86-SNAPSHOT + 7.7.86 jar WSO2 Carbon - Configuration Management API Identity Configuration Management API diff --git a/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.core/pom.xml b/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.core/pom.xml index 34a424848653..d9396ee42a51 100644 --- a/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.core/pom.xml +++ b/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.core/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework configuration-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.endpoint/pom.xml b/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.endpoint/pom.xml index 5ec1bb5dc35e..6d6d9024616b 100644 --- a/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.endpoint/pom.xml +++ b/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.endpoint/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework configuration-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/configuration-mgt/pom.xml b/components/configuration-mgt/pom.xml index 29b54e0143a9..da76d848b9f5 100644 --- a/components/configuration-mgt/pom.xml +++ b/components/configuration-mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/consent-mgt/org.wso2.carbon.identity.consent.mgt/pom.xml b/components/consent-mgt/org.wso2.carbon.identity.consent.mgt/pom.xml index 42bf914d45b3..556e8bc39fc9 100644 --- a/components/consent-mgt/org.wso2.carbon.identity.consent.mgt/pom.xml +++ b/components/consent-mgt/org.wso2.carbon.identity.consent.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework consent-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/consent-mgt/pom.xml b/components/consent-mgt/pom.xml index 08cb780f62f6..68b381f9dd77 100644 --- a/components/consent-mgt/pom.xml +++ b/components/consent-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt/pom.xml b/components/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt/pom.xml index ce48c0249ad1..6550dfebe009 100644 --- a/components/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt/pom.xml +++ b/components/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework consent-server-configs-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/consent-server-configs-mgt/pom.xml b/components/consent-server-configs-mgt/pom.xml index c6d7c5d00ac1..ba289192a8b5 100644 --- a/components/consent-server-configs-mgt/pom.xml +++ b/components/consent-server-configs-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/cors-mgt/org.wso2.carbon.identity.cors.mgt.core/pom.xml b/components/cors-mgt/org.wso2.carbon.identity.cors.mgt.core/pom.xml index 669d50395330..abdce5ea7bc6 100644 --- a/components/cors-mgt/org.wso2.carbon.identity.cors.mgt.core/pom.xml +++ b/components/cors-mgt/org.wso2.carbon.identity.cors.mgt.core/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework cors-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/cors-mgt/pom.xml b/components/cors-mgt/pom.xml index 706548c10ed8..f6063b347d43 100644 --- a/components/cors-mgt/pom.xml +++ b/components/cors-mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/directory-server-manager/org.wso2.carbon.directory.server.manager.common/pom.xml b/components/directory-server-manager/org.wso2.carbon.directory.server.manager.common/pom.xml index e4f79481f833..ff80f2dd1c36 100644 --- a/components/directory-server-manager/org.wso2.carbon.directory.server.manager.common/pom.xml +++ b/components/directory-server-manager/org.wso2.carbon.directory.server.manager.common/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework directory-server-manager - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/directory-server-manager/org.wso2.carbon.directory.server.manager.ui/pom.xml b/components/directory-server-manager/org.wso2.carbon.directory.server.manager.ui/pom.xml index d466fc4937b0..de730b9ef3a9 100644 --- a/components/directory-server-manager/org.wso2.carbon.directory.server.manager.ui/pom.xml +++ b/components/directory-server-manager/org.wso2.carbon.directory.server.manager.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework directory-server-manager - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/directory-server-manager/org.wso2.carbon.directory.server.manager/pom.xml b/components/directory-server-manager/org.wso2.carbon.directory.server.manager/pom.xml index 276ecbb16795..c9dabdef6bd4 100644 --- a/components/directory-server-manager/org.wso2.carbon.directory.server.manager/pom.xml +++ b/components/directory-server-manager/org.wso2.carbon.directory.server.manager/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework directory-server-manager - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/directory-server-manager/pom.xml b/components/directory-server-manager/pom.xml index a1783cabedb9..daaf5fad594a 100644 --- a/components/directory-server-manager/pom.xml +++ b/components/directory-server-manager/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/extension-mgt/org.wso2.carbon.identity.extension.mgt/pom.xml b/components/extension-mgt/org.wso2.carbon.identity.extension.mgt/pom.xml index ff21863e5a00..3ce90d6f98e0 100644 --- a/components/extension-mgt/org.wso2.carbon.identity.extension.mgt/pom.xml +++ b/components/extension-mgt/org.wso2.carbon.identity.extension.mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework extension-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/extension-mgt/pom.xml b/components/extension-mgt/pom.xml index 78dc75b60650..a93865c51f60 100644 --- a/components/extension-mgt/pom.xml +++ b/components/extension-mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui/pom.xml b/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui/pom.xml index 146148f62986..c8bda7c7677e 100644 --- a/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui/pom.xml +++ b/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui/pom.xml @@ -21,7 +21,7 @@ functions-library-mgt org.wso2.carbon.identity.framework - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml 4.0.0 diff --git a/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt/pom.xml b/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt/pom.xml index c83aebb3c75c..407aa80c4938 100644 --- a/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt/pom.xml +++ b/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt/pom.xml @@ -21,7 +21,7 @@ functions-library-mgt org.wso2.carbon.identity.framework - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml 4.0.0 diff --git a/components/functions-library-mgt/pom.xml b/components/functions-library-mgt/pom.xml index e4f673498bc8..61056fc81e22 100644 --- a/components/functions-library-mgt/pom.xml +++ b/components/functions-library-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/identity-core/org.wso2.carbon.identity.base/pom.xml b/components/identity-core/org.wso2.carbon.identity.base/pom.xml index 5efdc099408a..a106522baec2 100644 --- a/components/identity-core/org.wso2.carbon.identity.base/pom.xml +++ b/components/identity-core/org.wso2.carbon.identity.base/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-core - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/identity-core/org.wso2.carbon.identity.core.ui/pom.xml b/components/identity-core/org.wso2.carbon.identity.core.ui/pom.xml index def504ba7d32..920e26cf0828 100644 --- a/components/identity-core/org.wso2.carbon.identity.core.ui/pom.xml +++ b/components/identity-core/org.wso2.carbon.identity.core.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-core - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/identity-core/org.wso2.carbon.identity.core/pom.xml b/components/identity-core/org.wso2.carbon.identity.core/pom.xml index 060c68b290f1..21b2af4c4ae9 100644 --- a/components/identity-core/org.wso2.carbon.identity.core/pom.xml +++ b/components/identity-core/org.wso2.carbon.identity.core/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-core - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/identity-core/pom.xml b/components/identity-core/pom.xml index 572a6581efbe..ef932c8b01b7 100644 --- a/components/identity-core/pom.xml +++ b/components/identity-core/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/identity-event/org.wso2.carbon.identity.event/pom.xml b/components/identity-event/org.wso2.carbon.identity.event/pom.xml index 5a3296cc1fc0..e8ec9a1c68d8 100644 --- a/components/identity-event/org.wso2.carbon.identity.event/pom.xml +++ b/components/identity-event/org.wso2.carbon.identity.event/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-event - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/identity-event/pom.xml b/components/identity-event/pom.xml index 95ce9db8f91e..d4d8d8220249 100644 --- a/components/identity-event/pom.xml +++ b/components/identity-event/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/identity-mgt/org.wso2.carbon.identity.mgt.endpoint.util/pom.xml b/components/identity-mgt/org.wso2.carbon.identity.mgt.endpoint.util/pom.xml index 1dc7f0a2fb7b..55582cb10439 100644 --- a/components/identity-mgt/org.wso2.carbon.identity.mgt.endpoint.util/pom.xml +++ b/components/identity-mgt/org.wso2.carbon.identity.mgt.endpoint.util/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/identity-mgt/org.wso2.carbon.identity.mgt.ui/pom.xml b/components/identity-mgt/org.wso2.carbon.identity.mgt.ui/pom.xml index c7070e9bfa42..b537c3b9b92b 100644 --- a/components/identity-mgt/org.wso2.carbon.identity.mgt.ui/pom.xml +++ b/components/identity-mgt/org.wso2.carbon.identity.mgt.ui/pom.xml @@ -23,7 +23,7 @@ org.wso2.carbon.identity.framework identity-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/identity-mgt/org.wso2.carbon.identity.mgt/pom.xml b/components/identity-mgt/org.wso2.carbon.identity.mgt/pom.xml index 71e4484747e0..9cb686eb9db7 100644 --- a/components/identity-mgt/org.wso2.carbon.identity.mgt/pom.xml +++ b/components/identity-mgt/org.wso2.carbon.identity.mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/identity-mgt/pom.xml b/components/identity-mgt/pom.xml index b9ebf64ae302..62e03196e54d 100644 --- a/components/identity-mgt/pom.xml +++ b/components/identity-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/idp-mgt/org.wso2.carbon.idp.mgt.ui/pom.xml b/components/idp-mgt/org.wso2.carbon.idp.mgt.ui/pom.xml index 08851699e7cd..eec4cdd8ea2a 100644 --- a/components/idp-mgt/org.wso2.carbon.idp.mgt.ui/pom.xml +++ b/components/idp-mgt/org.wso2.carbon.idp.mgt.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-provider-management - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/idp-mgt/org.wso2.carbon.idp.mgt/pom.xml b/components/idp-mgt/org.wso2.carbon.idp.mgt/pom.xml index d9129dd71ce8..9927d3b04e93 100644 --- a/components/idp-mgt/org.wso2.carbon.idp.mgt/pom.xml +++ b/components/idp-mgt/org.wso2.carbon.idp.mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-provider-management - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/idp-mgt/pom.xml b/components/idp-mgt/pom.xml index d0a821b1f158..39e0d1175061 100644 --- a/components/idp-mgt/pom.xml +++ b/components/idp-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt/pom.xml b/components/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt/pom.xml index 3444ef7c8234..aefeaaf8ec48 100644 --- a/components/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt/pom.xml +++ b/components/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework input-validation-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/input-validation-mgt/pom.xml b/components/input-validation-mgt/pom.xml index 613d83ad4f7e..bab5bd40aa0b 100644 --- a/components/input-validation-mgt/pom.xml +++ b/components/input-validation-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt/pom.xml b/components/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt/pom.xml index 3eb87f99261c..cbc014dcaac9 100644 --- a/components/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt/pom.xml +++ b/components/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt/pom.xml @@ -21,7 +21,7 @@ multi-attribute-login org.wso2.carbon.identity.framework - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml 4.0.0 diff --git a/components/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt/pom.xml b/components/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt/pom.xml index 3ab86c9becb4..7a8f6403fb82 100644 --- a/components/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt/pom.xml +++ b/components/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt/pom.xml @@ -21,7 +21,7 @@ multi-attribute-login org.wso2.carbon.identity.framework - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml 4.0.0 diff --git a/components/multi-attribute-login/pom.xml b/components/multi-attribute-login/pom.xml index 279faca5df25..52245512121a 100644 --- a/components/multi-attribute-login/pom.xml +++ b/components/multi-attribute-login/pom.xml @@ -21,7 +21,7 @@ identity-framework org.wso2.carbon.identity.framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml 4.0.0 diff --git a/components/notification-mgt/org.wso2.carbon.identity.notification.mgt/pom.xml b/components/notification-mgt/org.wso2.carbon.identity.notification.mgt/pom.xml index 605d334a8d09..f87aa3948090 100644 --- a/components/notification-mgt/org.wso2.carbon.identity.notification.mgt/pom.xml +++ b/components/notification-mgt/org.wso2.carbon.identity.notification.mgt/pom.xml @@ -23,7 +23,7 @@ org.wso2.carbon.identity.framework notification-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/notification-mgt/pom.xml b/components/notification-mgt/pom.xml index a557b9687e46..e501be53a458 100644 --- a/components/notification-mgt/pom.xml +++ b/components/notification-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/provisioning/org.wso2.carbon.identity.provisioning/pom.xml b/components/provisioning/org.wso2.carbon.identity.provisioning/pom.xml index fa2b6720cfb3..3dd7243da26d 100644 --- a/components/provisioning/org.wso2.carbon.identity.provisioning/pom.xml +++ b/components/provisioning/org.wso2.carbon.identity.provisioning/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework provisioning - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/provisioning/pom.xml b/components/provisioning/pom.xml index 61d20baca5ba..05ff0b7307d3 100644 --- a/components/provisioning/pom.xml +++ b/components/provisioning/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/role-mgt/org.wso2.carbon.identity.role.mgt.core/pom.xml b/components/role-mgt/org.wso2.carbon.identity.role.mgt.core/pom.xml index 8bace96b465a..de4981cf7766 100644 --- a/components/role-mgt/org.wso2.carbon.identity.role.mgt.core/pom.xml +++ b/components/role-mgt/org.wso2.carbon.identity.role.mgt.core/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework role-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core/pom.xml b/components/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core/pom.xml index 7537ec1ee018..89bc4c49d367 100644 --- a/components/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core/pom.xml +++ b/components/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework role-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/role-mgt/pom.xml b/components/role-mgt/pom.xml index 596fe70cfdf4..9651c2c0ceee 100644 --- a/components/role-mgt/pom.xml +++ b/components/role-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/rule-mgt/org.wso2.carbon.identity.rule.management/pom.xml b/components/rule-mgt/org.wso2.carbon.identity.rule.management/pom.xml index d35c54de2a76..b66da6f9fc31 100644 --- a/components/rule-mgt/org.wso2.carbon.identity.rule.management/pom.xml +++ b/components/rule-mgt/org.wso2.carbon.identity.rule.management/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework rule-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/rule-mgt/org.wso2.carbon.identity.rule.metadata/pom.xml b/components/rule-mgt/org.wso2.carbon.identity.rule.metadata/pom.xml index 55d556f0142a..42df5b4a4507 100644 --- a/components/rule-mgt/org.wso2.carbon.identity.rule.metadata/pom.xml +++ b/components/rule-mgt/org.wso2.carbon.identity.rule.metadata/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework rule-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/rule-mgt/pom.xml b/components/rule-mgt/pom.xml index 014d1d569141..c2056aea98cc 100644 --- a/components/rule-mgt/pom.xml +++ b/components/rule-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/secret-mgt/org.wso2.carbon.identity.secret.mgt.core/pom.xml b/components/secret-mgt/org.wso2.carbon.identity.secret.mgt.core/pom.xml index 890aca43022c..0d6b3e06c875 100644 --- a/components/secret-mgt/org.wso2.carbon.identity.secret.mgt.core/pom.xml +++ b/components/secret-mgt/org.wso2.carbon.identity.secret.mgt.core/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework secret-mgt - 7.7.86-SNAPSHOT + 7.7.86 4.0.0 diff --git a/components/secret-mgt/pom.xml b/components/secret-mgt/pom.xml index 6f0ecf963cb8..59a805cf5834 100644 --- a/components/secret-mgt/pom.xml +++ b/components/secret-mgt/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/security-mgt/org.wso2.carbon.security.mgt.ui/pom.xml b/components/security-mgt/org.wso2.carbon.security.mgt.ui/pom.xml index 19a4eaa449ae..13a53d7afbbe 100644 --- a/components/security-mgt/org.wso2.carbon.security.mgt.ui/pom.xml +++ b/components/security-mgt/org.wso2.carbon.security.mgt.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework security-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/security-mgt/org.wso2.carbon.security.mgt/pom.xml b/components/security-mgt/org.wso2.carbon.security.mgt/pom.xml index 02b0a7679adc..0d95237d4617 100644 --- a/components/security-mgt/org.wso2.carbon.security.mgt/pom.xml +++ b/components/security-mgt/org.wso2.carbon.security.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework security-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/security-mgt/pom.xml b/components/security-mgt/pom.xml index 65822bd3d7f1..e468f02f8016 100644 --- a/components/security-mgt/pom.xml +++ b/components/security-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/template-mgt/org.wso2.carbon.identity.template.mgt.ui/pom.xml b/components/template-mgt/org.wso2.carbon.identity.template.mgt.ui/pom.xml index 1c0d9f5ffdeb..2d5500a0184e 100644 --- a/components/template-mgt/org.wso2.carbon.identity.template.mgt.ui/pom.xml +++ b/components/template-mgt/org.wso2.carbon.identity.template.mgt.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework template-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml 4.0.0 diff --git a/components/template-mgt/org.wso2.carbon.identity.template.mgt/pom.xml b/components/template-mgt/org.wso2.carbon.identity.template.mgt/pom.xml index a480ba3b7361..ed9a0e045f25 100644 --- a/components/template-mgt/org.wso2.carbon.identity.template.mgt/pom.xml +++ b/components/template-mgt/org.wso2.carbon.identity.template.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework template-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml 4.0.0 diff --git a/components/template-mgt/pom.xml b/components/template-mgt/pom.xml index 1ff102534746..3cde0ecafd77 100644 --- a/components/template-mgt/pom.xml +++ b/components/template-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt/pom.xml b/components/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt/pom.xml index e34caeef995f..4c858f0f363e 100644 --- a/components/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt/pom.xml +++ b/components/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework trusted-app-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/trusted-app-mgt/pom.xml b/components/trusted-app-mgt/pom.xml index 98f7c4b1bdd3..ef4aadcfeea4 100644 --- a/components/trusted-app-mgt/pom.xml +++ b/components/trusted-app-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt/pom.xml b/components/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt/pom.xml index 50c42db4d5e5..cbc494ffe03d 100644 --- a/components/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt/pom.xml +++ b/components/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt/pom.xml @@ -21,7 +21,7 @@ user-functionality-mgt org.wso2.carbon.identity.framework - 7.7.86-SNAPSHOT + 7.7.86 4.0.0 diff --git a/components/user-functionality-mgt/pom.xml b/components/user-functionality-mgt/pom.xml index aef9bb2a7cc4..0cfd56518e54 100644 --- a/components/user-functionality-mgt/pom.xml +++ b/components/user-functionality-mgt/pom.xml @@ -21,7 +21,7 @@ identity-framework org.wso2.carbon.identity.framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/user-mgt/org.wso2.carbon.identity.user.profile.ui/pom.xml b/components/user-mgt/org.wso2.carbon.identity.user.profile.ui/pom.xml index 076b27a06da2..426b8efaf23d 100644 --- a/components/user-mgt/org.wso2.carbon.identity.user.profile.ui/pom.xml +++ b/components/user-mgt/org.wso2.carbon.identity.user.profile.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/user-mgt/org.wso2.carbon.identity.user.profile/pom.xml b/components/user-mgt/org.wso2.carbon.identity.user.profile/pom.xml index 18c445f1081e..d630951d1c4c 100644 --- a/components/user-mgt/org.wso2.carbon.identity.user.profile/pom.xml +++ b/components/user-mgt/org.wso2.carbon.identity.user.profile/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/user-mgt/org.wso2.carbon.identity.user.registration/pom.xml b/components/user-mgt/org.wso2.carbon.identity.user.registration/pom.xml index 127e92e7a16b..a20e5bf9715c 100644 --- a/components/user-mgt/org.wso2.carbon.identity.user.registration/pom.xml +++ b/components/user-mgt/org.wso2.carbon.identity.user.registration/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/user-mgt/org.wso2.carbon.role.mgt.ui/pom.xml b/components/user-mgt/org.wso2.carbon.role.mgt.ui/pom.xml index faae609d8d36..6ca9e74d858c 100644 --- a/components/user-mgt/org.wso2.carbon.role.mgt.ui/pom.xml +++ b/components/user-mgt/org.wso2.carbon.role.mgt.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/user-mgt/org.wso2.carbon.user.mgt.common/pom.xml b/components/user-mgt/org.wso2.carbon.user.mgt.common/pom.xml index d1e3454dd1f8..6a1eba9fd26a 100644 --- a/components/user-mgt/org.wso2.carbon.user.mgt.common/pom.xml +++ b/components/user-mgt/org.wso2.carbon.user.mgt.common/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/user-mgt/org.wso2.carbon.user.mgt.ui/pom.xml b/components/user-mgt/org.wso2.carbon.user.mgt.ui/pom.xml index 450de07e01f0..333b706c499c 100644 --- a/components/user-mgt/org.wso2.carbon.user.mgt.ui/pom.xml +++ b/components/user-mgt/org.wso2.carbon.user.mgt.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/user-mgt/org.wso2.carbon.user.mgt/pom.xml b/components/user-mgt/org.wso2.carbon.user.mgt/pom.xml index ed720fb3df62..841178648640 100644 --- a/components/user-mgt/org.wso2.carbon.user.mgt/pom.xml +++ b/components/user-mgt/org.wso2.carbon.user.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/user-mgt/pom.xml b/components/user-mgt/pom.xml index 91de8ee789c8..46e3b90cdf33 100644 --- a/components/user-mgt/pom.xml +++ b/components/user-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/components/user-store/org.wso2.carbon.identity.user.store.configuration.deployer/pom.xml b/components/user-store/org.wso2.carbon.identity.user.store.configuration.deployer/pom.xml index c6f3936492e0..89350989ff9c 100644 --- a/components/user-store/org.wso2.carbon.identity.user.store.configuration.deployer/pom.xml +++ b/components/user-store/org.wso2.carbon.identity.user.store.configuration.deployer/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-store - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/user-store/org.wso2.carbon.identity.user.store.configuration.ui/pom.xml b/components/user-store/org.wso2.carbon.identity.user.store.configuration.ui/pom.xml index c030ad0da349..db0185999fa3 100644 --- a/components/user-store/org.wso2.carbon.identity.user.store.configuration.ui/pom.xml +++ b/components/user-store/org.wso2.carbon.identity.user.store.configuration.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-store - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/user-store/org.wso2.carbon.identity.user.store.configuration/pom.xml b/components/user-store/org.wso2.carbon.identity.user.store.configuration/pom.xml index 4bd3096d7095..045c43f14fa5 100644 --- a/components/user-store/org.wso2.carbon.identity.user.store.configuration/pom.xml +++ b/components/user-store/org.wso2.carbon.identity.user.store.configuration/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-store - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/user-store/org.wso2.carbon.identity.user.store.count/pom.xml b/components/user-store/org.wso2.carbon.identity.user.store.count/pom.xml index c3b55eb70cca..daa366c3cea1 100644 --- a/components/user-store/org.wso2.carbon.identity.user.store.count/pom.xml +++ b/components/user-store/org.wso2.carbon.identity.user.store.count/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-store - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/components/user-store/pom.xml b/components/user-store/pom.xml index b47213db40b1..74f61761f8bd 100644 --- a/components/user-store/pom.xml +++ b/components/user-store/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/features/action-mgt/org.wso2.carbon.identity.action.management.server.feature/pom.xml b/features/action-mgt/org.wso2.carbon.identity.action.management.server.feature/pom.xml index fe37cc337623..6e9a3a2b156d 100644 --- a/features/action-mgt/org.wso2.carbon.identity.action.management.server.feature/pom.xml +++ b/features/action-mgt/org.wso2.carbon.identity.action.management.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework action-management-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/action-mgt/pom.xml b/features/action-mgt/pom.xml index 31622653e0ef..e1310d0f5f33 100644 --- a/features/action-mgt/pom.xml +++ b/features/action-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/features/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt.server.feature/pom.xml b/features/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt.server.feature/pom.xml index 44c42c704b80..4e97abc61d0e 100644 --- a/features/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt.server.feature/pom.xml +++ b/features/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework api-resource-management-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/api-resource-mgt/pom.xml b/features/api-resource-mgt/pom.xml index e545cbd814d0..962ad640bc3f 100644 --- a/features/api-resource-mgt/pom.xml +++ b/features/api-resource-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/features/application-mgt/org.wso2.carbon.identity.application.mgt.feature/pom.xml b/features/application-mgt/org.wso2.carbon.identity.application.mgt.feature/pom.xml index 4caeb0367cd7..2bfa843bfef0 100644 --- a/features/application-mgt/org.wso2.carbon.identity.application.mgt.feature/pom.xml +++ b/features/application-mgt/org.wso2.carbon.identity.application.mgt.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework application-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/application-mgt/org.wso2.carbon.identity.application.mgt.server.feature/pom.xml b/features/application-mgt/org.wso2.carbon.identity.application.mgt.server.feature/pom.xml index 1cf7245c24f8..6505622cade8 100644 --- a/features/application-mgt/org.wso2.carbon.identity.application.mgt.server.feature/pom.xml +++ b/features/application-mgt/org.wso2.carbon.identity.application.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework application-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/application-mgt/org.wso2.carbon.identity.application.mgt.ui.feature/pom.xml b/features/application-mgt/org.wso2.carbon.identity.application.mgt.ui.feature/pom.xml index aef37bc6352d..ae25ef334701 100644 --- a/features/application-mgt/org.wso2.carbon.identity.application.mgt.ui.feature/pom.xml +++ b/features/application-mgt/org.wso2.carbon.identity.application.mgt.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework application-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/application-mgt/pom.xml b/features/application-mgt/pom.xml index 83568c96648b..2b32cd541bac 100644 --- a/features/application-mgt/pom.xml +++ b/features/application-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/features/authentication-framework/org.wso2.carbon.identity.application.authentication.framework.server.feature/pom.xml b/features/authentication-framework/org.wso2.carbon.identity.application.authentication.framework.server.feature/pom.xml index 111f3dd9ada1..c8fb61bbb9d7 100644 --- a/features/authentication-framework/org.wso2.carbon.identity.application.authentication.framework.server.feature/pom.xml +++ b/features/authentication-framework/org.wso2.carbon.identity.application.authentication.framework.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework authentication-framework-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/authentication-framework/pom.xml b/features/authentication-framework/pom.xml index e2261cdf7e1e..4bb0cbc4c894 100644 --- a/features/authentication-framework/pom.xml +++ b/features/authentication-framework/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/features/carbon-authenticators/pom.xml b/features/carbon-authenticators/pom.xml index 6a452b26dc21..ffedbdf9a462 100644 --- a/features/carbon-authenticators/pom.xml +++ b/features/carbon-authenticators/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/features/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.thrift.authentication.feature/pom.xml b/features/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.thrift.authentication.feature/pom.xml index b4823f64ce23..33ef30f723b3 100644 --- a/features/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.thrift.authentication.feature/pom.xml +++ b/features/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.thrift.authentication.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework thrift-authenticator-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/carbon-authenticators/thrift-authenticator/pom.xml b/features/carbon-authenticators/thrift-authenticator/pom.xml index fbe12d8ff228..371587362f00 100644 --- a/features/carbon-authenticators/thrift-authenticator/pom.xml +++ b/features/carbon-authenticators/thrift-authenticator/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-authenticator-features - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/categories/authorization/pom.xml b/features/categories/authorization/pom.xml index ea7728708340..a117819f25a4 100644 --- a/features/categories/authorization/pom.xml +++ b/features/categories/authorization/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../../pom.xml diff --git a/features/categories/inbound-authentication/pom.xml b/features/categories/inbound-authentication/pom.xml index bbd936046a39..ef8a035211cc 100644 --- a/features/categories/inbound-authentication/pom.xml +++ b/features/categories/inbound-authentication/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../../pom.xml diff --git a/features/categories/inbound-provisioning/pom.xml b/features/categories/inbound-provisioning/pom.xml index e3e138c275ce..31ac19ae2e14 100644 --- a/features/categories/inbound-provisioning/pom.xml +++ b/features/categories/inbound-provisioning/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../../pom.xml diff --git a/features/categories/keystore-mgt/pom.xml b/features/categories/keystore-mgt/pom.xml index e19210d33bb1..df3defc71668 100644 --- a/features/categories/keystore-mgt/pom.xml +++ b/features/categories/keystore-mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../../pom.xml diff --git a/features/categories/notification-mgt/pom.xml b/features/categories/notification-mgt/pom.xml index 9186a6a8cf1e..a8b9d1a337b6 100644 --- a/features/categories/notification-mgt/pom.xml +++ b/features/categories/notification-mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../../pom.xml diff --git a/features/categories/outbound-authentication/pom.xml b/features/categories/outbound-authentication/pom.xml index 337f2d104332..6011fdec3836 100644 --- a/features/categories/outbound-authentication/pom.xml +++ b/features/categories/outbound-authentication/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../../pom.xml diff --git a/features/categories/outbound-provisioning/pom.xml b/features/categories/outbound-provisioning/pom.xml index 99febd9ceaba..fc87c33e3fcc 100644 --- a/features/categories/outbound-provisioning/pom.xml +++ b/features/categories/outbound-provisioning/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../../pom.xml diff --git a/features/categories/pom.xml b/features/categories/pom.xml index f618b4e45867..3d77b1180525 100644 --- a/features/categories/pom.xml +++ b/features/categories/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/features/categories/user-mgt/pom.xml b/features/categories/user-mgt/pom.xml index 813132110ff6..b6aad1dc0efe 100644 --- a/features/categories/user-mgt/pom.xml +++ b/features/categories/user-mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../../pom.xml diff --git a/features/central-logger/org.wso2.carbon.identity.central.log.mgt.server.feature/pom.xml b/features/central-logger/org.wso2.carbon.identity.central.log.mgt.server.feature/pom.xml index 0a50834c2fa6..93b499b89793 100644 --- a/features/central-logger/org.wso2.carbon.identity.central.log.mgt.server.feature/pom.xml +++ b/features/central-logger/org.wso2.carbon.identity.central.log.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework central-logger-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/central-logger/pom.xml b/features/central-logger/pom.xml index 5b99bda12a50..398a1a94dea0 100644 --- a/features/central-logger/pom.xml +++ b/features/central-logger/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml 4.0.0 diff --git a/features/certificate-mgt/org.wso2.carbon.identity.certificate.management.server.feature/pom.xml b/features/certificate-mgt/org.wso2.carbon.identity.certificate.management.server.feature/pom.xml index 754d087ede28..a95e45d7805d 100644 --- a/features/certificate-mgt/org.wso2.carbon.identity.certificate.management.server.feature/pom.xml +++ b/features/certificate-mgt/org.wso2.carbon.identity.certificate.management.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework certificate-management-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/certificate-mgt/pom.xml b/features/certificate-mgt/pom.xml index caa48e72504f..6b6b8077cc83 100644 --- a/features/certificate-mgt/pom.xml +++ b/features/certificate-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/features/claim-mgt/org.wso2.carbon.claim.mgt.feature/pom.xml b/features/claim-mgt/org.wso2.carbon.claim.mgt.feature/pom.xml index 431cd3238e7c..3acdfa16cb54 100644 --- a/features/claim-mgt/org.wso2.carbon.claim.mgt.feature/pom.xml +++ b/features/claim-mgt/org.wso2.carbon.claim.mgt.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework claim-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/claim-mgt/org.wso2.carbon.claim.mgt.server.feature/pom.xml b/features/claim-mgt/org.wso2.carbon.claim.mgt.server.feature/pom.xml index ede2d86d7859..4d205e9d453d 100644 --- a/features/claim-mgt/org.wso2.carbon.claim.mgt.server.feature/pom.xml +++ b/features/claim-mgt/org.wso2.carbon.claim.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework claim-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/claim-mgt/org.wso2.carbon.claim.mgt.ui.feature/pom.xml b/features/claim-mgt/org.wso2.carbon.claim.mgt.ui.feature/pom.xml index 8844a2e2dfb8..e2509d44514c 100644 --- a/features/claim-mgt/org.wso2.carbon.claim.mgt.ui.feature/pom.xml +++ b/features/claim-mgt/org.wso2.carbon.claim.mgt.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework claim-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/claim-mgt/pom.xml b/features/claim-mgt/pom.xml index fc6e56264d24..cf2daa0fdb01 100644 --- a/features/claim-mgt/pom.xml +++ b/features/claim-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/features/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt.server.feature/pom.xml b/features/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt.server.feature/pom.xml index 3548a3e67420..70e9fa355060 100644 --- a/features/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt.server.feature/pom.xml +++ b/features/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt.server.feature/pom.xml @@ -23,7 +23,7 @@ org.wso2.carbon.identity.framework client-attestation-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/client-attestation-mgt/pom.xml b/features/client-attestation-mgt/pom.xml index 7f0d521dcd82..3e0df41c4305 100644 --- a/features/client-attestation-mgt/pom.xml +++ b/features/client-attestation-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml 4.0.0 diff --git a/features/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.server.feature/pom.xml b/features/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.server.feature/pom.xml index c6b84b611f1a..8add30b1395e 100644 --- a/features/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.server.feature/pom.xml +++ b/features/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.server.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework configuration-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/configuration-mgt/pom.xml b/features/configuration-mgt/pom.xml index 360f27ee1e62..5d4ac5d2f63b 100644 --- a/features/configuration-mgt/pom.xml +++ b/features/configuration-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/features/consent-mgt/org.wso2.carbon.identity.consent.mgt.server.feature/pom.xml b/features/consent-mgt/org.wso2.carbon.identity.consent.mgt.server.feature/pom.xml index 8b1b715053de..01b2f25de03a 100644 --- a/features/consent-mgt/org.wso2.carbon.identity.consent.mgt.server.feature/pom.xml +++ b/features/consent-mgt/org.wso2.carbon.identity.consent.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-consent-mgt-aggregator - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/consent-mgt/pom.xml b/features/consent-mgt/pom.xml index b9941bd9a07a..2d69caf008d0 100644 --- a/features/consent-mgt/pom.xml +++ b/features/consent-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/features/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt.server.feature/pom.xml b/features/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt.server.feature/pom.xml index 61d87c587828..bb1b9a6bce05 100644 --- a/features/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt.server.feature/pom.xml +++ b/features/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework consent-server-configs-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/consent-server-configs-mgt/pom.xml b/features/consent-server-configs-mgt/pom.xml index 4aa0f8429090..34de6f09827c 100644 --- a/features/consent-server-configs-mgt/pom.xml +++ b/features/consent-server-configs-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml 4.0.0 diff --git a/features/cors-mgt/org.wso2.carbon.identity.cors.mgt.server.feature/pom.xml b/features/cors-mgt/org.wso2.carbon.identity.cors.mgt.server.feature/pom.xml index e8743800e3d4..d89126963773 100644 --- a/features/cors-mgt/org.wso2.carbon.identity.cors.mgt.server.feature/pom.xml +++ b/features/cors-mgt/org.wso2.carbon.identity.cors.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework cors-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/cors-mgt/pom.xml b/features/cors-mgt/pom.xml index 569446af4264..e53870d7f654 100644 --- a/features/cors-mgt/pom.xml +++ b/features/cors-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.feature/pom.xml b/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.feature/pom.xml index 737434eeaacd..3e2f9da11f76 100644 --- a/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.feature/pom.xml +++ b/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework directory-server-manager-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.server.feature/pom.xml b/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.server.feature/pom.xml index ff140befa45e..b5a6c282d51b 100644 --- a/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.server.feature/pom.xml +++ b/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework directory-server-manager-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.ui.feature/pom.xml b/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.ui.feature/pom.xml index 1bb40cf8aa91..cdb7898d4066 100644 --- a/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.ui.feature/pom.xml +++ b/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework directory-server-manager-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/directory-server-manager/pom.xml b/features/directory-server-manager/pom.xml index 9ddf51cf8853..7466e13e7400 100644 --- a/features/directory-server-manager/pom.xml +++ b/features/directory-server-manager/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/features/extension-mgt/org.wso2.carbon.identity.extension.mgt.feature/pom.xml b/features/extension-mgt/org.wso2.carbon.identity.extension.mgt.feature/pom.xml index 557393c710a1..a448aa92b191 100644 --- a/features/extension-mgt/org.wso2.carbon.identity.extension.mgt.feature/pom.xml +++ b/features/extension-mgt/org.wso2.carbon.identity.extension.mgt.feature/pom.xml @@ -19,7 +19,7 @@ extension-management-feature org.wso2.carbon.identity.framework - 7.7.86-SNAPSHOT + 7.7.86 org.wso2.carbon.identity.extension.mgt.feature diff --git a/features/extension-mgt/pom.xml b/features/extension-mgt/pom.xml index 22fa1b1835e8..218338b8dd0c 100644 --- a/features/extension-mgt/pom.xml +++ b/features/extension-mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.feature/pom.xml b/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.feature/pom.xml index 780209e75c1b..800b0cb6a71d 100644 --- a/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.feature/pom.xml +++ b/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework functions-library-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml 4.0.0 diff --git a/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.server.feature/pom.xml b/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.server.feature/pom.xml index b3bbfaefd4dd..8d9ae2d6e1df 100644 --- a/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.server.feature/pom.xml +++ b/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework functions-library-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml 4.0.0 diff --git a/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui.feature/pom.xml b/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui.feature/pom.xml index a993d839be47..46454e0b7d07 100644 --- a/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui.feature/pom.xml +++ b/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework functions-library-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml 4.0.0 diff --git a/features/functions-library-mgt/pom.xml b/features/functions-library-mgt/pom.xml index 0a2907f76403..e7b8c26b72f3 100644 --- a/features/functions-library-mgt/pom.xml +++ b/features/functions-library-mgt/pom.xml @@ -28,7 +28,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/features/identity-core/org.wso2.carbon.identity.core.feature/pom.xml b/features/identity-core/org.wso2.carbon.identity.core.feature/pom.xml index 04c4f1cbdf3e..59cb8dc5b9cb 100644 --- a/features/identity-core/org.wso2.carbon.identity.core.feature/pom.xml +++ b/features/identity-core/org.wso2.carbon.identity.core.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-core-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/identity-core/org.wso2.carbon.identity.core.server.feature/pom.xml b/features/identity-core/org.wso2.carbon.identity.core.server.feature/pom.xml index 6ac96718aeba..287d92361580 100644 --- a/features/identity-core/org.wso2.carbon.identity.core.server.feature/pom.xml +++ b/features/identity-core/org.wso2.carbon.identity.core.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-core-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/identity-core/org.wso2.carbon.identity.core.ui.feature/pom.xml b/features/identity-core/org.wso2.carbon.identity.core.ui.feature/pom.xml index 026ae8109744..9cdf569503d1 100644 --- a/features/identity-core/org.wso2.carbon.identity.core.ui.feature/pom.xml +++ b/features/identity-core/org.wso2.carbon.identity.core.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-core-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/identity-core/pom.xml b/features/identity-core/pom.xml index 1e38a94b8a68..dbdeeca56a6b 100644 --- a/features/identity-core/pom.xml +++ b/features/identity-core/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/features/identity-event/org.wso2.carbon.identity.event.feature/pom.xml b/features/identity-event/org.wso2.carbon.identity.event.feature/pom.xml index 5d12c21d1517..24c369dfdd66 100644 --- a/features/identity-event/org.wso2.carbon.identity.event.feature/pom.xml +++ b/features/identity-event/org.wso2.carbon.identity.event.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-event-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/identity-event/org.wso2.carbon.identity.event.server.feature/pom.xml b/features/identity-event/org.wso2.carbon.identity.event.server.feature/pom.xml index a727baa2acad..7f1126da6aba 100644 --- a/features/identity-event/org.wso2.carbon.identity.event.server.feature/pom.xml +++ b/features/identity-event/org.wso2.carbon.identity.event.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-event-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/identity-event/pom.xml b/features/identity-event/pom.xml index 56746deb5ead..e19233592318 100644 --- a/features/identity-event/pom.xml +++ b/features/identity-event/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/features/identity-mgt/org.wso2.carbon.identity.mgt.feature/pom.xml b/features/identity-mgt/org.wso2.carbon.identity.mgt.feature/pom.xml index 1fa5a9d66f76..7132db263308 100644 --- a/features/identity-mgt/org.wso2.carbon.identity.mgt.feature/pom.xml +++ b/features/identity-mgt/org.wso2.carbon.identity.mgt.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/identity-mgt/org.wso2.carbon.identity.mgt.server.feature/pom.xml b/features/identity-mgt/org.wso2.carbon.identity.mgt.server.feature/pom.xml index 5132c904da9c..6098928d5016 100644 --- a/features/identity-mgt/org.wso2.carbon.identity.mgt.server.feature/pom.xml +++ b/features/identity-mgt/org.wso2.carbon.identity.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/identity-mgt/org.wso2.carbon.identity.mgt.ui.feature/pom.xml b/features/identity-mgt/org.wso2.carbon.identity.mgt.ui.feature/pom.xml index 55e8635400be..f81c39425244 100644 --- a/features/identity-mgt/org.wso2.carbon.identity.mgt.ui.feature/pom.xml +++ b/features/identity-mgt/org.wso2.carbon.identity.mgt.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/identity-mgt/pom.xml b/features/identity-mgt/pom.xml index 100bad836f53..5662cbd4628f 100644 --- a/features/identity-mgt/pom.xml +++ b/features/identity-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/features/idp-mgt/org.wso2.carbon.idp.mgt.feature/pom.xml b/features/idp-mgt/org.wso2.carbon.idp.mgt.feature/pom.xml index f5e4142c5103..9bb4429b686b 100644 --- a/features/idp-mgt/org.wso2.carbon.idp.mgt.feature/pom.xml +++ b/features/idp-mgt/org.wso2.carbon.idp.mgt.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-provider-management-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/idp-mgt/org.wso2.carbon.idp.mgt.server.feature/pom.xml b/features/idp-mgt/org.wso2.carbon.idp.mgt.server.feature/pom.xml index 462aa341ee29..d8259aad026d 100644 --- a/features/idp-mgt/org.wso2.carbon.idp.mgt.server.feature/pom.xml +++ b/features/idp-mgt/org.wso2.carbon.idp.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-provider-management-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/idp-mgt/org.wso2.carbon.idp.mgt.ui.feature/pom.xml b/features/idp-mgt/org.wso2.carbon.idp.mgt.ui.feature/pom.xml index 13d9c15b9441..e9466e1a3aee 100644 --- a/features/idp-mgt/org.wso2.carbon.idp.mgt.ui.feature/pom.xml +++ b/features/idp-mgt/org.wso2.carbon.idp.mgt.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-provider-management-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/idp-mgt/pom.xml b/features/idp-mgt/pom.xml index 9179a2c69c09..33fca9f16653 100644 --- a/features/idp-mgt/pom.xml +++ b/features/idp-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/features/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt.server.feature/pom.xml b/features/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt.server.feature/pom.xml index 81d96ebf8bb4..1c713b5ff1c2 100644 --- a/features/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt.server.feature/pom.xml +++ b/features/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework input-validation-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/input-validation-mgt/pom.xml b/features/input-validation-mgt/pom.xml index 600ae6eed68a..7c2548447dff 100644 --- a/features/input-validation-mgt/pom.xml +++ b/features/input-validation-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml 4.0.0 diff --git a/features/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt.server.feature/pom.xml b/features/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt.server.feature/pom.xml index ccf34da81e74..30a5eb7ca53a 100644 --- a/features/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt.server.feature/pom.xml +++ b/features/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt.server.feature/pom.xml @@ -20,7 +20,7 @@ multi-attribute-login-feature org.wso2.carbon.identity.framework - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml 4.0.0 diff --git a/features/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt.server.feature/pom.xml b/features/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt.server.feature/pom.xml index 937645d3ade5..fbf164d0aa15 100644 --- a/features/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt.server.feature/pom.xml +++ b/features/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt.server.feature/pom.xml @@ -20,7 +20,7 @@ multi-attribute-login-feature org.wso2.carbon.identity.framework - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml 4.0.0 diff --git a/features/multi-attribute-login/pom.xml b/features/multi-attribute-login/pom.xml index 66fc7e781968..648619a82810 100644 --- a/features/multi-attribute-login/pom.xml +++ b/features/multi-attribute-login/pom.xml @@ -20,7 +20,7 @@ identity-framework org.wso2.carbon.identity.framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.feature/pom.xml b/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.feature/pom.xml index 7721f57a7d0b..4a62cbcea20a 100644 --- a/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.feature/pom.xml +++ b/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-notification-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.server.feature/pom.xml b/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.server.feature/pom.xml index 8ecebf342098..68421ac2ccf2 100644 --- a/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.server.feature/pom.xml +++ b/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-notification-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/notification-mgt/pom.xml b/features/notification-mgt/pom.xml index 6e845f7b2af9..34f869c8c1cb 100644 --- a/features/notification-mgt/pom.xml +++ b/features/notification-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/features/provisioning/org.wso2.carbon.identity.provisioning.server.feature/pom.xml b/features/provisioning/org.wso2.carbon.identity.provisioning.server.feature/pom.xml index c26c12d7817d..d679d46b4233 100644 --- a/features/provisioning/org.wso2.carbon.identity.provisioning.server.feature/pom.xml +++ b/features/provisioning/org.wso2.carbon.identity.provisioning.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework provisioning-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/provisioning/pom.xml b/features/provisioning/pom.xml index 4fc39db516bb..c6e8a149bda9 100644 --- a/features/provisioning/pom.xml +++ b/features/provisioning/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/features/role-mgt/org.wso2.carbon.identity.role.mgt.core.server.feature/pom.xml b/features/role-mgt/org.wso2.carbon.identity.role.mgt.core.server.feature/pom.xml index 0b2fed9497ee..860d95d095bc 100644 --- a/features/role-mgt/org.wso2.carbon.identity.role.mgt.core.server.feature/pom.xml +++ b/features/role-mgt/org.wso2.carbon.identity.role.mgt.core.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework role-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml 4.0.0 diff --git a/features/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core.server.feature/pom.xml b/features/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core.server.feature/pom.xml index 57afeed76606..6e6d1246d4ef 100644 --- a/features/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core.server.feature/pom.xml +++ b/features/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core.server.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework role-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml 4.0.0 diff --git a/features/role-mgt/pom.xml b/features/role-mgt/pom.xml index e3a12a437ad1..80866524f9f4 100644 --- a/features/role-mgt/pom.xml +++ b/features/role-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml 4.0.0 diff --git a/features/rule-mgt/org.wso2.carbon.identity.rule.management.server.feature/pom.xml b/features/rule-mgt/org.wso2.carbon.identity.rule.management.server.feature/pom.xml index bd0a10051236..f84e15ecff97 100644 --- a/features/rule-mgt/org.wso2.carbon.identity.rule.management.server.feature/pom.xml +++ b/features/rule-mgt/org.wso2.carbon.identity.rule.management.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework rule-management-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/rule-mgt/pom.xml b/features/rule-mgt/pom.xml index 33e023f1dda5..59babe24689d 100644 --- a/features/rule-mgt/pom.xml +++ b/features/rule-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/features/secret-mgt/org.wso2.carbon.identity.secret.mgt.core.server.feature/pom.xml b/features/secret-mgt/org.wso2.carbon.identity.secret.mgt.core.server.feature/pom.xml index 3d495c40d2f5..68d151733d6e 100644 --- a/features/secret-mgt/org.wso2.carbon.identity.secret.mgt.core.server.feature/pom.xml +++ b/features/secret-mgt/org.wso2.carbon.identity.secret.mgt.core.server.feature/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework secret-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 4.0.0 diff --git a/features/secret-mgt/pom.xml b/features/secret-mgt/pom.xml index 593389afa1b3..4275b5ab9991 100644 --- a/features/secret-mgt/pom.xml +++ b/features/secret-mgt/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/features/security-mgt/org.wso2.carbon.security.mgt.feature/pom.xml b/features/security-mgt/org.wso2.carbon.security.mgt.feature/pom.xml index 88d6847319f6..afe28f86c66e 100644 --- a/features/security-mgt/org.wso2.carbon.security.mgt.feature/pom.xml +++ b/features/security-mgt/org.wso2.carbon.security.mgt.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework security-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/security-mgt/org.wso2.carbon.security.mgt.server.feature/pom.xml b/features/security-mgt/org.wso2.carbon.security.mgt.server.feature/pom.xml index 3edaa4bf9b8d..4d1e33265a5f 100644 --- a/features/security-mgt/org.wso2.carbon.security.mgt.server.feature/pom.xml +++ b/features/security-mgt/org.wso2.carbon.security.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework security-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/security-mgt/org.wso2.carbon.security.mgt.ui.feature/pom.xml b/features/security-mgt/org.wso2.carbon.security.mgt.ui.feature/pom.xml index c333aa7231e6..40c7e01bac85 100644 --- a/features/security-mgt/org.wso2.carbon.security.mgt.ui.feature/pom.xml +++ b/features/security-mgt/org.wso2.carbon.security.mgt.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework security-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/security-mgt/pom.xml b/features/security-mgt/pom.xml index 3dedf385ce4b..fed8567003f6 100644 --- a/features/security-mgt/pom.xml +++ b/features/security-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/features/template-mgt/org.wso2.carbon.identity.template.mgt.feature/pom.xml b/features/template-mgt/org.wso2.carbon.identity.template.mgt.feature/pom.xml index 4e1e8a07d0c5..49b5484bcb76 100644 --- a/features/template-mgt/org.wso2.carbon.identity.template.mgt.feature/pom.xml +++ b/features/template-mgt/org.wso2.carbon.identity.template.mgt.feature/pom.xml @@ -21,7 +21,7 @@ template-management-feature org.wso2.carbon.identity.framework - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/template-mgt/org.wso2.carbon.identity.template.mgt.server.feature/pom.xml b/features/template-mgt/org.wso2.carbon.identity.template.mgt.server.feature/pom.xml index fbe154040d5a..ac9cdae8395f 100644 --- a/features/template-mgt/org.wso2.carbon.identity.template.mgt.server.feature/pom.xml +++ b/features/template-mgt/org.wso2.carbon.identity.template.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ template-management-feature org.wso2.carbon.identity.framework - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/template-mgt/org.wso2.carbon.identity.template.mgt.ui.feature/pom.xml b/features/template-mgt/org.wso2.carbon.identity.template.mgt.ui.feature/pom.xml index bcc92ebb5974..39a6af5b9244 100644 --- a/features/template-mgt/org.wso2.carbon.identity.template.mgt.ui.feature/pom.xml +++ b/features/template-mgt/org.wso2.carbon.identity.template.mgt.ui.feature/pom.xml @@ -21,7 +21,7 @@ template-management-feature org.wso2.carbon.identity.framework - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/template-mgt/pom.xml b/features/template-mgt/pom.xml index 2a25352ca73f..9dd0358e161f 100644 --- a/features/template-mgt/pom.xml +++ b/features/template-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/features/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt.server.feature/pom.xml b/features/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt.server.feature/pom.xml index 05a53018c9f5..0d67c7f1fe3d 100644 --- a/features/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt.server.feature/pom.xml +++ b/features/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework trusted-app-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/trusted-app-mgt/pom.xml b/features/trusted-app-mgt/pom.xml index bfacc6c00c50..018ab3f44034 100644 --- a/features/trusted-app-mgt/pom.xml +++ b/features/trusted-app-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml 4.0.0 diff --git a/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.feature/pom.xml b/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.feature/pom.xml index cd7c6faf4759..0f46710c0787 100644 --- a/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.feature/pom.xml +++ b/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.feature/pom.xml @@ -21,7 +21,7 @@ user-functionality-mgt-feature org.wso2.carbon.identity.framework - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml 4.0.0 diff --git a/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.server.feature/pom.xml b/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.server.feature/pom.xml index 381093b11f1b..786e02a1ef01 100644 --- a/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.server.feature/pom.xml +++ b/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ user-functionality-mgt-feature org.wso2.carbon.identity.framework - 7.7.86-SNAPSHOT + 7.7.86 4.0.0 diff --git a/features/user-functionality-mgt/pom.xml b/features/user-functionality-mgt/pom.xml index 15b4547c0481..b1db85e5a247 100644 --- a/features/user-functionality-mgt/pom.xml +++ b/features/user-functionality-mgt/pom.xml @@ -21,7 +21,7 @@ identity-framework org.wso2.carbon.identity.framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml 4.0.0 diff --git a/features/user-mgt/org.wso2.carbon.identity.user.profile.feature/pom.xml b/features/user-mgt/org.wso2.carbon.identity.user.profile.feature/pom.xml index aa4316db01e0..53901c65b568 100644 --- a/features/user-mgt/org.wso2.carbon.identity.user.profile.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.identity.user.profile.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.identity.user.profile.server.feature/pom.xml b/features/user-mgt/org.wso2.carbon.identity.user.profile.server.feature/pom.xml index a2370a920c8b..f6beeb41bd29 100644 --- a/features/user-mgt/org.wso2.carbon.identity.user.profile.server.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.identity.user.profile.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.identity.user.profile.ui.feature/pom.xml b/features/user-mgt/org.wso2.carbon.identity.user.profile.ui.feature/pom.xml index 649fc17dcbc1..f281d3394964 100644 --- a/features/user-mgt/org.wso2.carbon.identity.user.profile.ui.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.identity.user.profile.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.identity.user.registration.feature/pom.xml b/features/user-mgt/org.wso2.carbon.identity.user.registration.feature/pom.xml index 52400b094e54..ba6592ee9879 100644 --- a/features/user-mgt/org.wso2.carbon.identity.user.registration.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.identity.user.registration.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.identity.user.registration.server.feature/pom.xml b/features/user-mgt/org.wso2.carbon.identity.user.registration.server.feature/pom.xml index 2a4a1142684b..6357f9208178 100644 --- a/features/user-mgt/org.wso2.carbon.identity.user.registration.server.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.identity.user.registration.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.identity.user.registration.ui.feature/pom.xml b/features/user-mgt/org.wso2.carbon.identity.user.registration.ui.feature/pom.xml index 8c6f0b9f39df..720d89750e50 100644 --- a/features/user-mgt/org.wso2.carbon.identity.user.registration.ui.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.identity.user.registration.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.role.mgt.ui.feature/pom.xml b/features/user-mgt/org.wso2.carbon.role.mgt.ui.feature/pom.xml index 31274592a904..46704f729504 100644 --- a/features/user-mgt/org.wso2.carbon.role.mgt.ui.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.role.mgt.ui.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.user.mgt.feature/pom.xml b/features/user-mgt/org.wso2.carbon.user.mgt.feature/pom.xml index 03e5eabbce35..5837b7e29748 100644 --- a/features/user-mgt/org.wso2.carbon.user.mgt.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.user.mgt.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.user.mgt.server.feature/pom.xml b/features/user-mgt/org.wso2.carbon.user.mgt.server.feature/pom.xml index d12cb0027539..9713cf74fa05 100644 --- a/features/user-mgt/org.wso2.carbon.user.mgt.server.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.user.mgt.server.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.user.mgt.ui.feature/pom.xml b/features/user-mgt/org.wso2.carbon.user.mgt.ui.feature/pom.xml index e91a18277dcc..d781a0a2f0d8 100644 --- a/features/user-mgt/org.wso2.carbon.user.mgt.ui.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.user.mgt.ui.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/user-mgt/pom.xml b/features/user-mgt/pom.xml index 8930a74baa72..226c6cda6034 100644 --- a/features/user-mgt/pom.xml +++ b/features/user-mgt/pom.xml @@ -17,7 +17,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/features/user-store/org.wso2.carbon.identity.user.store.configuration.server.feature/pom.xml b/features/user-store/org.wso2.carbon.identity.user.store.configuration.server.feature/pom.xml index 3fb08d24a670..95346fc5cfb6 100644 --- a/features/user-store/org.wso2.carbon.identity.user.store.configuration.server.feature/pom.xml +++ b/features/user-store/org.wso2.carbon.identity.user.store.configuration.server.feature/pom.xml @@ -23,7 +23,7 @@ org.wso2.carbon.identity.framework user-store-feature - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/features/user-store/pom.xml b/features/user-store/pom.xml index f0c914c6a33e..5c438f0994d5 100644 --- a/features/user-store/pom.xml +++ b/features/user-store/pom.xml @@ -23,7 +23,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/pom.xml b/pom.xml index ac639d35da1d..8b9afd8c4214 100644 --- a/pom.xml +++ b/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework pom - 7.7.86-SNAPSHOT + 7.7.86 WSO2 Carbon - Platform Aggregator Pom http://wso2.org @@ -36,7 +36,7 @@ https://github.com/wso2/carbon-identity-framework.git scm:git:https://github.com/wso2/carbon-identity-framework.git scm:git:https://github.com/wso2/carbon-identity-framework.git - HEAD + v7.7.86 diff --git a/service-stubs/identity/org.wso2.carbon.claim.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.claim.mgt.stub/pom.xml index c711dec5ddec..6db68368f842 100644 --- a/service-stubs/identity/org.wso2.carbon.claim.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.claim.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.directory.server.manager.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.directory.server.manager.stub/pom.xml index 2b7d2aa9b200..ae6c91762f58 100644 --- a/service-stubs/identity/org.wso2.carbon.directory.server.manager.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.directory.server.manager.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.application.authentication.framework.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.application.authentication.framework.stub/pom.xml index fde2de71d0cd..a4e1e13bf6f0 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.application.authentication.framework.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.application.authentication.framework.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml 4.0.0 diff --git a/service-stubs/identity/org.wso2.carbon.identity.application.default.authentication.sequence.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.application.default.authentication.sequence.mgt.stub/pom.xml index eb9f865d544e..b4c671565dc5 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.application.default.authentication.sequence.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.application.default.authentication.sequence.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.application.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.application.mgt.stub/pom.xml index 40008ab844d0..36754110158d 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.application.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.application.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.claim.metadata.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.claim.metadata.mgt.stub/pom.xml index e04c8eb63cbd..7be01f962889 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.claim.metadata.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.claim.metadata.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.functions.library.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.functions.library.mgt.stub/pom.xml index 65093ffa22ae..da9080482b5b 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.functions.library.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.functions.library.mgt.stub/pom.xml @@ -21,7 +21,7 @@ carbon-service-stubs org.wso2.carbon.identity.framework - 7.7.86-SNAPSHOT + 7.7.86 4.0.0 diff --git a/service-stubs/identity/org.wso2.carbon.identity.governance.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.governance.stub/pom.xml index d592c7d42d3e..58f3385682f7 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.governance.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.governance.stub/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.mgt.stub/pom.xml index 5f16841a8bc1..b0412e1ae86f 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.user.profile.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.user.profile.stub/pom.xml index 58e3f21eaa11..9f88a23d0495 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.user.profile.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.user.profile.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.user.registration.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.user.registration.stub/pom.xml index 59986d7bf1d1..86ea18697dd4 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.user.registration.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.user.registration.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.user.store.configuration.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.user.store.configuration.stub/pom.xml index e184a22c1bfe..beafa895162e 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.user.store.configuration.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.user.store.configuration.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.user.store.count.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.user.store.count.stub/pom.xml index 6f563aaf623c..74b22281768d 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.user.store.count.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.user.store.count.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.idp.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.idp.mgt.stub/pom.xml index 656841d5c19c..c22577012a1c 100644 --- a/service-stubs/identity/org.wso2.carbon.idp.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.idp.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.security.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.security.mgt.stub/pom.xml index c66aa6edea17..a1dc3580fc79 100644 --- a/service-stubs/identity/org.wso2.carbon.security.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.security.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.user.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.user.mgt.stub/pom.xml index 9550def5076c..740864e35d75 100644 --- a/service-stubs/identity/org.wso2.carbon.user.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.user.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.86-SNAPSHOT + 7.7.86 ../pom.xml diff --git a/service-stubs/identity/pom.xml b/service-stubs/identity/pom.xml index ce24d5f9e231..5837ab1d1953 100644 --- a/service-stubs/identity/pom.xml +++ b/service-stubs/identity/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml diff --git a/test-utils/org.wso2.carbon.identity.testutil/pom.xml b/test-utils/org.wso2.carbon.identity.testutil/pom.xml index cb11932194f4..f1a919ab9ffb 100644 --- a/test-utils/org.wso2.carbon.identity.testutil/pom.xml +++ b/test-utils/org.wso2.carbon.identity.testutil/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86-SNAPSHOT + 7.7.86 ../../pom.xml From 30612945fc40044aaa77735a7f667f8d4436b1d7 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 10 Jan 2025 05:06:48 +0000 Subject: [PATCH 10/10] [WSO2 Release] [Jenkins #8237] [Release 7.7.86] prepare for next development iteration --- .../org.wso2.carbon.identity.action.execution/pom.xml | 2 +- .../org.wso2.carbon.identity.action.management/pom.xml | 2 +- components/action-mgt/pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.api.resource.mgt/pom.xml | 2 +- components/api-resource-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.application.common/pom.xml | 2 +- .../org.wso2.carbon.identity.application.mgt.ui/pom.xml | 2 +- .../org.wso2.carbon.identity.application.mgt/pom.xml | 2 +- components/application-mgt/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- components/authentication-framework/pom.xml | 2 +- components/captcha-mgt/org.wso2.carbon.captcha.mgt/pom.xml | 2 +- components/captcha-mgt/pom.xml | 2 +- components/carbon-authenticators/pom.xml | 2 +- .../org.wso2.carbon.identity.authenticator.thrift/pom.xml | 2 +- components/carbon-authenticators/thrift-authenticator/pom.xml | 2 +- .../org.wso2.carbon.identity.central.log.mgt/pom.xml | 2 +- components/central-logger/pom.xml | 2 +- .../org.wso2.carbon.identity.certificate.management/pom.xml | 2 +- components/certificate-mgt/pom.xml | 2 +- components/claim-mgt/org.wso2.carbon.claim.mgt.ui/pom.xml | 2 +- components/claim-mgt/org.wso2.carbon.claim.mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.claim.metadata.mgt.ui/pom.xml | 2 +- .../org.wso2.carbon.identity.claim.metadata.mgt/pom.xml | 2 +- components/claim-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.client.attestation.mgt/pom.xml | 2 +- components/client-attestation-mgt/pom.xml | 2 +- .../pom.xml | 4 ++-- .../org.wso2.carbon.identity.configuration.mgt.core/pom.xml | 2 +- .../pom.xml | 2 +- components/configuration-mgt/pom.xml | 2 +- .../consent-mgt/org.wso2.carbon.identity.consent.mgt/pom.xml | 2 +- components/consent-mgt/pom.xml | 2 +- .../pom.xml | 2 +- components/consent-server-configs-mgt/pom.xml | 2 +- .../cors-mgt/org.wso2.carbon.identity.cors.mgt.core/pom.xml | 2 +- components/cors-mgt/pom.xml | 2 +- .../org.wso2.carbon.directory.server.manager.common/pom.xml | 2 +- .../org.wso2.carbon.directory.server.manager.ui/pom.xml | 2 +- .../org.wso2.carbon.directory.server.manager/pom.xml | 2 +- components/directory-server-manager/pom.xml | 2 +- .../org.wso2.carbon.identity.extension.mgt/pom.xml | 2 +- components/extension-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.functions.library.mgt.ui/pom.xml | 2 +- .../org.wso2.carbon.identity.functions.library.mgt/pom.xml | 2 +- components/functions-library-mgt/pom.xml | 2 +- .../identity-core/org.wso2.carbon.identity.base/pom.xml | 2 +- .../identity-core/org.wso2.carbon.identity.core.ui/pom.xml | 2 +- .../identity-core/org.wso2.carbon.identity.core/pom.xml | 2 +- components/identity-core/pom.xml | 2 +- .../identity-event/org.wso2.carbon.identity.event/pom.xml | 2 +- components/identity-event/pom.xml | 2 +- .../org.wso2.carbon.identity.mgt.endpoint.util/pom.xml | 2 +- .../identity-mgt/org.wso2.carbon.identity.mgt.ui/pom.xml | 2 +- components/identity-mgt/org.wso2.carbon.identity.mgt/pom.xml | 2 +- components/identity-mgt/pom.xml | 2 +- components/idp-mgt/org.wso2.carbon.idp.mgt.ui/pom.xml | 2 +- components/idp-mgt/org.wso2.carbon.idp.mgt/pom.xml | 2 +- components/idp-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.input.validation.mgt/pom.xml | 2 +- components/input-validation-mgt/pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.unique.claim.mgt/pom.xml | 2 +- components/multi-attribute-login/pom.xml | 2 +- .../org.wso2.carbon.identity.notification.mgt/pom.xml | 2 +- components/notification-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.provisioning/pom.xml | 2 +- components/provisioning/pom.xml | 2 +- .../role-mgt/org.wso2.carbon.identity.role.mgt.core/pom.xml | 2 +- .../org.wso2.carbon.identity.role.v2.mgt.core/pom.xml | 2 +- components/role-mgt/pom.xml | 2 +- .../rule-mgt/org.wso2.carbon.identity.rule.management/pom.xml | 2 +- .../rule-mgt/org.wso2.carbon.identity.rule.metadata/pom.xml | 2 +- components/rule-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.secret.mgt.core/pom.xml | 2 +- components/secret-mgt/pom.xml | 2 +- .../security-mgt/org.wso2.carbon.security.mgt.ui/pom.xml | 2 +- components/security-mgt/org.wso2.carbon.security.mgt/pom.xml | 2 +- components/security-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.template.mgt.ui/pom.xml | 2 +- .../org.wso2.carbon.identity.template.mgt/pom.xml | 2 +- components/template-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.trusted.app.mgt/pom.xml | 2 +- components/trusted-app-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.user.functionality.mgt/pom.xml | 2 +- components/user-functionality-mgt/pom.xml | 2 +- .../user-mgt/org.wso2.carbon.identity.user.profile.ui/pom.xml | 2 +- .../user-mgt/org.wso2.carbon.identity.user.profile/pom.xml | 2 +- .../org.wso2.carbon.identity.user.registration/pom.xml | 2 +- components/user-mgt/org.wso2.carbon.role.mgt.ui/pom.xml | 2 +- components/user-mgt/org.wso2.carbon.user.mgt.common/pom.xml | 2 +- components/user-mgt/org.wso2.carbon.user.mgt.ui/pom.xml | 2 +- components/user-mgt/org.wso2.carbon.user.mgt/pom.xml | 2 +- components/user-mgt/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.user.store.configuration/pom.xml | 2 +- .../org.wso2.carbon.identity.user.store.count/pom.xml | 2 +- components/user-store/pom.xml | 2 +- .../pom.xml | 2 +- features/action-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/api-resource-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.application.mgt.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- features/application-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/authentication-framework/pom.xml | 2 +- features/carbon-authenticators/pom.xml | 2 +- .../pom.xml | 2 +- features/carbon-authenticators/thrift-authenticator/pom.xml | 2 +- features/categories/authorization/pom.xml | 2 +- features/categories/inbound-authentication/pom.xml | 2 +- features/categories/inbound-provisioning/pom.xml | 2 +- features/categories/keystore-mgt/pom.xml | 2 +- features/categories/notification-mgt/pom.xml | 2 +- features/categories/outbound-authentication/pom.xml | 2 +- features/categories/outbound-provisioning/pom.xml | 2 +- features/categories/pom.xml | 2 +- features/categories/user-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/central-logger/pom.xml | 2 +- .../pom.xml | 2 +- features/certificate-mgt/pom.xml | 2 +- features/claim-mgt/org.wso2.carbon.claim.mgt.feature/pom.xml | 2 +- .../org.wso2.carbon.claim.mgt.server.feature/pom.xml | 2 +- .../claim-mgt/org.wso2.carbon.claim.mgt.ui.feature/pom.xml | 2 +- features/claim-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/client-attestation-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/configuration-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/consent-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/consent-server-configs-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.cors.mgt.server.feature/pom.xml | 2 +- features/cors-mgt/pom.xml | 2 +- .../org.wso2.carbon.directory.service.mgr.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.directory.service.mgr.ui.feature/pom.xml | 2 +- features/directory-server-manager/pom.xml | 2 +- .../org.wso2.carbon.identity.extension.mgt.feature/pom.xml | 2 +- features/extension-mgt/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- features/functions-library-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.core.feature/pom.xml | 2 +- .../org.wso2.carbon.identity.core.server.feature/pom.xml | 2 +- .../org.wso2.carbon.identity.core.ui.feature/pom.xml | 2 +- features/identity-core/pom.xml | 2 +- .../org.wso2.carbon.identity.event.feature/pom.xml | 2 +- .../org.wso2.carbon.identity.event.server.feature/pom.xml | 2 +- features/identity-event/pom.xml | 2 +- .../identity-mgt/org.wso2.carbon.identity.mgt.feature/pom.xml | 2 +- .../org.wso2.carbon.identity.mgt.server.feature/pom.xml | 2 +- .../org.wso2.carbon.identity.mgt.ui.feature/pom.xml | 2 +- features/identity-mgt/pom.xml | 2 +- features/idp-mgt/org.wso2.carbon.idp.mgt.feature/pom.xml | 2 +- .../idp-mgt/org.wso2.carbon.idp.mgt.server.feature/pom.xml | 2 +- features/idp-mgt/org.wso2.carbon.idp.mgt.ui.feature/pom.xml | 2 +- features/idp-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/input-validation-mgt/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- features/multi-attribute-login/pom.xml | 2 +- .../org.wso2.carbon.identity.notification.mgt.feature/pom.xml | 2 +- .../pom.xml | 2 +- features/notification-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/provisioning/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- features/role-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/rule-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/secret-mgt/pom.xml | 2 +- .../security-mgt/org.wso2.carbon.security.mgt.feature/pom.xml | 2 +- .../org.wso2.carbon.security.mgt.server.feature/pom.xml | 2 +- .../org.wso2.carbon.security.mgt.ui.feature/pom.xml | 2 +- features/security-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.template.mgt.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.template.mgt.ui.feature/pom.xml | 2 +- features/template-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/trusted-app-mgt/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- features/user-functionality-mgt/pom.xml | 2 +- .../org.wso2.carbon.identity.user.profile.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.user.profile.ui.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- features/user-mgt/org.wso2.carbon.role.mgt.ui.feature/pom.xml | 2 +- features/user-mgt/org.wso2.carbon.user.mgt.feature/pom.xml | 2 +- .../user-mgt/org.wso2.carbon.user.mgt.server.feature/pom.xml | 2 +- features/user-mgt/org.wso2.carbon.user.mgt.ui.feature/pom.xml | 2 +- features/user-mgt/pom.xml | 2 +- .../pom.xml | 2 +- features/user-store/pom.xml | 2 +- pom.xml | 4 ++-- service-stubs/identity/org.wso2.carbon.claim.mgt.stub/pom.xml | 2 +- .../org.wso2.carbon.directory.server.manager.stub/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.application.mgt.stub/pom.xml | 2 +- .../org.wso2.carbon.identity.claim.metadata.mgt.stub/pom.xml | 2 +- .../pom.xml | 2 +- .../identity/org.wso2.carbon.identity.governance.stub/pom.xml | 2 +- .../identity/org.wso2.carbon.identity.mgt.stub/pom.xml | 2 +- .../org.wso2.carbon.identity.user.profile.stub/pom.xml | 2 +- .../org.wso2.carbon.identity.user.registration.stub/pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.user.store.count.stub/pom.xml | 2 +- service-stubs/identity/org.wso2.carbon.idp.mgt.stub/pom.xml | 2 +- .../identity/org.wso2.carbon.security.mgt.stub/pom.xml | 2 +- service-stubs/identity/org.wso2.carbon.user.mgt.stub/pom.xml | 2 +- service-stubs/identity/pom.xml | 2 +- test-utils/org.wso2.carbon.identity.testutil/pom.xml | 2 +- 228 files changed, 230 insertions(+), 230 deletions(-) diff --git a/components/action-mgt/org.wso2.carbon.identity.action.execution/pom.xml b/components/action-mgt/org.wso2.carbon.identity.action.execution/pom.xml index 0b121f08a2eb..ecffc3d4182e 100644 --- a/components/action-mgt/org.wso2.carbon.identity.action.execution/pom.xml +++ b/components/action-mgt/org.wso2.carbon.identity.action.execution/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework action-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/action-mgt/org.wso2.carbon.identity.action.management/pom.xml b/components/action-mgt/org.wso2.carbon.identity.action.management/pom.xml index b06c4f3ec2f8..7410b2120e48 100644 --- a/components/action-mgt/org.wso2.carbon.identity.action.management/pom.xml +++ b/components/action-mgt/org.wso2.carbon.identity.action.management/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework action-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/action-mgt/pom.xml b/components/action-mgt/pom.xml index 4846bef81397..3c4841c07ba5 100644 --- a/components/action-mgt/pom.xml +++ b/components/action-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.collection.mgt/pom.xml b/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.collection.mgt/pom.xml index 4e7b7ebca458..7ec6f3a759d9 100644 --- a/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.collection.mgt/pom.xml +++ b/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.collection.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework api-resource-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt/pom.xml b/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt/pom.xml index df7751830722..b30fa663f9f8 100644 --- a/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt/pom.xml +++ b/components/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework api-resource-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml org.wso2.carbon.identity.api.resource.mgt diff --git a/components/api-resource-mgt/pom.xml b/components/api-resource-mgt/pom.xml index bf292929eff2..8e807daffb9e 100644 --- a/components/api-resource-mgt/pom.xml +++ b/components/api-resource-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/application-mgt/org.wso2.carbon.identity.application.common/pom.xml b/components/application-mgt/org.wso2.carbon.identity.application.common/pom.xml index 6c7e524b6eea..80ba2a70f70b 100644 --- a/components/application-mgt/org.wso2.carbon.identity.application.common/pom.xml +++ b/components/application-mgt/org.wso2.carbon.identity.application.common/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.framework application-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/application-mgt/org.wso2.carbon.identity.application.mgt.ui/pom.xml b/components/application-mgt/org.wso2.carbon.identity.application.mgt.ui/pom.xml index afb3f119a149..b7a83fe01026 100644 --- a/components/application-mgt/org.wso2.carbon.identity.application.mgt.ui/pom.xml +++ b/components/application-mgt/org.wso2.carbon.identity.application.mgt.ui/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework application-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/application-mgt/org.wso2.carbon.identity.application.mgt/pom.xml b/components/application-mgt/org.wso2.carbon.identity.application.mgt/pom.xml index 8386f7cdd72c..194fff38ac76 100644 --- a/components/application-mgt/org.wso2.carbon.identity.application.mgt/pom.xml +++ b/components/application-mgt/org.wso2.carbon.identity.application.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework application-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml org.wso2.carbon.identity.application.mgt diff --git a/components/application-mgt/pom.xml b/components/application-mgt/pom.xml index efd56f7f1625..92bfbce8ab21 100644 --- a/components/application-mgt/pom.xml +++ b/components/application-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/authentication-framework/org.wso2.carbon.identity.application.authentication.endpoint.util/pom.xml b/components/authentication-framework/org.wso2.carbon.identity.application.authentication.endpoint.util/pom.xml index 56d0fcdfba54..017b49b31897 100644 --- a/components/authentication-framework/org.wso2.carbon.identity.application.authentication.endpoint.util/pom.xml +++ b/components/authentication-framework/org.wso2.carbon.identity.application.authentication.endpoint.util/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework authentication-framework - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/authentication-framework/org.wso2.carbon.identity.application.authentication.framework/pom.xml b/components/authentication-framework/org.wso2.carbon.identity.application.authentication.framework/pom.xml index 004f4f92a06b..aa15482a9f14 100644 --- a/components/authentication-framework/org.wso2.carbon.identity.application.authentication.framework/pom.xml +++ b/components/authentication-framework/org.wso2.carbon.identity.application.authentication.framework/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework authentication-framework - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/authentication-framework/pom.xml b/components/authentication-framework/pom.xml index 7765713ca80d..fa8afdc5a2a0 100644 --- a/components/authentication-framework/pom.xml +++ b/components/authentication-framework/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/captcha-mgt/org.wso2.carbon.captcha.mgt/pom.xml b/components/captcha-mgt/org.wso2.carbon.captcha.mgt/pom.xml index 899a9391410f..df153914018c 100644 --- a/components/captcha-mgt/org.wso2.carbon.captcha.mgt/pom.xml +++ b/components/captcha-mgt/org.wso2.carbon.captcha.mgt/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework captcha-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/captcha-mgt/pom.xml b/components/captcha-mgt/pom.xml index 6526585b6bba..c822f95937e5 100644 --- a/components/captcha-mgt/pom.xml +++ b/components/captcha-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/carbon-authenticators/pom.xml b/components/carbon-authenticators/pom.xml index ab2a6bd39528..33484169407c 100644 --- a/components/carbon-authenticators/pom.xml +++ b/components/carbon-authenticators/pom.xml @@ -17,7 +17,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.authenticator.thrift/pom.xml b/components/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.authenticator.thrift/pom.xml index 004fe71fce81..4ec56ec5b6a0 100644 --- a/components/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.authenticator.thrift/pom.xml +++ b/components/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.authenticator.thrift/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework thrift-authenticator - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/carbon-authenticators/thrift-authenticator/pom.xml b/components/carbon-authenticators/thrift-authenticator/pom.xml index 6297f844b763..86ae1f4c918d 100644 --- a/components/carbon-authenticators/thrift-authenticator/pom.xml +++ b/components/carbon-authenticators/thrift-authenticator/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework carbon-authenticators - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/central-logger/org.wso2.carbon.identity.central.log.mgt/pom.xml b/components/central-logger/org.wso2.carbon.identity.central.log.mgt/pom.xml index db6d03000c46..41a5b004a9b4 100644 --- a/components/central-logger/org.wso2.carbon.identity.central.log.mgt/pom.xml +++ b/components/central-logger/org.wso2.carbon.identity.central.log.mgt/pom.xml @@ -21,7 +21,7 @@ central-logger org.wso2.carbon.identity.framework - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml 4.0.0 diff --git a/components/central-logger/pom.xml b/components/central-logger/pom.xml index ff10cac7f0e9..fc48eb2b70df 100644 --- a/components/central-logger/pom.xml +++ b/components/central-logger/pom.xml @@ -21,7 +21,7 @@ identity-framework org.wso2.carbon.identity.framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/certificate-mgt/org.wso2.carbon.identity.certificate.management/pom.xml b/components/certificate-mgt/org.wso2.carbon.identity.certificate.management/pom.xml index 2f32a647176f..86e505232323 100644 --- a/components/certificate-mgt/org.wso2.carbon.identity.certificate.management/pom.xml +++ b/components/certificate-mgt/org.wso2.carbon.identity.certificate.management/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework certificate-mgt - 7.7.86 + 7.7.87-SNAPSHOT 4.0.0 diff --git a/components/certificate-mgt/pom.xml b/components/certificate-mgt/pom.xml index 6ac3a1bf332e..df377e9ce4b4 100644 --- a/components/certificate-mgt/pom.xml +++ b/components/certificate-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/claim-mgt/org.wso2.carbon.claim.mgt.ui/pom.xml b/components/claim-mgt/org.wso2.carbon.claim.mgt.ui/pom.xml index 7d707cc53421..62e61881ac06 100644 --- a/components/claim-mgt/org.wso2.carbon.claim.mgt.ui/pom.xml +++ b/components/claim-mgt/org.wso2.carbon.claim.mgt.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework claim-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/claim-mgt/org.wso2.carbon.claim.mgt/pom.xml b/components/claim-mgt/org.wso2.carbon.claim.mgt/pom.xml index e73f1dd0d6a8..4d1b71a0fb99 100644 --- a/components/claim-mgt/org.wso2.carbon.claim.mgt/pom.xml +++ b/components/claim-mgt/org.wso2.carbon.claim.mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework claim-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt.ui/pom.xml b/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt.ui/pom.xml index 3a3e13709bf1..5a91eebf126a 100644 --- a/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt.ui/pom.xml +++ b/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt.ui/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework claim-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt/pom.xml b/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt/pom.xml index fc1c506bba43..5bced731aed5 100644 --- a/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt/pom.xml +++ b/components/claim-mgt/org.wso2.carbon.identity.claim.metadata.mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework claim-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/claim-mgt/pom.xml b/components/claim-mgt/pom.xml index 4784b386921f..7f9ccd1f86a6 100644 --- a/components/claim-mgt/pom.xml +++ b/components/claim-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt/pom.xml b/components/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt/pom.xml index 8c661891ab96..5d13711239b0 100644 --- a/components/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt/pom.xml +++ b/components/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt/pom.xml @@ -23,7 +23,7 @@ org.wso2.carbon.identity.framework client-attestation-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/client-attestation-mgt/pom.xml b/components/client-attestation-mgt/pom.xml index 95ae97374ddb..ab374256c7e1 100644 --- a/components/client-attestation-mgt/pom.xml +++ b/components/client-attestation-mgt/pom.xml @@ -23,7 +23,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/configuration-mgt/org.wso2.carbon.identity.api.server.configuration.mgt/pom.xml b/components/configuration-mgt/org.wso2.carbon.identity.api.server.configuration.mgt/pom.xml index 1f7e101d2cc3..191bf4e9bbd6 100644 --- a/components/configuration-mgt/org.wso2.carbon.identity.api.server.configuration.mgt/pom.xml +++ b/components/configuration-mgt/org.wso2.carbon.identity.api.server.configuration.mgt/pom.xml @@ -23,11 +23,11 @@ org.wso2.carbon.identity.framework configuration-mgt - 7.7.86 + 7.7.87-SNAPSHOT org.wso2.carbon.identity.api.server.configuration.mgt - 7.7.86 + 7.7.87-SNAPSHOT jar WSO2 Carbon - Configuration Management API Identity Configuration Management API diff --git a/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.core/pom.xml b/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.core/pom.xml index d9396ee42a51..1b549d98792b 100644 --- a/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.core/pom.xml +++ b/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.core/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework configuration-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.endpoint/pom.xml b/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.endpoint/pom.xml index 6d6d9024616b..952789e0eb36 100644 --- a/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.endpoint/pom.xml +++ b/components/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.endpoint/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework configuration-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/configuration-mgt/pom.xml b/components/configuration-mgt/pom.xml index da76d848b9f5..d0bfb9a60aa3 100644 --- a/components/configuration-mgt/pom.xml +++ b/components/configuration-mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/consent-mgt/org.wso2.carbon.identity.consent.mgt/pom.xml b/components/consent-mgt/org.wso2.carbon.identity.consent.mgt/pom.xml index 556e8bc39fc9..cb758d371dfe 100644 --- a/components/consent-mgt/org.wso2.carbon.identity.consent.mgt/pom.xml +++ b/components/consent-mgt/org.wso2.carbon.identity.consent.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework consent-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/consent-mgt/pom.xml b/components/consent-mgt/pom.xml index 68b381f9dd77..c69582499c5c 100644 --- a/components/consent-mgt/pom.xml +++ b/components/consent-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt/pom.xml b/components/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt/pom.xml index 6550dfebe009..f4ae84ef1732 100644 --- a/components/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt/pom.xml +++ b/components/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework consent-server-configs-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/consent-server-configs-mgt/pom.xml b/components/consent-server-configs-mgt/pom.xml index ba289192a8b5..38ec65f85b07 100644 --- a/components/consent-server-configs-mgt/pom.xml +++ b/components/consent-server-configs-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/cors-mgt/org.wso2.carbon.identity.cors.mgt.core/pom.xml b/components/cors-mgt/org.wso2.carbon.identity.cors.mgt.core/pom.xml index abdce5ea7bc6..046a020c7f3d 100644 --- a/components/cors-mgt/org.wso2.carbon.identity.cors.mgt.core/pom.xml +++ b/components/cors-mgt/org.wso2.carbon.identity.cors.mgt.core/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework cors-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/cors-mgt/pom.xml b/components/cors-mgt/pom.xml index f6063b347d43..0ade48c692ed 100644 --- a/components/cors-mgt/pom.xml +++ b/components/cors-mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/directory-server-manager/org.wso2.carbon.directory.server.manager.common/pom.xml b/components/directory-server-manager/org.wso2.carbon.directory.server.manager.common/pom.xml index ff80f2dd1c36..f3f984f043b9 100644 --- a/components/directory-server-manager/org.wso2.carbon.directory.server.manager.common/pom.xml +++ b/components/directory-server-manager/org.wso2.carbon.directory.server.manager.common/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework directory-server-manager - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/directory-server-manager/org.wso2.carbon.directory.server.manager.ui/pom.xml b/components/directory-server-manager/org.wso2.carbon.directory.server.manager.ui/pom.xml index de730b9ef3a9..689842f08b35 100644 --- a/components/directory-server-manager/org.wso2.carbon.directory.server.manager.ui/pom.xml +++ b/components/directory-server-manager/org.wso2.carbon.directory.server.manager.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework directory-server-manager - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/directory-server-manager/org.wso2.carbon.directory.server.manager/pom.xml b/components/directory-server-manager/org.wso2.carbon.directory.server.manager/pom.xml index c9dabdef6bd4..4db03bf98d21 100644 --- a/components/directory-server-manager/org.wso2.carbon.directory.server.manager/pom.xml +++ b/components/directory-server-manager/org.wso2.carbon.directory.server.manager/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework directory-server-manager - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/directory-server-manager/pom.xml b/components/directory-server-manager/pom.xml index daaf5fad594a..854aa6a309e1 100644 --- a/components/directory-server-manager/pom.xml +++ b/components/directory-server-manager/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/extension-mgt/org.wso2.carbon.identity.extension.mgt/pom.xml b/components/extension-mgt/org.wso2.carbon.identity.extension.mgt/pom.xml index 3ce90d6f98e0..3de5ca51c817 100644 --- a/components/extension-mgt/org.wso2.carbon.identity.extension.mgt/pom.xml +++ b/components/extension-mgt/org.wso2.carbon.identity.extension.mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework extension-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/extension-mgt/pom.xml b/components/extension-mgt/pom.xml index a93865c51f60..6327d47bc0a2 100644 --- a/components/extension-mgt/pom.xml +++ b/components/extension-mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui/pom.xml b/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui/pom.xml index c8bda7c7677e..ea3c7280b733 100644 --- a/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui/pom.xml +++ b/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui/pom.xml @@ -21,7 +21,7 @@ functions-library-mgt org.wso2.carbon.identity.framework - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml 4.0.0 diff --git a/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt/pom.xml b/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt/pom.xml index 407aa80c4938..6603e8d63a6b 100644 --- a/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt/pom.xml +++ b/components/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt/pom.xml @@ -21,7 +21,7 @@ functions-library-mgt org.wso2.carbon.identity.framework - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml 4.0.0 diff --git a/components/functions-library-mgt/pom.xml b/components/functions-library-mgt/pom.xml index 61056fc81e22..a0514717d5c0 100644 --- a/components/functions-library-mgt/pom.xml +++ b/components/functions-library-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/identity-core/org.wso2.carbon.identity.base/pom.xml b/components/identity-core/org.wso2.carbon.identity.base/pom.xml index a106522baec2..d53228d2c087 100644 --- a/components/identity-core/org.wso2.carbon.identity.base/pom.xml +++ b/components/identity-core/org.wso2.carbon.identity.base/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-core - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/identity-core/org.wso2.carbon.identity.core.ui/pom.xml b/components/identity-core/org.wso2.carbon.identity.core.ui/pom.xml index 920e26cf0828..e8a2e96eb253 100644 --- a/components/identity-core/org.wso2.carbon.identity.core.ui/pom.xml +++ b/components/identity-core/org.wso2.carbon.identity.core.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-core - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/identity-core/org.wso2.carbon.identity.core/pom.xml b/components/identity-core/org.wso2.carbon.identity.core/pom.xml index 21b2af4c4ae9..39d831b8e6dc 100644 --- a/components/identity-core/org.wso2.carbon.identity.core/pom.xml +++ b/components/identity-core/org.wso2.carbon.identity.core/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-core - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/identity-core/pom.xml b/components/identity-core/pom.xml index ef932c8b01b7..6aa2f2988899 100644 --- a/components/identity-core/pom.xml +++ b/components/identity-core/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/identity-event/org.wso2.carbon.identity.event/pom.xml b/components/identity-event/org.wso2.carbon.identity.event/pom.xml index e8ec9a1c68d8..3c3a6ff2d688 100644 --- a/components/identity-event/org.wso2.carbon.identity.event/pom.xml +++ b/components/identity-event/org.wso2.carbon.identity.event/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-event - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/identity-event/pom.xml b/components/identity-event/pom.xml index d4d8d8220249..50246e3c021c 100644 --- a/components/identity-event/pom.xml +++ b/components/identity-event/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/identity-mgt/org.wso2.carbon.identity.mgt.endpoint.util/pom.xml b/components/identity-mgt/org.wso2.carbon.identity.mgt.endpoint.util/pom.xml index 55582cb10439..473689881765 100644 --- a/components/identity-mgt/org.wso2.carbon.identity.mgt.endpoint.util/pom.xml +++ b/components/identity-mgt/org.wso2.carbon.identity.mgt.endpoint.util/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/identity-mgt/org.wso2.carbon.identity.mgt.ui/pom.xml b/components/identity-mgt/org.wso2.carbon.identity.mgt.ui/pom.xml index b537c3b9b92b..a325923cb861 100644 --- a/components/identity-mgt/org.wso2.carbon.identity.mgt.ui/pom.xml +++ b/components/identity-mgt/org.wso2.carbon.identity.mgt.ui/pom.xml @@ -23,7 +23,7 @@ org.wso2.carbon.identity.framework identity-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/identity-mgt/org.wso2.carbon.identity.mgt/pom.xml b/components/identity-mgt/org.wso2.carbon.identity.mgt/pom.xml index 9cb686eb9db7..82b300718839 100644 --- a/components/identity-mgt/org.wso2.carbon.identity.mgt/pom.xml +++ b/components/identity-mgt/org.wso2.carbon.identity.mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/identity-mgt/pom.xml b/components/identity-mgt/pom.xml index 62e03196e54d..e886e3b01e26 100644 --- a/components/identity-mgt/pom.xml +++ b/components/identity-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/idp-mgt/org.wso2.carbon.idp.mgt.ui/pom.xml b/components/idp-mgt/org.wso2.carbon.idp.mgt.ui/pom.xml index eec4cdd8ea2a..46857c2856d9 100644 --- a/components/idp-mgt/org.wso2.carbon.idp.mgt.ui/pom.xml +++ b/components/idp-mgt/org.wso2.carbon.idp.mgt.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-provider-management - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/idp-mgt/org.wso2.carbon.idp.mgt/pom.xml b/components/idp-mgt/org.wso2.carbon.idp.mgt/pom.xml index 9927d3b04e93..046234518d6e 100644 --- a/components/idp-mgt/org.wso2.carbon.idp.mgt/pom.xml +++ b/components/idp-mgt/org.wso2.carbon.idp.mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-provider-management - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/idp-mgt/pom.xml b/components/idp-mgt/pom.xml index 39e0d1175061..dd99276e1002 100644 --- a/components/idp-mgt/pom.xml +++ b/components/idp-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt/pom.xml b/components/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt/pom.xml index aefeaaf8ec48..b5c78f4cfd9e 100644 --- a/components/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt/pom.xml +++ b/components/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework input-validation-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/input-validation-mgt/pom.xml b/components/input-validation-mgt/pom.xml index bab5bd40aa0b..6da5a23e49bc 100644 --- a/components/input-validation-mgt/pom.xml +++ b/components/input-validation-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt/pom.xml b/components/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt/pom.xml index cbc014dcaac9..179824338e80 100644 --- a/components/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt/pom.xml +++ b/components/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt/pom.xml @@ -21,7 +21,7 @@ multi-attribute-login org.wso2.carbon.identity.framework - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml 4.0.0 diff --git a/components/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt/pom.xml b/components/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt/pom.xml index 7a8f6403fb82..72c74f7a9afb 100644 --- a/components/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt/pom.xml +++ b/components/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt/pom.xml @@ -21,7 +21,7 @@ multi-attribute-login org.wso2.carbon.identity.framework - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml 4.0.0 diff --git a/components/multi-attribute-login/pom.xml b/components/multi-attribute-login/pom.xml index 52245512121a..e3f782602791 100644 --- a/components/multi-attribute-login/pom.xml +++ b/components/multi-attribute-login/pom.xml @@ -21,7 +21,7 @@ identity-framework org.wso2.carbon.identity.framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/components/notification-mgt/org.wso2.carbon.identity.notification.mgt/pom.xml b/components/notification-mgt/org.wso2.carbon.identity.notification.mgt/pom.xml index f87aa3948090..f97eba428768 100644 --- a/components/notification-mgt/org.wso2.carbon.identity.notification.mgt/pom.xml +++ b/components/notification-mgt/org.wso2.carbon.identity.notification.mgt/pom.xml @@ -23,7 +23,7 @@ org.wso2.carbon.identity.framework notification-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/notification-mgt/pom.xml b/components/notification-mgt/pom.xml index e501be53a458..28a4fb72aa3e 100644 --- a/components/notification-mgt/pom.xml +++ b/components/notification-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/provisioning/org.wso2.carbon.identity.provisioning/pom.xml b/components/provisioning/org.wso2.carbon.identity.provisioning/pom.xml index 3dd7243da26d..b314076e1bb1 100644 --- a/components/provisioning/org.wso2.carbon.identity.provisioning/pom.xml +++ b/components/provisioning/org.wso2.carbon.identity.provisioning/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework provisioning - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/provisioning/pom.xml b/components/provisioning/pom.xml index 05ff0b7307d3..5173f8767426 100644 --- a/components/provisioning/pom.xml +++ b/components/provisioning/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/role-mgt/org.wso2.carbon.identity.role.mgt.core/pom.xml b/components/role-mgt/org.wso2.carbon.identity.role.mgt.core/pom.xml index de4981cf7766..ecd84cae7288 100644 --- a/components/role-mgt/org.wso2.carbon.identity.role.mgt.core/pom.xml +++ b/components/role-mgt/org.wso2.carbon.identity.role.mgt.core/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework role-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core/pom.xml b/components/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core/pom.xml index 89bc4c49d367..d3124c065019 100644 --- a/components/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core/pom.xml +++ b/components/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework role-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/role-mgt/pom.xml b/components/role-mgt/pom.xml index 9651c2c0ceee..13179d90bc10 100644 --- a/components/role-mgt/pom.xml +++ b/components/role-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/rule-mgt/org.wso2.carbon.identity.rule.management/pom.xml b/components/rule-mgt/org.wso2.carbon.identity.rule.management/pom.xml index b66da6f9fc31..086771a1cb8b 100644 --- a/components/rule-mgt/org.wso2.carbon.identity.rule.management/pom.xml +++ b/components/rule-mgt/org.wso2.carbon.identity.rule.management/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework rule-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/rule-mgt/org.wso2.carbon.identity.rule.metadata/pom.xml b/components/rule-mgt/org.wso2.carbon.identity.rule.metadata/pom.xml index 42df5b4a4507..fc4f9b08c128 100644 --- a/components/rule-mgt/org.wso2.carbon.identity.rule.metadata/pom.xml +++ b/components/rule-mgt/org.wso2.carbon.identity.rule.metadata/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework rule-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/rule-mgt/pom.xml b/components/rule-mgt/pom.xml index c2056aea98cc..3894010491ee 100644 --- a/components/rule-mgt/pom.xml +++ b/components/rule-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/secret-mgt/org.wso2.carbon.identity.secret.mgt.core/pom.xml b/components/secret-mgt/org.wso2.carbon.identity.secret.mgt.core/pom.xml index 0d6b3e06c875..960029cae0ec 100644 --- a/components/secret-mgt/org.wso2.carbon.identity.secret.mgt.core/pom.xml +++ b/components/secret-mgt/org.wso2.carbon.identity.secret.mgt.core/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework secret-mgt - 7.7.86 + 7.7.87-SNAPSHOT 4.0.0 diff --git a/components/secret-mgt/pom.xml b/components/secret-mgt/pom.xml index 59a805cf5834..85aea999dfe2 100644 --- a/components/secret-mgt/pom.xml +++ b/components/secret-mgt/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/security-mgt/org.wso2.carbon.security.mgt.ui/pom.xml b/components/security-mgt/org.wso2.carbon.security.mgt.ui/pom.xml index 13a53d7afbbe..b5a13a76dfff 100644 --- a/components/security-mgt/org.wso2.carbon.security.mgt.ui/pom.xml +++ b/components/security-mgt/org.wso2.carbon.security.mgt.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework security-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/security-mgt/org.wso2.carbon.security.mgt/pom.xml b/components/security-mgt/org.wso2.carbon.security.mgt/pom.xml index 0d95237d4617..e897d8bad06e 100644 --- a/components/security-mgt/org.wso2.carbon.security.mgt/pom.xml +++ b/components/security-mgt/org.wso2.carbon.security.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework security-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/security-mgt/pom.xml b/components/security-mgt/pom.xml index e468f02f8016..cec264b918d9 100644 --- a/components/security-mgt/pom.xml +++ b/components/security-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/template-mgt/org.wso2.carbon.identity.template.mgt.ui/pom.xml b/components/template-mgt/org.wso2.carbon.identity.template.mgt.ui/pom.xml index 2d5500a0184e..13c0a8447d3a 100644 --- a/components/template-mgt/org.wso2.carbon.identity.template.mgt.ui/pom.xml +++ b/components/template-mgt/org.wso2.carbon.identity.template.mgt.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework template-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml 4.0.0 diff --git a/components/template-mgt/org.wso2.carbon.identity.template.mgt/pom.xml b/components/template-mgt/org.wso2.carbon.identity.template.mgt/pom.xml index ed9a0e045f25..d775aa6073c3 100644 --- a/components/template-mgt/org.wso2.carbon.identity.template.mgt/pom.xml +++ b/components/template-mgt/org.wso2.carbon.identity.template.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework template-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml 4.0.0 diff --git a/components/template-mgt/pom.xml b/components/template-mgt/pom.xml index 3cde0ecafd77..75daed6bbf6d 100644 --- a/components/template-mgt/pom.xml +++ b/components/template-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt/pom.xml b/components/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt/pom.xml index 4c858f0f363e..5b0125283b4d 100644 --- a/components/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt/pom.xml +++ b/components/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework trusted-app-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/trusted-app-mgt/pom.xml b/components/trusted-app-mgt/pom.xml index ef4aadcfeea4..0941cbd70cca 100644 --- a/components/trusted-app-mgt/pom.xml +++ b/components/trusted-app-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt/pom.xml b/components/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt/pom.xml index cbc494ffe03d..10c134f09718 100644 --- a/components/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt/pom.xml +++ b/components/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt/pom.xml @@ -21,7 +21,7 @@ user-functionality-mgt org.wso2.carbon.identity.framework - 7.7.86 + 7.7.87-SNAPSHOT 4.0.0 diff --git a/components/user-functionality-mgt/pom.xml b/components/user-functionality-mgt/pom.xml index 0cfd56518e54..288919635652 100644 --- a/components/user-functionality-mgt/pom.xml +++ b/components/user-functionality-mgt/pom.xml @@ -21,7 +21,7 @@ identity-framework org.wso2.carbon.identity.framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/user-mgt/org.wso2.carbon.identity.user.profile.ui/pom.xml b/components/user-mgt/org.wso2.carbon.identity.user.profile.ui/pom.xml index 426b8efaf23d..e04f370faa9b 100644 --- a/components/user-mgt/org.wso2.carbon.identity.user.profile.ui/pom.xml +++ b/components/user-mgt/org.wso2.carbon.identity.user.profile.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/user-mgt/org.wso2.carbon.identity.user.profile/pom.xml b/components/user-mgt/org.wso2.carbon.identity.user.profile/pom.xml index d630951d1c4c..04c3be461c4b 100644 --- a/components/user-mgt/org.wso2.carbon.identity.user.profile/pom.xml +++ b/components/user-mgt/org.wso2.carbon.identity.user.profile/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/user-mgt/org.wso2.carbon.identity.user.registration/pom.xml b/components/user-mgt/org.wso2.carbon.identity.user.registration/pom.xml index a20e5bf9715c..94f9dc4749c6 100644 --- a/components/user-mgt/org.wso2.carbon.identity.user.registration/pom.xml +++ b/components/user-mgt/org.wso2.carbon.identity.user.registration/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/user-mgt/org.wso2.carbon.role.mgt.ui/pom.xml b/components/user-mgt/org.wso2.carbon.role.mgt.ui/pom.xml index 6ca9e74d858c..22f0a8a7a403 100644 --- a/components/user-mgt/org.wso2.carbon.role.mgt.ui/pom.xml +++ b/components/user-mgt/org.wso2.carbon.role.mgt.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/user-mgt/org.wso2.carbon.user.mgt.common/pom.xml b/components/user-mgt/org.wso2.carbon.user.mgt.common/pom.xml index 6a1eba9fd26a..b15153dad038 100644 --- a/components/user-mgt/org.wso2.carbon.user.mgt.common/pom.xml +++ b/components/user-mgt/org.wso2.carbon.user.mgt.common/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/user-mgt/org.wso2.carbon.user.mgt.ui/pom.xml b/components/user-mgt/org.wso2.carbon.user.mgt.ui/pom.xml index 333b706c499c..4959e15bf8e6 100644 --- a/components/user-mgt/org.wso2.carbon.user.mgt.ui/pom.xml +++ b/components/user-mgt/org.wso2.carbon.user.mgt.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/user-mgt/org.wso2.carbon.user.mgt/pom.xml b/components/user-mgt/org.wso2.carbon.user.mgt/pom.xml index 841178648640..12c275a6b7c3 100644 --- a/components/user-mgt/org.wso2.carbon.user.mgt/pom.xml +++ b/components/user-mgt/org.wso2.carbon.user.mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/user-mgt/pom.xml b/components/user-mgt/pom.xml index 46e3b90cdf33..6fcc3855e471 100644 --- a/components/user-mgt/pom.xml +++ b/components/user-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/components/user-store/org.wso2.carbon.identity.user.store.configuration.deployer/pom.xml b/components/user-store/org.wso2.carbon.identity.user.store.configuration.deployer/pom.xml index 89350989ff9c..f4f992fdd6a8 100644 --- a/components/user-store/org.wso2.carbon.identity.user.store.configuration.deployer/pom.xml +++ b/components/user-store/org.wso2.carbon.identity.user.store.configuration.deployer/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-store - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/user-store/org.wso2.carbon.identity.user.store.configuration.ui/pom.xml b/components/user-store/org.wso2.carbon.identity.user.store.configuration.ui/pom.xml index db0185999fa3..2be8cca8896a 100644 --- a/components/user-store/org.wso2.carbon.identity.user.store.configuration.ui/pom.xml +++ b/components/user-store/org.wso2.carbon.identity.user.store.configuration.ui/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-store - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/user-store/org.wso2.carbon.identity.user.store.configuration/pom.xml b/components/user-store/org.wso2.carbon.identity.user.store.configuration/pom.xml index 045c43f14fa5..6b717e25ca54 100644 --- a/components/user-store/org.wso2.carbon.identity.user.store.configuration/pom.xml +++ b/components/user-store/org.wso2.carbon.identity.user.store.configuration/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-store - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/user-store/org.wso2.carbon.identity.user.store.count/pom.xml b/components/user-store/org.wso2.carbon.identity.user.store.count/pom.xml index daa366c3cea1..b28c412aa3de 100644 --- a/components/user-store/org.wso2.carbon.identity.user.store.count/pom.xml +++ b/components/user-store/org.wso2.carbon.identity.user.store.count/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-store - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/components/user-store/pom.xml b/components/user-store/pom.xml index 74f61761f8bd..6ed9cb0a236a 100644 --- a/components/user-store/pom.xml +++ b/components/user-store/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/features/action-mgt/org.wso2.carbon.identity.action.management.server.feature/pom.xml b/features/action-mgt/org.wso2.carbon.identity.action.management.server.feature/pom.xml index 6e9a3a2b156d..8c8f7de9de86 100644 --- a/features/action-mgt/org.wso2.carbon.identity.action.management.server.feature/pom.xml +++ b/features/action-mgt/org.wso2.carbon.identity.action.management.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework action-management-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/action-mgt/pom.xml b/features/action-mgt/pom.xml index e1310d0f5f33..8f04233f56ce 100644 --- a/features/action-mgt/pom.xml +++ b/features/action-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/features/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt.server.feature/pom.xml b/features/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt.server.feature/pom.xml index 4e97abc61d0e..931c64baa508 100644 --- a/features/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt.server.feature/pom.xml +++ b/features/api-resource-mgt/org.wso2.carbon.identity.api.resource.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework api-resource-management-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/api-resource-mgt/pom.xml b/features/api-resource-mgt/pom.xml index 962ad640bc3f..32f3362aa616 100644 --- a/features/api-resource-mgt/pom.xml +++ b/features/api-resource-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/features/application-mgt/org.wso2.carbon.identity.application.mgt.feature/pom.xml b/features/application-mgt/org.wso2.carbon.identity.application.mgt.feature/pom.xml index 2bfa843bfef0..340a933cc04d 100644 --- a/features/application-mgt/org.wso2.carbon.identity.application.mgt.feature/pom.xml +++ b/features/application-mgt/org.wso2.carbon.identity.application.mgt.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework application-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/application-mgt/org.wso2.carbon.identity.application.mgt.server.feature/pom.xml b/features/application-mgt/org.wso2.carbon.identity.application.mgt.server.feature/pom.xml index 6505622cade8..2da622ea9391 100644 --- a/features/application-mgt/org.wso2.carbon.identity.application.mgt.server.feature/pom.xml +++ b/features/application-mgt/org.wso2.carbon.identity.application.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework application-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/application-mgt/org.wso2.carbon.identity.application.mgt.ui.feature/pom.xml b/features/application-mgt/org.wso2.carbon.identity.application.mgt.ui.feature/pom.xml index ae25ef334701..f888530b7962 100644 --- a/features/application-mgt/org.wso2.carbon.identity.application.mgt.ui.feature/pom.xml +++ b/features/application-mgt/org.wso2.carbon.identity.application.mgt.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework application-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/application-mgt/pom.xml b/features/application-mgt/pom.xml index 2b32cd541bac..76b1f499e718 100644 --- a/features/application-mgt/pom.xml +++ b/features/application-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/features/authentication-framework/org.wso2.carbon.identity.application.authentication.framework.server.feature/pom.xml b/features/authentication-framework/org.wso2.carbon.identity.application.authentication.framework.server.feature/pom.xml index c8fb61bbb9d7..5549eada8bc3 100644 --- a/features/authentication-framework/org.wso2.carbon.identity.application.authentication.framework.server.feature/pom.xml +++ b/features/authentication-framework/org.wso2.carbon.identity.application.authentication.framework.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework authentication-framework-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/authentication-framework/pom.xml b/features/authentication-framework/pom.xml index 4bb0cbc4c894..a0f91109a5ea 100644 --- a/features/authentication-framework/pom.xml +++ b/features/authentication-framework/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/features/carbon-authenticators/pom.xml b/features/carbon-authenticators/pom.xml index ffedbdf9a462..20f582e63986 100644 --- a/features/carbon-authenticators/pom.xml +++ b/features/carbon-authenticators/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/features/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.thrift.authentication.feature/pom.xml b/features/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.thrift.authentication.feature/pom.xml index 33ef30f723b3..de810e0cd528 100644 --- a/features/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.thrift.authentication.feature/pom.xml +++ b/features/carbon-authenticators/thrift-authenticator/org.wso2.carbon.identity.thrift.authentication.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework thrift-authenticator-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/carbon-authenticators/thrift-authenticator/pom.xml b/features/carbon-authenticators/thrift-authenticator/pom.xml index 371587362f00..edd00a16f609 100644 --- a/features/carbon-authenticators/thrift-authenticator/pom.xml +++ b/features/carbon-authenticators/thrift-authenticator/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-authenticator-features - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/categories/authorization/pom.xml b/features/categories/authorization/pom.xml index a117819f25a4..0073386cd4d2 100644 --- a/features/categories/authorization/pom.xml +++ b/features/categories/authorization/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../../pom.xml diff --git a/features/categories/inbound-authentication/pom.xml b/features/categories/inbound-authentication/pom.xml index ef8a035211cc..146a970a7905 100644 --- a/features/categories/inbound-authentication/pom.xml +++ b/features/categories/inbound-authentication/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../../pom.xml diff --git a/features/categories/inbound-provisioning/pom.xml b/features/categories/inbound-provisioning/pom.xml index 31ac19ae2e14..9f2dc3942e10 100644 --- a/features/categories/inbound-provisioning/pom.xml +++ b/features/categories/inbound-provisioning/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../../pom.xml diff --git a/features/categories/keystore-mgt/pom.xml b/features/categories/keystore-mgt/pom.xml index df3defc71668..f86e7a976720 100644 --- a/features/categories/keystore-mgt/pom.xml +++ b/features/categories/keystore-mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../../pom.xml diff --git a/features/categories/notification-mgt/pom.xml b/features/categories/notification-mgt/pom.xml index a8b9d1a337b6..2845d4ccf8ad 100644 --- a/features/categories/notification-mgt/pom.xml +++ b/features/categories/notification-mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../../pom.xml diff --git a/features/categories/outbound-authentication/pom.xml b/features/categories/outbound-authentication/pom.xml index 6011fdec3836..4b2ac166f167 100644 --- a/features/categories/outbound-authentication/pom.xml +++ b/features/categories/outbound-authentication/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../../pom.xml diff --git a/features/categories/outbound-provisioning/pom.xml b/features/categories/outbound-provisioning/pom.xml index fc87c33e3fcc..098d0a1f1f27 100644 --- a/features/categories/outbound-provisioning/pom.xml +++ b/features/categories/outbound-provisioning/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../../pom.xml diff --git a/features/categories/pom.xml b/features/categories/pom.xml index 3d77b1180525..59f036f06f12 100644 --- a/features/categories/pom.xml +++ b/features/categories/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/features/categories/user-mgt/pom.xml b/features/categories/user-mgt/pom.xml index b6aad1dc0efe..bc8c98667afb 100644 --- a/features/categories/user-mgt/pom.xml +++ b/features/categories/user-mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../../pom.xml diff --git a/features/central-logger/org.wso2.carbon.identity.central.log.mgt.server.feature/pom.xml b/features/central-logger/org.wso2.carbon.identity.central.log.mgt.server.feature/pom.xml index 93b499b89793..b6cd418c51ea 100644 --- a/features/central-logger/org.wso2.carbon.identity.central.log.mgt.server.feature/pom.xml +++ b/features/central-logger/org.wso2.carbon.identity.central.log.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework central-logger-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/central-logger/pom.xml b/features/central-logger/pom.xml index 398a1a94dea0..8e86ca4b5970 100644 --- a/features/central-logger/pom.xml +++ b/features/central-logger/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/certificate-mgt/org.wso2.carbon.identity.certificate.management.server.feature/pom.xml b/features/certificate-mgt/org.wso2.carbon.identity.certificate.management.server.feature/pom.xml index a95e45d7805d..b849bf25d631 100644 --- a/features/certificate-mgt/org.wso2.carbon.identity.certificate.management.server.feature/pom.xml +++ b/features/certificate-mgt/org.wso2.carbon.identity.certificate.management.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework certificate-management-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/certificate-mgt/pom.xml b/features/certificate-mgt/pom.xml index 6b6b8077cc83..c5e8f84b3031 100644 --- a/features/certificate-mgt/pom.xml +++ b/features/certificate-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/features/claim-mgt/org.wso2.carbon.claim.mgt.feature/pom.xml b/features/claim-mgt/org.wso2.carbon.claim.mgt.feature/pom.xml index 3acdfa16cb54..5fc1682c5730 100644 --- a/features/claim-mgt/org.wso2.carbon.claim.mgt.feature/pom.xml +++ b/features/claim-mgt/org.wso2.carbon.claim.mgt.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework claim-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/claim-mgt/org.wso2.carbon.claim.mgt.server.feature/pom.xml b/features/claim-mgt/org.wso2.carbon.claim.mgt.server.feature/pom.xml index 4d205e9d453d..1baa18d48009 100644 --- a/features/claim-mgt/org.wso2.carbon.claim.mgt.server.feature/pom.xml +++ b/features/claim-mgt/org.wso2.carbon.claim.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework claim-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/claim-mgt/org.wso2.carbon.claim.mgt.ui.feature/pom.xml b/features/claim-mgt/org.wso2.carbon.claim.mgt.ui.feature/pom.xml index e2509d44514c..b41f3f7bd426 100644 --- a/features/claim-mgt/org.wso2.carbon.claim.mgt.ui.feature/pom.xml +++ b/features/claim-mgt/org.wso2.carbon.claim.mgt.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework claim-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/claim-mgt/pom.xml b/features/claim-mgt/pom.xml index cf2daa0fdb01..16ebb4c581cc 100644 --- a/features/claim-mgt/pom.xml +++ b/features/claim-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/features/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt.server.feature/pom.xml b/features/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt.server.feature/pom.xml index 70e9fa355060..44ec0ffce338 100644 --- a/features/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt.server.feature/pom.xml +++ b/features/client-attestation-mgt/org.wso2.carbon.identity.client.attestation.mgt.server.feature/pom.xml @@ -23,7 +23,7 @@ org.wso2.carbon.identity.framework client-attestation-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/client-attestation-mgt/pom.xml b/features/client-attestation-mgt/pom.xml index 3e0df41c4305..568c9f721ef3 100644 --- a/features/client-attestation-mgt/pom.xml +++ b/features/client-attestation-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.server.feature/pom.xml b/features/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.server.feature/pom.xml index 8add30b1395e..06f7d28bbcb1 100644 --- a/features/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.server.feature/pom.xml +++ b/features/configuration-mgt/org.wso2.carbon.identity.configuration.mgt.server.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework configuration-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/configuration-mgt/pom.xml b/features/configuration-mgt/pom.xml index 5d4ac5d2f63b..2b3f58af742d 100644 --- a/features/configuration-mgt/pom.xml +++ b/features/configuration-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/features/consent-mgt/org.wso2.carbon.identity.consent.mgt.server.feature/pom.xml b/features/consent-mgt/org.wso2.carbon.identity.consent.mgt.server.feature/pom.xml index 01b2f25de03a..78be637c9828 100644 --- a/features/consent-mgt/org.wso2.carbon.identity.consent.mgt.server.feature/pom.xml +++ b/features/consent-mgt/org.wso2.carbon.identity.consent.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-consent-mgt-aggregator - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/consent-mgt/pom.xml b/features/consent-mgt/pom.xml index 2d69caf008d0..65d4c8820953 100644 --- a/features/consent-mgt/pom.xml +++ b/features/consent-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/features/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt.server.feature/pom.xml b/features/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt.server.feature/pom.xml index bb1b9a6bce05..f5181d490e26 100644 --- a/features/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt.server.feature/pom.xml +++ b/features/consent-server-configs-mgt/org.wso2.carbon.identity.consent.server.configs.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework consent-server-configs-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/consent-server-configs-mgt/pom.xml b/features/consent-server-configs-mgt/pom.xml index 34de6f09827c..0fb9d84c30d7 100644 --- a/features/consent-server-configs-mgt/pom.xml +++ b/features/consent-server-configs-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/cors-mgt/org.wso2.carbon.identity.cors.mgt.server.feature/pom.xml b/features/cors-mgt/org.wso2.carbon.identity.cors.mgt.server.feature/pom.xml index d89126963773..0dbc4c1817db 100644 --- a/features/cors-mgt/org.wso2.carbon.identity.cors.mgt.server.feature/pom.xml +++ b/features/cors-mgt/org.wso2.carbon.identity.cors.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework cors-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/cors-mgt/pom.xml b/features/cors-mgt/pom.xml index e53870d7f654..dde2e92179fa 100644 --- a/features/cors-mgt/pom.xml +++ b/features/cors-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.feature/pom.xml b/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.feature/pom.xml index 3e2f9da11f76..0db9fe318d8d 100644 --- a/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.feature/pom.xml +++ b/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework directory-server-manager-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.server.feature/pom.xml b/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.server.feature/pom.xml index b5a6c282d51b..575bbf511de3 100644 --- a/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.server.feature/pom.xml +++ b/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework directory-server-manager-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.ui.feature/pom.xml b/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.ui.feature/pom.xml index cdb7898d4066..55d83b85aef1 100644 --- a/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.ui.feature/pom.xml +++ b/features/directory-server-manager/org.wso2.carbon.directory.service.mgr.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework directory-server-manager-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/directory-server-manager/pom.xml b/features/directory-server-manager/pom.xml index 7466e13e7400..838584abd1c9 100644 --- a/features/directory-server-manager/pom.xml +++ b/features/directory-server-manager/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/features/extension-mgt/org.wso2.carbon.identity.extension.mgt.feature/pom.xml b/features/extension-mgt/org.wso2.carbon.identity.extension.mgt.feature/pom.xml index a448aa92b191..54ec5d98d170 100644 --- a/features/extension-mgt/org.wso2.carbon.identity.extension.mgt.feature/pom.xml +++ b/features/extension-mgt/org.wso2.carbon.identity.extension.mgt.feature/pom.xml @@ -19,7 +19,7 @@ extension-management-feature org.wso2.carbon.identity.framework - 7.7.86 + 7.7.87-SNAPSHOT org.wso2.carbon.identity.extension.mgt.feature diff --git a/features/extension-mgt/pom.xml b/features/extension-mgt/pom.xml index 218338b8dd0c..2f74136ae24b 100644 --- a/features/extension-mgt/pom.xml +++ b/features/extension-mgt/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.feature/pom.xml b/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.feature/pom.xml index 800b0cb6a71d..6fae025f7132 100644 --- a/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.feature/pom.xml +++ b/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework functions-library-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml 4.0.0 diff --git a/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.server.feature/pom.xml b/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.server.feature/pom.xml index 8d9ae2d6e1df..dfbae945ee7d 100644 --- a/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.server.feature/pom.xml +++ b/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework functions-library-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml 4.0.0 diff --git a/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui.feature/pom.xml b/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui.feature/pom.xml index 46454e0b7d07..0d853ea9e514 100644 --- a/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui.feature/pom.xml +++ b/features/functions-library-mgt/org.wso2.carbon.identity.functions.library.mgt.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework functions-library-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml 4.0.0 diff --git a/features/functions-library-mgt/pom.xml b/features/functions-library-mgt/pom.xml index e7b8c26b72f3..6cad53468372 100644 --- a/features/functions-library-mgt/pom.xml +++ b/features/functions-library-mgt/pom.xml @@ -28,7 +28,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/features/identity-core/org.wso2.carbon.identity.core.feature/pom.xml b/features/identity-core/org.wso2.carbon.identity.core.feature/pom.xml index 59cb8dc5b9cb..bbfac1d2d62d 100644 --- a/features/identity-core/org.wso2.carbon.identity.core.feature/pom.xml +++ b/features/identity-core/org.wso2.carbon.identity.core.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-core-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/identity-core/org.wso2.carbon.identity.core.server.feature/pom.xml b/features/identity-core/org.wso2.carbon.identity.core.server.feature/pom.xml index 287d92361580..65fc022c7452 100644 --- a/features/identity-core/org.wso2.carbon.identity.core.server.feature/pom.xml +++ b/features/identity-core/org.wso2.carbon.identity.core.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-core-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/identity-core/org.wso2.carbon.identity.core.ui.feature/pom.xml b/features/identity-core/org.wso2.carbon.identity.core.ui.feature/pom.xml index 9cdf569503d1..c2aac7cdedc1 100644 --- a/features/identity-core/org.wso2.carbon.identity.core.ui.feature/pom.xml +++ b/features/identity-core/org.wso2.carbon.identity.core.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-core-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/identity-core/pom.xml b/features/identity-core/pom.xml index dbdeeca56a6b..1e2f41718d66 100644 --- a/features/identity-core/pom.xml +++ b/features/identity-core/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/features/identity-event/org.wso2.carbon.identity.event.feature/pom.xml b/features/identity-event/org.wso2.carbon.identity.event.feature/pom.xml index 24c369dfdd66..598a5aa4d6c8 100644 --- a/features/identity-event/org.wso2.carbon.identity.event.feature/pom.xml +++ b/features/identity-event/org.wso2.carbon.identity.event.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-event-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/identity-event/org.wso2.carbon.identity.event.server.feature/pom.xml b/features/identity-event/org.wso2.carbon.identity.event.server.feature/pom.xml index 7f1126da6aba..655146277f6d 100644 --- a/features/identity-event/org.wso2.carbon.identity.event.server.feature/pom.xml +++ b/features/identity-event/org.wso2.carbon.identity.event.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-event-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/identity-event/pom.xml b/features/identity-event/pom.xml index e19233592318..75891bb82798 100644 --- a/features/identity-event/pom.xml +++ b/features/identity-event/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/features/identity-mgt/org.wso2.carbon.identity.mgt.feature/pom.xml b/features/identity-mgt/org.wso2.carbon.identity.mgt.feature/pom.xml index 7132db263308..30830d1458da 100644 --- a/features/identity-mgt/org.wso2.carbon.identity.mgt.feature/pom.xml +++ b/features/identity-mgt/org.wso2.carbon.identity.mgt.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/identity-mgt/org.wso2.carbon.identity.mgt.server.feature/pom.xml b/features/identity-mgt/org.wso2.carbon.identity.mgt.server.feature/pom.xml index 6098928d5016..f2d8ad30faa8 100644 --- a/features/identity-mgt/org.wso2.carbon.identity.mgt.server.feature/pom.xml +++ b/features/identity-mgt/org.wso2.carbon.identity.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/identity-mgt/org.wso2.carbon.identity.mgt.ui.feature/pom.xml b/features/identity-mgt/org.wso2.carbon.identity.mgt.ui.feature/pom.xml index f81c39425244..ef198061cb53 100644 --- a/features/identity-mgt/org.wso2.carbon.identity.mgt.ui.feature/pom.xml +++ b/features/identity-mgt/org.wso2.carbon.identity.mgt.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/identity-mgt/pom.xml b/features/identity-mgt/pom.xml index 5662cbd4628f..43bec1a5cc95 100644 --- a/features/identity-mgt/pom.xml +++ b/features/identity-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/features/idp-mgt/org.wso2.carbon.idp.mgt.feature/pom.xml b/features/idp-mgt/org.wso2.carbon.idp.mgt.feature/pom.xml index 9bb4429b686b..48a55ba38bc7 100644 --- a/features/idp-mgt/org.wso2.carbon.idp.mgt.feature/pom.xml +++ b/features/idp-mgt/org.wso2.carbon.idp.mgt.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-provider-management-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/idp-mgt/org.wso2.carbon.idp.mgt.server.feature/pom.xml b/features/idp-mgt/org.wso2.carbon.idp.mgt.server.feature/pom.xml index d8259aad026d..3775dbbc7e27 100644 --- a/features/idp-mgt/org.wso2.carbon.idp.mgt.server.feature/pom.xml +++ b/features/idp-mgt/org.wso2.carbon.idp.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-provider-management-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/idp-mgt/org.wso2.carbon.idp.mgt.ui.feature/pom.xml b/features/idp-mgt/org.wso2.carbon.idp.mgt.ui.feature/pom.xml index e9466e1a3aee..3fb39cae677f 100644 --- a/features/idp-mgt/org.wso2.carbon.idp.mgt.ui.feature/pom.xml +++ b/features/idp-mgt/org.wso2.carbon.idp.mgt.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-provider-management-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/idp-mgt/pom.xml b/features/idp-mgt/pom.xml index 33fca9f16653..69b4cdc57391 100644 --- a/features/idp-mgt/pom.xml +++ b/features/idp-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/features/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt.server.feature/pom.xml b/features/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt.server.feature/pom.xml index 1c713b5ff1c2..d5ea5be6042c 100644 --- a/features/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt.server.feature/pom.xml +++ b/features/input-validation-mgt/org.wso2.carbon.identity.input.validation.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework input-validation-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/input-validation-mgt/pom.xml b/features/input-validation-mgt/pom.xml index 7c2548447dff..4a0722ba9383 100644 --- a/features/input-validation-mgt/pom.xml +++ b/features/input-validation-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt.server.feature/pom.xml b/features/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt.server.feature/pom.xml index 30a5eb7ca53a..c9feb433ddf3 100644 --- a/features/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt.server.feature/pom.xml +++ b/features/multi-attribute-login/org.wso2.carbon.identity.multi.attribute.login.mgt.server.feature/pom.xml @@ -20,7 +20,7 @@ multi-attribute-login-feature org.wso2.carbon.identity.framework - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml 4.0.0 diff --git a/features/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt.server.feature/pom.xml b/features/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt.server.feature/pom.xml index fbf164d0aa15..224ee6090f13 100644 --- a/features/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt.server.feature/pom.xml +++ b/features/multi-attribute-login/org.wso2.carbon.identity.unique.claim.mgt.server.feature/pom.xml @@ -20,7 +20,7 @@ multi-attribute-login-feature org.wso2.carbon.identity.framework - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml 4.0.0 diff --git a/features/multi-attribute-login/pom.xml b/features/multi-attribute-login/pom.xml index 648619a82810..f64df79f8ab0 100644 --- a/features/multi-attribute-login/pom.xml +++ b/features/multi-attribute-login/pom.xml @@ -20,7 +20,7 @@ identity-framework org.wso2.carbon.identity.framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.feature/pom.xml b/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.feature/pom.xml index 4a62cbcea20a..8837c8b8a157 100644 --- a/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.feature/pom.xml +++ b/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-notification-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.server.feature/pom.xml b/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.server.feature/pom.xml index 68421ac2ccf2..215a80cbd8a1 100644 --- a/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.server.feature/pom.xml +++ b/features/notification-mgt/org.wso2.carbon.identity.notification.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-notification-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/notification-mgt/pom.xml b/features/notification-mgt/pom.xml index 34f869c8c1cb..4595419399cc 100644 --- a/features/notification-mgt/pom.xml +++ b/features/notification-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/features/provisioning/org.wso2.carbon.identity.provisioning.server.feature/pom.xml b/features/provisioning/org.wso2.carbon.identity.provisioning.server.feature/pom.xml index d679d46b4233..c5cae6a23ac7 100644 --- a/features/provisioning/org.wso2.carbon.identity.provisioning.server.feature/pom.xml +++ b/features/provisioning/org.wso2.carbon.identity.provisioning.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework provisioning-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/provisioning/pom.xml b/features/provisioning/pom.xml index c6e8a149bda9..f93740c19a72 100644 --- a/features/provisioning/pom.xml +++ b/features/provisioning/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/features/role-mgt/org.wso2.carbon.identity.role.mgt.core.server.feature/pom.xml b/features/role-mgt/org.wso2.carbon.identity.role.mgt.core.server.feature/pom.xml index 860d95d095bc..ff9befaacfdb 100644 --- a/features/role-mgt/org.wso2.carbon.identity.role.mgt.core.server.feature/pom.xml +++ b/features/role-mgt/org.wso2.carbon.identity.role.mgt.core.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework role-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml 4.0.0 diff --git a/features/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core.server.feature/pom.xml b/features/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core.server.feature/pom.xml index 6e6d1246d4ef..bfa00c07e85d 100644 --- a/features/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core.server.feature/pom.xml +++ b/features/role-mgt/org.wso2.carbon.identity.role.v2.mgt.core.server.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework role-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml 4.0.0 diff --git a/features/role-mgt/pom.xml b/features/role-mgt/pom.xml index 80866524f9f4..6843849e3a7b 100644 --- a/features/role-mgt/pom.xml +++ b/features/role-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/rule-mgt/org.wso2.carbon.identity.rule.management.server.feature/pom.xml b/features/rule-mgt/org.wso2.carbon.identity.rule.management.server.feature/pom.xml index f84e15ecff97..dd9dd7c64f11 100644 --- a/features/rule-mgt/org.wso2.carbon.identity.rule.management.server.feature/pom.xml +++ b/features/rule-mgt/org.wso2.carbon.identity.rule.management.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework rule-management-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/rule-mgt/pom.xml b/features/rule-mgt/pom.xml index 59babe24689d..079292e8b923 100644 --- a/features/rule-mgt/pom.xml +++ b/features/rule-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/features/secret-mgt/org.wso2.carbon.identity.secret.mgt.core.server.feature/pom.xml b/features/secret-mgt/org.wso2.carbon.identity.secret.mgt.core.server.feature/pom.xml index 68d151733d6e..d320d883b067 100644 --- a/features/secret-mgt/org.wso2.carbon.identity.secret.mgt.core.server.feature/pom.xml +++ b/features/secret-mgt/org.wso2.carbon.identity.secret.mgt.core.server.feature/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework secret-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT 4.0.0 diff --git a/features/secret-mgt/pom.xml b/features/secret-mgt/pom.xml index 4275b5ab9991..daf4b7b160bb 100644 --- a/features/secret-mgt/pom.xml +++ b/features/secret-mgt/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/features/security-mgt/org.wso2.carbon.security.mgt.feature/pom.xml b/features/security-mgt/org.wso2.carbon.security.mgt.feature/pom.xml index afe28f86c66e..17bbd243557c 100644 --- a/features/security-mgt/org.wso2.carbon.security.mgt.feature/pom.xml +++ b/features/security-mgt/org.wso2.carbon.security.mgt.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework security-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/security-mgt/org.wso2.carbon.security.mgt.server.feature/pom.xml b/features/security-mgt/org.wso2.carbon.security.mgt.server.feature/pom.xml index 4d1e33265a5f..e3ed4e99a52e 100644 --- a/features/security-mgt/org.wso2.carbon.security.mgt.server.feature/pom.xml +++ b/features/security-mgt/org.wso2.carbon.security.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework security-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/security-mgt/org.wso2.carbon.security.mgt.ui.feature/pom.xml b/features/security-mgt/org.wso2.carbon.security.mgt.ui.feature/pom.xml index 40c7e01bac85..bbead9da5f30 100644 --- a/features/security-mgt/org.wso2.carbon.security.mgt.ui.feature/pom.xml +++ b/features/security-mgt/org.wso2.carbon.security.mgt.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework security-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/security-mgt/pom.xml b/features/security-mgt/pom.xml index fed8567003f6..d1dc0a41b887 100644 --- a/features/security-mgt/pom.xml +++ b/features/security-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/features/template-mgt/org.wso2.carbon.identity.template.mgt.feature/pom.xml b/features/template-mgt/org.wso2.carbon.identity.template.mgt.feature/pom.xml index 49b5484bcb76..2006b2881b8b 100644 --- a/features/template-mgt/org.wso2.carbon.identity.template.mgt.feature/pom.xml +++ b/features/template-mgt/org.wso2.carbon.identity.template.mgt.feature/pom.xml @@ -21,7 +21,7 @@ template-management-feature org.wso2.carbon.identity.framework - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/template-mgt/org.wso2.carbon.identity.template.mgt.server.feature/pom.xml b/features/template-mgt/org.wso2.carbon.identity.template.mgt.server.feature/pom.xml index ac9cdae8395f..e0e88c15b3a0 100644 --- a/features/template-mgt/org.wso2.carbon.identity.template.mgt.server.feature/pom.xml +++ b/features/template-mgt/org.wso2.carbon.identity.template.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ template-management-feature org.wso2.carbon.identity.framework - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/template-mgt/org.wso2.carbon.identity.template.mgt.ui.feature/pom.xml b/features/template-mgt/org.wso2.carbon.identity.template.mgt.ui.feature/pom.xml index 39a6af5b9244..ca461b1d67d1 100644 --- a/features/template-mgt/org.wso2.carbon.identity.template.mgt.ui.feature/pom.xml +++ b/features/template-mgt/org.wso2.carbon.identity.template.mgt.ui.feature/pom.xml @@ -21,7 +21,7 @@ template-management-feature org.wso2.carbon.identity.framework - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/template-mgt/pom.xml b/features/template-mgt/pom.xml index 9dd0358e161f..a32e91411e0b 100644 --- a/features/template-mgt/pom.xml +++ b/features/template-mgt/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/features/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt.server.feature/pom.xml b/features/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt.server.feature/pom.xml index 0d67c7f1fe3d..1bf9ab2aeda1 100644 --- a/features/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt.server.feature/pom.xml +++ b/features/trusted-app-mgt/org.wso2.carbon.identity.trusted.app.mgt.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework trusted-app-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/trusted-app-mgt/pom.xml b/features/trusted-app-mgt/pom.xml index 018ab3f44034..77b5688235cf 100644 --- a/features/trusted-app-mgt/pom.xml +++ b/features/trusted-app-mgt/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.feature/pom.xml b/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.feature/pom.xml index 0f46710c0787..37a19c79768d 100644 --- a/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.feature/pom.xml +++ b/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.feature/pom.xml @@ -21,7 +21,7 @@ user-functionality-mgt-feature org.wso2.carbon.identity.framework - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml 4.0.0 diff --git a/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.server.feature/pom.xml b/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.server.feature/pom.xml index 786e02a1ef01..8c537585c2c0 100644 --- a/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.server.feature/pom.xml +++ b/features/user-functionality-mgt/org.wso2.carbon.identity.user.functionality.mgt.server.feature/pom.xml @@ -21,7 +21,7 @@ user-functionality-mgt-feature org.wso2.carbon.identity.framework - 7.7.86 + 7.7.87-SNAPSHOT 4.0.0 diff --git a/features/user-functionality-mgt/pom.xml b/features/user-functionality-mgt/pom.xml index b1db85e5a247..c2afa5f87924 100644 --- a/features/user-functionality-mgt/pom.xml +++ b/features/user-functionality-mgt/pom.xml @@ -21,7 +21,7 @@ identity-framework org.wso2.carbon.identity.framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/user-mgt/org.wso2.carbon.identity.user.profile.feature/pom.xml b/features/user-mgt/org.wso2.carbon.identity.user.profile.feature/pom.xml index 53901c65b568..1791c0d7c26b 100644 --- a/features/user-mgt/org.wso2.carbon.identity.user.profile.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.identity.user.profile.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.identity.user.profile.server.feature/pom.xml b/features/user-mgt/org.wso2.carbon.identity.user.profile.server.feature/pom.xml index f6beeb41bd29..ede77f38c43d 100644 --- a/features/user-mgt/org.wso2.carbon.identity.user.profile.server.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.identity.user.profile.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.identity.user.profile.ui.feature/pom.xml b/features/user-mgt/org.wso2.carbon.identity.user.profile.ui.feature/pom.xml index f281d3394964..1a6f70ac7366 100644 --- a/features/user-mgt/org.wso2.carbon.identity.user.profile.ui.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.identity.user.profile.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.identity.user.registration.feature/pom.xml b/features/user-mgt/org.wso2.carbon.identity.user.registration.feature/pom.xml index ba6592ee9879..21647546c1ff 100644 --- a/features/user-mgt/org.wso2.carbon.identity.user.registration.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.identity.user.registration.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.identity.user.registration.server.feature/pom.xml b/features/user-mgt/org.wso2.carbon.identity.user.registration.server.feature/pom.xml index 6357f9208178..63e398751bda 100644 --- a/features/user-mgt/org.wso2.carbon.identity.user.registration.server.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.identity.user.registration.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.identity.user.registration.ui.feature/pom.xml b/features/user-mgt/org.wso2.carbon.identity.user.registration.ui.feature/pom.xml index 720d89750e50..56bd91b92b5d 100644 --- a/features/user-mgt/org.wso2.carbon.identity.user.registration.ui.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.identity.user.registration.ui.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.role.mgt.ui.feature/pom.xml b/features/user-mgt/org.wso2.carbon.role.mgt.ui.feature/pom.xml index 46704f729504..d7b2925396c7 100644 --- a/features/user-mgt/org.wso2.carbon.role.mgt.ui.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.role.mgt.ui.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.user.mgt.feature/pom.xml b/features/user-mgt/org.wso2.carbon.user.mgt.feature/pom.xml index 5837b7e29748..0f54bad03bb4 100644 --- a/features/user-mgt/org.wso2.carbon.user.mgt.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.user.mgt.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.user.mgt.server.feature/pom.xml b/features/user-mgt/org.wso2.carbon.user.mgt.server.feature/pom.xml index 9713cf74fa05..28d057597912 100644 --- a/features/user-mgt/org.wso2.carbon.user.mgt.server.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.user.mgt.server.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/user-mgt/org.wso2.carbon.user.mgt.ui.feature/pom.xml b/features/user-mgt/org.wso2.carbon.user.mgt.ui.feature/pom.xml index d781a0a2f0d8..027ed5a5773b 100644 --- a/features/user-mgt/org.wso2.carbon.user.mgt.ui.feature/pom.xml +++ b/features/user-mgt/org.wso2.carbon.user.mgt.ui.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.framework user-mgt-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/user-mgt/pom.xml b/features/user-mgt/pom.xml index 226c6cda6034..ab65af6856c2 100644 --- a/features/user-mgt/pom.xml +++ b/features/user-mgt/pom.xml @@ -17,7 +17,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/features/user-store/org.wso2.carbon.identity.user.store.configuration.server.feature/pom.xml b/features/user-store/org.wso2.carbon.identity.user.store.configuration.server.feature/pom.xml index 95346fc5cfb6..bf3e3afb8b57 100644 --- a/features/user-store/org.wso2.carbon.identity.user.store.configuration.server.feature/pom.xml +++ b/features/user-store/org.wso2.carbon.identity.user.store.configuration.server.feature/pom.xml @@ -23,7 +23,7 @@ org.wso2.carbon.identity.framework user-store-feature - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/features/user-store/pom.xml b/features/user-store/pom.xml index 5c438f0994d5..5ef2a5d53ab5 100644 --- a/features/user-store/pom.xml +++ b/features/user-store/pom.xml @@ -23,7 +23,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/pom.xml b/pom.xml index 8b9afd8c4214..5dbb1187c77b 100644 --- a/pom.xml +++ b/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.framework identity-framework pom - 7.7.86 + 7.7.87-SNAPSHOT WSO2 Carbon - Platform Aggregator Pom http://wso2.org @@ -36,7 +36,7 @@ https://github.com/wso2/carbon-identity-framework.git scm:git:https://github.com/wso2/carbon-identity-framework.git scm:git:https://github.com/wso2/carbon-identity-framework.git - v7.7.86 + HEAD diff --git a/service-stubs/identity/org.wso2.carbon.claim.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.claim.mgt.stub/pom.xml index 6db68368f842..b75a8c919ec1 100644 --- a/service-stubs/identity/org.wso2.carbon.claim.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.claim.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.directory.server.manager.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.directory.server.manager.stub/pom.xml index ae6c91762f58..f299dd5ee516 100644 --- a/service-stubs/identity/org.wso2.carbon.directory.server.manager.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.directory.server.manager.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.application.authentication.framework.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.application.authentication.framework.stub/pom.xml index a4e1e13bf6f0..a7f5f257610a 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.application.authentication.framework.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.application.authentication.framework.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml 4.0.0 diff --git a/service-stubs/identity/org.wso2.carbon.identity.application.default.authentication.sequence.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.application.default.authentication.sequence.mgt.stub/pom.xml index b4c671565dc5..ecfbc954cbb2 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.application.default.authentication.sequence.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.application.default.authentication.sequence.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.application.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.application.mgt.stub/pom.xml index 36754110158d..b6430108de6b 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.application.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.application.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.claim.metadata.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.claim.metadata.mgt.stub/pom.xml index 7be01f962889..42e0dee2fe16 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.claim.metadata.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.claim.metadata.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.functions.library.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.functions.library.mgt.stub/pom.xml index da9080482b5b..b27deef3e342 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.functions.library.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.functions.library.mgt.stub/pom.xml @@ -21,7 +21,7 @@ carbon-service-stubs org.wso2.carbon.identity.framework - 7.7.86 + 7.7.87-SNAPSHOT 4.0.0 diff --git a/service-stubs/identity/org.wso2.carbon.identity.governance.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.governance.stub/pom.xml index 58f3385682f7..3224d98cc77a 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.governance.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.governance.stub/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.mgt.stub/pom.xml index b0412e1ae86f..044aca837d66 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.user.profile.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.user.profile.stub/pom.xml index 9f88a23d0495..e8d1d0363e89 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.user.profile.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.user.profile.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.user.registration.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.user.registration.stub/pom.xml index 86ea18697dd4..7e91002761da 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.user.registration.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.user.registration.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.user.store.configuration.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.user.store.configuration.stub/pom.xml index beafa895162e..486340b0a4e9 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.user.store.configuration.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.user.store.configuration.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.identity.user.store.count.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.user.store.count.stub/pom.xml index 74b22281768d..aaa6995b468a 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.user.store.count.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.user.store.count.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.idp.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.idp.mgt.stub/pom.xml index c22577012a1c..4656589219f8 100644 --- a/service-stubs/identity/org.wso2.carbon.idp.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.idp.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.security.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.security.mgt.stub/pom.xml index a1dc3580fc79..6aba5d4b7033 100644 --- a/service-stubs/identity/org.wso2.carbon.security.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.security.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/org.wso2.carbon.user.mgt.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.user.mgt.stub/pom.xml index 740864e35d75..72b6a1bdde05 100644 --- a/service-stubs/identity/org.wso2.carbon.user.mgt.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.user.mgt.stub/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework carbon-service-stubs - 7.7.86 + 7.7.87-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/pom.xml b/service-stubs/identity/pom.xml index 5837ab1d1953..457695f0b879 100644 --- a/service-stubs/identity/pom.xml +++ b/service-stubs/identity/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml diff --git a/test-utils/org.wso2.carbon.identity.testutil/pom.xml b/test-utils/org.wso2.carbon.identity.testutil/pom.xml index f1a919ab9ffb..34ad6c573fe9 100644 --- a/test-utils/org.wso2.carbon.identity.testutil/pom.xml +++ b/test-utils/org.wso2.carbon.identity.testutil/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.framework identity-framework - 7.7.86 + 7.7.87-SNAPSHOT ../../pom.xml