From 23b9cf8253b5882ec3e5fddf4f958a37811f73b6 Mon Sep 17 00:00:00 2001 From: Silmy Hasan Date: Tue, 24 Sep 2024 10:59:03 +0530 Subject: [PATCH 1/6] Fix provision error (#12527) --- .../wso2/carbon/apimgt/impl/APIConstants.java | 1 + .../carbon/apimgt/impl/dao/ApiMgtDAO.java | 66 +++++++++++++++---- .../impl/internal/APIManagerComponent.java | 10 --- 3 files changed, 56 insertions(+), 21 deletions(-) diff --git a/components/apimgt/org.wso2.carbon.apimgt.impl/src/main/java/org/wso2/carbon/apimgt/impl/APIConstants.java b/components/apimgt/org.wso2.carbon.apimgt.impl/src/main/java/org/wso2/carbon/apimgt/impl/APIConstants.java index f8c85f2031cd..310b4324c99e 100755 --- a/components/apimgt/org.wso2.carbon.apimgt.impl/src/main/java/org/wso2/carbon/apimgt/impl/APIConstants.java +++ b/components/apimgt/org.wso2.carbon.apimgt.impl/src/main/java/org/wso2/carbon/apimgt/impl/APIConstants.java @@ -1082,6 +1082,7 @@ private Permissions() { public static final String API_USAGE_DAS_REST_API_PASSWORD = API_ANALYTICS + "StreamProcessorRestApiPassword"; public static final String UNLIMITED_TIER = "Unlimited"; + public static final String THROTTLING_TIER = "THROTTLING_TIER"; public static final String UNLIMITED_TIER_DESC = "Allows unlimited requests"; public static final String UNAUTHENTICATED_TIER = "Unauthenticated"; diff --git a/components/apimgt/org.wso2.carbon.apimgt.impl/src/main/java/org/wso2/carbon/apimgt/impl/dao/ApiMgtDAO.java b/components/apimgt/org.wso2.carbon.apimgt.impl/src/main/java/org/wso2/carbon/apimgt/impl/dao/ApiMgtDAO.java index ef12b5a97a93..6e3eb2f16725 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.impl/src/main/java/org/wso2/carbon/apimgt/impl/dao/ApiMgtDAO.java +++ b/components/apimgt/org.wso2.carbon.apimgt.impl/src/main/java/org/wso2/carbon/apimgt/impl/dao/ApiMgtDAO.java @@ -6808,7 +6808,11 @@ public ArrayList getAllURITemplatesOldThrottle(String apiContext, S uriTemplate.setHTTPVerb(rs.getString("HTTP_METHOD")); uriTemplate.setAuthType(rs.getString("AUTH_SCHEME")); uriTemplate.setUriTemplate(rs.getString("URL_PATTERN")); - uriTemplate.setThrottlingTier(rs.getString("THROTTLING_TIER")); + if (rs.getString(APIConstants.THROTTLING_TIER).isEmpty()) { + uriTemplate.setThrottlingTier(APIConstants.UNLIMITED_TIER); + } else { + uriTemplate.setThrottlingTier(rs.getString(APIConstants.THROTTLING_TIER)); + } InputStream mediationScriptBlob = rs.getBinaryStream("MEDIATION_SCRIPT"); if (mediationScriptBlob != null) { script = APIMgtDBUtil.getStringFromInputStream(mediationScriptBlob); @@ -6902,7 +6906,12 @@ private ArrayList extractURITemplates(ResultSet rs) throws SQLExcep String httpVerb = rs.getString("HTTP_METHOD"); String authType = rs.getString("AUTH_SCHEME"); String urlPattern = rs.getString("URL_PATTERN"); - String policyName = rs.getString("THROTTLING_TIER"); + String policyName; + if(rs.getString(APIConstants.THROTTLING_TIER).isEmpty()){ + policyName = APIConstants.UNLIMITED_TIER; + } else { + policyName = rs.getString(APIConstants.THROTTLING_TIER); + } String conditionGroupId = rs.getString("CONDITION_GROUP_ID"); String applicableLevel = rs.getString("APPLICABLE_LEVEL"); String policyConditionGroupId = "_condition_" + conditionGroupId; @@ -7430,7 +7439,12 @@ public HashMap getURITemplatesPerAPIAsString(String uuid) String uriPattern = resultSet.getString("URL_PATTERN"); String httpMethod = resultSet.getString("HTTP_METHOD"); String authScheme = resultSet.getString("AUTH_SCHEME"); - String throttlingTier = resultSet.getString("THROTTLING_TIER"); + String throttlingTier; + if(resultSet.getString(APIConstants.THROTTLING_TIER).isEmpty()){ + throttlingTier = APIConstants.UNLIMITED_TIER; + } else { + throttlingTier = resultSet.getString(APIConstants.THROTTLING_TIER); + } InputStream mediationScriptBlob = resultSet.getBinaryStream("MEDIATION_SCRIPT"); if (mediationScriptBlob != null) { script = APIMgtDBUtil.getStringFromInputStream(mediationScriptBlob); @@ -7499,7 +7513,12 @@ public Set getURITemplatesOfAPI(String uuid) uriTemplate.setHttpVerbs(verb); uriTemplate.setId(uriTemplateId); String authType = rs.getString("AUTH_SCHEME"); - String throttlingTier = rs.getString("THROTTLING_TIER"); + String throttlingTier; + if(rs.getString(APIConstants.THROTTLING_TIER).isEmpty()) { + throttlingTier = APIConstants.UNLIMITED_TIER; + } else { + throttlingTier = rs.getString(APIConstants.THROTTLING_TIER); + } if (StringUtils.isNotEmpty(scopeName)) { Scope scope = new Scope(); scope.setKey(scopeName); @@ -7559,7 +7578,12 @@ public Set getURITemplatesOfAPI(String uuid) uriTemplate.setHTTPVerb(verb); uriTemplate.setHttpVerbs(verb); String authType = rs.getString("AUTH_SCHEME"); - String throttlingTier = rs.getString("THROTTLING_TIER"); + String throttlingTier; + if (rs.getString(APIConstants.THROTTLING_TIER).isEmpty()) { + throttlingTier = APIConstants.UNLIMITED_TIER; + } else { + throttlingTier = rs.getString(APIConstants.THROTTLING_TIER); + } if (StringUtils.isNotEmpty(scopeName)) { Scope scope = new Scope(); scope.setKey(scopeName); @@ -7627,7 +7651,12 @@ public Map getURITemplatesOfAPIWithProductMapping(String u uriTemplate.setHTTPVerb(verb); uriTemplate.setHttpVerbs(verb); String authType = rs.getString("AUTH_SCHEME"); - String throttlingTier = rs.getString("THROTTLING_TIER"); + String throttlingTier; + if (rs.getString(APIConstants.THROTTLING_TIER).isEmpty()) { + throttlingTier = APIConstants.UNLIMITED_TIER; + } else { + throttlingTier = rs.getString(APIConstants.THROTTLING_TIER); + } if (StringUtils.isNotEmpty(scopeName)) { Scope scope = new Scope(); scope.setKey(scopeName); @@ -15073,7 +15102,11 @@ public void addAPIProductResourceMappings(List productResour uriTemplate.setHTTPVerb(rs.getString("HTTP_METHOD")); uriTemplate.setAuthType(rs.getString("AUTH_SCHEME")); uriTemplate.setUriTemplate(rs.getString("URL_PATTERN")); - uriTemplate.setThrottlingTier(rs.getString("THROTTLING_TIER")); + if(rs.getString(APIConstants.THROTTLING_TIER).isEmpty()){ + uriTemplate.setThrottlingTier(APIConstants.UNLIMITED_TIER); + } else { + uriTemplate.setThrottlingTier(rs.getString(APIConstants.THROTTLING_TIER)); + } String script = null; InputStream mediationScriptBlob = rs.getBinaryStream("MEDIATION_SCRIPT"); if (mediationScriptBlob != null) { @@ -15463,8 +15496,11 @@ public List getAPIProductResourceMappings(APIProductIdentifi int uriTemplateId = rs.getInt("URL_MAPPING_ID"); uriTemplate.setId(uriTemplateId); uriTemplate.setAuthType(rs.getString("AUTH_SCHEME")); - uriTemplate.setThrottlingTier(rs.getString("THROTTLING_TIER")); - + if(rs.getString(APIConstants.THROTTLING_TIER).isEmpty()){ + uriTemplate.setThrottlingTier(APIConstants.UNLIMITED_TIER); + } else { + uriTemplate.setThrottlingTier(rs.getString(APIConstants.THROTTLING_TIER)); + } try (PreparedStatement scopesStatement = connection. prepareStatement(SQLConstants.GET_SCOPE_KEYS_BY_URL_MAPPING_ID)) { scopesStatement.setInt(1, uriTemplateId); @@ -15521,7 +15557,11 @@ public List getAPIProductResourceMappings(APIProductIdentifi int uriTemplateId = rs.getInt("URL_MAPPING_ID"); uriTemplate.setId(uriTemplateId); uriTemplate.setAuthType(rs.getString("AUTH_SCHEME")); - uriTemplate.setThrottlingTier(rs.getString("THROTTLING_TIER")); + if(rs.getString(APIConstants.THROTTLING_TIER).isEmpty()){ + uriTemplate.setThrottlingTier(APIConstants.UNLIMITED_TIER); + } else { + uriTemplate.setThrottlingTier(rs.getString(APIConstants.THROTTLING_TIER)); + } try (PreparedStatement scopesStatement = connection. prepareStatement(SQLConstants.GET_SCOPE_KEYS_BY_URL_MAPPING_ID)) { @@ -18472,7 +18512,11 @@ public void restoreAPIProductRevision(APIRevision apiRevision) throws APIManagem uriTemplate.setHTTPVerb(httpMethod); uriTemplate.setAuthType(rs.getString("AUTH_SCHEME")); uriTemplate.setUriTemplate(rs.getString("URL_PATTERN")); - uriTemplate.setThrottlingTier(rs.getString("THROTTLING_TIER")); + if(rs.getString(APIConstants.THROTTLING_TIER).isEmpty()){ + uriTemplate.setThrottlingTier(APIConstants.UNLIMITED_TIER); + } else { + uriTemplate.setThrottlingTier(rs.getString(APIConstants.THROTTLING_TIER)); + } InputStream mediationScriptBlob = rs.getBinaryStream("MEDIATION_SCRIPT"); if (mediationScriptBlob != null) { script = APIMgtDBUtil.getStringFromInputStream(mediationScriptBlob); diff --git a/components/apimgt/org.wso2.carbon.apimgt.impl/src/main/java/org/wso2/carbon/apimgt/impl/internal/APIManagerComponent.java b/components/apimgt/org.wso2.carbon.apimgt.impl/src/main/java/org/wso2/carbon/apimgt/impl/internal/APIManagerComponent.java index e51d713d8505..54d624d3fc69 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.impl/src/main/java/org/wso2/carbon/apimgt/impl/internal/APIManagerComponent.java +++ b/components/apimgt/org.wso2.carbon.apimgt.impl/src/main/java/org/wso2/carbon/apimgt/impl/internal/APIManagerComponent.java @@ -290,16 +290,6 @@ protected void activate(ComponentContext componentContext) throws Exception { //Adding default correlation configs at initial server start up APIUtil.addDefaultCorrelationConfigs(); - // Update all NULL THROTTLING_TIER values to Unlimited - boolean isNullThrottlingTierConversionEnabled = APIUtil.updateNullThrottlingTierAtStartup(); - try { - if (isNullThrottlingTierConversionEnabled) { - ApiMgtDAO.getInstance().convertNullThrottlingTiers(); - } - } catch (APIManagementException e) { - log.error("Failed to convert NULL THROTTLING_TIERS to Unlimited"); - } - // // Initialise KeyManager. // KeyManagerHolder.initializeKeyManager(configuration); // Initialise sql constants From 72a883d4747116924422c6d5b9c7f242c6a65c5c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 24 Sep 2024 06:04:10 +0000 Subject: [PATCH 2/6] [WSO2 Release] [Jenkins #7209] [Release 9.29.205] prepare release v9.29.205 --- components/apimgt/org.wso2.carbon.apimgt.api/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.broker.lifecycle/pom.xml | 2 +- .../org.wso2.carbon.apimgt.cache.invalidation/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.cleanup.service/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.common.analytics/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.common.gateway/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.common.jms/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.core/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.devops.impl/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.eventing.hub/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.eventing/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.gateway/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.impl/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.internal.service/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.jms.listener/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.keymgt.client/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.keymgt/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.notification/pom.xml | 2 +- .../org.wso2.carbon.apimgt.output.adapter.http/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.persistence/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.rest.api.admin.v1/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.rest.api.common/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.rest.api.dcr/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.rest.api.devops/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.rest.api.gateway/pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.apimgt.rest.api.publisher.v1/pom.xml | 2 +- .../org.wso2.carbon.apimgt.rest.api.service.catalog/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.rest.api.store.v1/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.rest.api.util/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.solace/pom.xml | 2 +- .../org.wso2.carbon.apimgt.throttle.policy.deployer/pom.xml | 2 +- .../pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.tokenmgt/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.tracing/pom.xml | 2 +- components/apimgt/pom.xml | 2 +- .../org.wso2.carbon.apimgt.samples.calculator/pom.xml | 2 +- .../org.wso2.carbon.apimgt.samples.pizzashack/pom.xml | 2 +- .../pom.xml | 2 +- features/apimgt/org.wso2.carbon.apimgt.core.feature/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.eventing.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.eventing.hub.feature/pom.xml | 2 +- features/apimgt/org.wso2.carbon.apimgt.feature/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.gateway.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.internal.service.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.jms.listener.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.keymanager.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.persistence.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.rest.api.admin.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.rest.api.dcr.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.rest.api.devops.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.rest.api.gateway.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.apimgt.rest.api.store.feature/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.scxml.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.tokenmgt.feature/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.tracing.feature/pom.xml | 2 +- features/apimgt/pom.xml | 2 +- pom.xml | 6 +++--- .../apimgt/org.wso2.carbon.apimgt.keymgt.stub/pom.xml | 2 +- service-stubs/apimgt/pom.xml | 2 +- 64 files changed, 66 insertions(+), 66 deletions(-) diff --git a/components/apimgt/org.wso2.carbon.apimgt.api/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.api/pom.xml index a63a5b0df47c..8b8e3fd96e2c 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.api/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.api/pom.xml @@ -11,7 +11,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.broker.lifecycle/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.broker.lifecycle/pom.xml index c1278788eedf..a2eef1c296d3 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.broker.lifecycle/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.broker.lifecycle/pom.xml @@ -4,7 +4,7 @@ apimgt org.wso2.carbon.apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.cache.invalidation/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.cache.invalidation/pom.xml index d2872f4b1a89..3ca28b6b2f94 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.cache.invalidation/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.cache.invalidation/pom.xml @@ -19,7 +19,7 @@ apimgt org.wso2.carbon.apimgt - 9.29.205-SNAPSHOT + 9.29.205 4.0.0 diff --git a/components/apimgt/org.wso2.carbon.apimgt.cleanup.service/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.cleanup.service/pom.xml index f3f5e75ed700..1d16a0bd287c 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.cleanup.service/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.cleanup.service/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.common.analytics/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.common.analytics/pom.xml index 9ea85438df17..5d1f02c6569e 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.common.analytics/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.common.analytics/pom.xml @@ -3,7 +3,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml 4.0.0 diff --git a/components/apimgt/org.wso2.carbon.apimgt.common.gateway/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.common.gateway/pom.xml index 003bb249e9c9..33d40113a809 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.common.gateway/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.common.gateway/pom.xml @@ -3,7 +3,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml 4.0.0 diff --git a/components/apimgt/org.wso2.carbon.apimgt.common.jms/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.common.jms/pom.xml index 7feeb98d0756..e334afe845cc 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.common.jms/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.common.jms/pom.xml @@ -4,7 +4,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml 4.0.0 diff --git a/components/apimgt/org.wso2.carbon.apimgt.core/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.core/pom.xml index a03ff6d8d237..e9fbde47c764 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.core/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.core/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.devops.impl/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.devops.impl/pom.xml index a0e5a1453b44..5211aaa8c1c4 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.devops.impl/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.devops.impl/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.eventing.hub/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.eventing.hub/pom.xml index b2b77fd3df50..aa3c7daa425e 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.eventing.hub/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.eventing.hub/pom.xml @@ -20,7 +20,7 @@ apimgt org.wso2.carbon.apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.eventing/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.eventing/pom.xml index d74336cd0f4a..502f21996cf6 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.eventing/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.eventing/pom.xml @@ -20,7 +20,7 @@ apimgt org.wso2.carbon.apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.gateway/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.gateway/pom.xml index 02a22f91a6db..5ca905445d3c 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.gateway/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.gateway/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.impl/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.impl/pom.xml index e1f62b1f2403..bbd05413c5ef 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.impl/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.impl/pom.xml @@ -12,7 +12,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.internal.service/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.internal.service/pom.xml index 40f9c4a5df17..812bbda31261 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.internal.service/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.internal.service/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.jms.listener/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.jms.listener/pom.xml index ed5ef3e4afa4..5aaaa481dc58 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.jms.listener/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.jms.listener/pom.xml @@ -4,7 +4,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml 4.0.0 diff --git a/components/apimgt/org.wso2.carbon.apimgt.keymgt.client/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.keymgt.client/pom.xml index dcecda758003..8a9b46cde154 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.keymgt.client/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.keymgt.client/pom.xml @@ -16,7 +16,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.keymgt/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.keymgt/pom.xml index 4b5cba2d1de5..4b8290d5022a 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.keymgt/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.keymgt/pom.xml @@ -16,7 +16,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.notification/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.notification/pom.xml index ea0e184f3ede..3ffca3563fc8 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.notification/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.notification/pom.xml @@ -19,7 +19,7 @@ apimgt org.wso2.carbon.apimgt - 9.29.205-SNAPSHOT + 9.29.205 org.wso2.carbon.apimgt.notification 4.0.0 diff --git a/components/apimgt/org.wso2.carbon.apimgt.output.adapter.http/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.output.adapter.http/pom.xml index 0e91a5576613..c38469200a27 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.output.adapter.http/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.output.adapter.http/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.persistence/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.persistence/pom.xml index 8d37e379e5e7..a7a6a20456de 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.persistence/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.persistence/pom.xml @@ -3,7 +3,7 @@ apimgt org.wso2.carbon.apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml 4.0.0 diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.admin.v1/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.admin.v1/pom.xml index b9f741d3d733..2ae5a67038db 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.admin.v1/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.admin.v1/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.common/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.common/pom.xml index b5cedc73780f..bef13fd6d353 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.common/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.common/pom.xml @@ -17,7 +17,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.dcr/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.dcr/pom.xml index bd4a6fb0c774..4aa8747edde8 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.dcr/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.dcr/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.devops/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.devops/pom.xml index cc1ea0119616..009b0d4da4b9 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.devops/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.devops/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.gateway/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.gateway/pom.xml index 92f397112b61..fe248d2527f2 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.gateway/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.gateway/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1.common/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1.common/pom.xml index a1c3ddc461c4..e46ab588f374 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1.common/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1.common/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1/pom.xml index 824039789596..7e66f2307119 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog/pom.xml index b91d5bdf55be..fdefac3b676e 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.store.v1/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.store.v1/pom.xml index 98ece91ba369..9ae0e80bdfaa 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.store.v1/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.store.v1/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.util/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.util/pom.xml index e7d53b39ffa8..7fc20e3cfbfc 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.util/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.util/pom.xml @@ -17,7 +17,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.solace/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.solace/pom.xml index 596d4a4d0fb4..c9630fa597eb 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.solace/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.solace/pom.xml @@ -3,7 +3,7 @@ apimgt org.wso2.carbon.apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer/pom.xml index 3c5ceb4dda59..595e179f32a5 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer/pom.xml @@ -19,7 +19,7 @@ apimgt org.wso2.carbon.apimgt - 9.29.205-SNAPSHOT + 9.29.205 4.0.0 bundle diff --git a/components/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension/pom.xml index 48f271806900..b679913d8960 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.tokenmgt/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.tokenmgt/pom.xml index 23760a3b0f21..95bcbab83ff3 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.tokenmgt/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.tokenmgt/pom.xml @@ -16,7 +16,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.tracing/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.tracing/pom.xml index c44eed4ff5d5..c9b1602b246d 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.tracing/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.tracing/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/components/apimgt/pom.xml b/components/apimgt/pom.xml index 51ba6ab1c2e2..df1eca311fb1 100644 --- a/components/apimgt/pom.xml +++ b/components/apimgt/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.apimgt carbon-apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../../pom.xml diff --git a/components/apimgt/samples/org.wso2.carbon.apimgt.samples.calculator/pom.xml b/components/apimgt/samples/org.wso2.carbon.apimgt.samples.calculator/pom.xml index fe8cbe752221..536bed7013bf 100644 --- a/components/apimgt/samples/org.wso2.carbon.apimgt.samples.calculator/pom.xml +++ b/components/apimgt/samples/org.wso2.carbon.apimgt.samples.calculator/pom.xml @@ -19,7 +19,7 @@ apimgt org.wso2.carbon.apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../../pom.xml diff --git a/components/apimgt/samples/org.wso2.carbon.apimgt.samples.pizzashack/pom.xml b/components/apimgt/samples/org.wso2.carbon.apimgt.samples.pizzashack/pom.xml index 9fbe39f981dd..99bed414322a 100644 --- a/components/apimgt/samples/org.wso2.carbon.apimgt.samples.pizzashack/pom.xml +++ b/components/apimgt/samples/org.wso2.carbon.apimgt.samples.pizzashack/pom.xml @@ -20,7 +20,7 @@ apimgt org.wso2.carbon.apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.cache.invalidation.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.cache.invalidation.feature/pom.xml index 35f9831d46b0..ab26c2be47e3 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.cache.invalidation.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.cache.invalidation.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.core.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.core.feature/pom.xml index 7bad5fa8dffb..3741aa20b5d8 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.core.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.core.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.eventing.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.eventing.feature/pom.xml index 121e286923c2..716265bf60df 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.eventing.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.eventing.feature/pom.xml @@ -20,7 +20,7 @@ apimgt-feature org.wso2.carbon.apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.eventing.hub.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.eventing.hub.feature/pom.xml index 5b2abedb022c..803d70feb966 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.eventing.hub.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.eventing.hub.feature/pom.xml @@ -20,7 +20,7 @@ apimgt-feature org.wso2.carbon.apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.feature/pom.xml index afced47334f4..cfd0038e5981 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.gateway.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.gateway.feature/pom.xml index 106ac7b12771..deab10107bbe 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.gateway.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.gateway.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.internal.service.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.internal.service.feature/pom.xml index e92877e2baf5..ec81d771af43 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.internal.service.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.internal.service.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.jms.listener.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.jms.listener.feature/pom.xml index 76bcd33c86ea..a1e4f8729e75 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.jms.listener.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.jms.listener.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.keymanager.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.keymanager.feature/pom.xml index ee2db26157d3..3823ae85985e 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.keymanager.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.keymanager.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.persistence.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.persistence.feature/pom.xml index c1c8f1c23682..077e3327c686 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.persistence.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.persistence.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.rest.api.admin.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.rest.api.admin.feature/pom.xml index d03ca0d9ec81..204c9089a2c3 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.rest.api.admin.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.rest.api.admin.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.rest.api.dcr.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.rest.api.dcr.feature/pom.xml index fd40d0066ac2..9f0ae0b556ec 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.rest.api.dcr.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.rest.api.dcr.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.rest.api.devops.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.rest.api.devops.feature/pom.xml index d743f1ebe17b..49a51be45357 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.rest.api.devops.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.rest.api.devops.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.rest.api.gateway.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.rest.api.gateway.feature/pom.xml index d5dfac688232..0cd26d70ae42 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.rest.api.gateway.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.rest.api.gateway.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.feature/pom.xml index 84ed7f067122..eb0de2161526 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog.feature/pom.xml index 176612eb6435..bc458accd501 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.rest.api.store.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.rest.api.store.feature/pom.xml index 78831be5805e..32a82f96bf39 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.rest.api.store.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.rest.api.store.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.scxml.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.scxml.feature/pom.xml index 8e02f41f75a8..a5dd209dd225 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.scxml.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.scxml.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer.feature/pom.xml index f82075a6f29a..19516219e0f0 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension.feature/pom.xml index 509eb49d00d9..ce691140c4ee 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.tokenmgt.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.tokenmgt.feature/pom.xml index 905e3bbb044b..166585731766 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.tokenmgt.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.tokenmgt.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.tracing.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.tracing.feature/pom.xml index f0589ea7a445..b92895f653b1 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.tracing.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.tracing.feature/pom.xml @@ -21,7 +21,7 @@ apimgt-feature org.wso2.carbon.apimgt - 9.29.205-SNAPSHOT + 9.29.205 4.0.0 diff --git a/features/apimgt/pom.xml b/features/apimgt/pom.xml index 1f00cdf35a4f..a366d2418681 100644 --- a/features/apimgt/pom.xml +++ b/features/apimgt/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.apimgt carbon-apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../../pom.xml diff --git a/pom.xml b/pom.xml index 2b247244111d..66f2c49d7978 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.wso2.carbon.apimgt carbon-apimgt pom - 9.29.205-SNAPSHOT + 9.29.205 WSO2 Carbon - API Management Aggregator POM https://wso2.org @@ -21,7 +21,7 @@ https://github.com/wso2/carbon-apimgt.git scm:git:https://github.com/wso2/carbon-apimgt.git scm:git:https://github.com/wso2/carbon-apimgt.git - HEAD + v9.29.205 @@ -2012,7 +2012,7 @@ 1.3 - 9.29.205-SNAPSHOT + 9.29.205 [9.0.0, 10.0.0) 5.3.13 diff --git a/service-stubs/apimgt/org.wso2.carbon.apimgt.keymgt.stub/pom.xml b/service-stubs/apimgt/org.wso2.carbon.apimgt.keymgt.stub/pom.xml index 3534d408e2f4..0e051d13293f 100644 --- a/service-stubs/apimgt/org.wso2.carbon.apimgt.keymgt.stub/pom.xml +++ b/service-stubs/apimgt/org.wso2.carbon.apimgt.keymgt.stub/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.apimgt apimgt-stubs - 9.29.205-SNAPSHOT + 9.29.205 ../pom.xml diff --git a/service-stubs/apimgt/pom.xml b/service-stubs/apimgt/pom.xml index e056a602154a..a50062e6549a 100644 --- a/service-stubs/apimgt/pom.xml +++ b/service-stubs/apimgt/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.apimgt carbon-apimgt - 9.29.205-SNAPSHOT + 9.29.205 ../../pom.xml From 5ac898113e54cbfdf4658d0707de59a2b1d57971 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 24 Sep 2024 06:04:14 +0000 Subject: [PATCH 3/6] [WSO2 Release] [Jenkins #7209] [Release 9.29.205] prepare for next development iteration --- components/apimgt/org.wso2.carbon.apimgt.api/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.broker.lifecycle/pom.xml | 2 +- .../org.wso2.carbon.apimgt.cache.invalidation/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.cleanup.service/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.common.analytics/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.common.gateway/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.common.jms/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.core/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.devops.impl/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.eventing.hub/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.eventing/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.gateway/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.impl/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.internal.service/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.jms.listener/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.keymgt.client/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.keymgt/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.notification/pom.xml | 2 +- .../org.wso2.carbon.apimgt.output.adapter.http/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.persistence/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.rest.api.admin.v1/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.rest.api.common/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.rest.api.dcr/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.rest.api.devops/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.rest.api.gateway/pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.apimgt.rest.api.publisher.v1/pom.xml | 2 +- .../org.wso2.carbon.apimgt.rest.api.service.catalog/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.rest.api.store.v1/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.rest.api.util/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.solace/pom.xml | 2 +- .../org.wso2.carbon.apimgt.throttle.policy.deployer/pom.xml | 2 +- .../pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.tokenmgt/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.tracing/pom.xml | 2 +- components/apimgt/pom.xml | 2 +- .../org.wso2.carbon.apimgt.samples.calculator/pom.xml | 2 +- .../org.wso2.carbon.apimgt.samples.pizzashack/pom.xml | 2 +- .../pom.xml | 2 +- features/apimgt/org.wso2.carbon.apimgt.core.feature/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.eventing.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.eventing.hub.feature/pom.xml | 2 +- features/apimgt/org.wso2.carbon.apimgt.feature/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.gateway.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.internal.service.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.jms.listener.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.keymanager.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.persistence.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.rest.api.admin.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.rest.api.dcr.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.rest.api.devops.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.rest.api.gateway.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.apimgt.rest.api.store.feature/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.scxml.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.tokenmgt.feature/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.tracing.feature/pom.xml | 2 +- features/apimgt/pom.xml | 2 +- pom.xml | 6 +++--- .../apimgt/org.wso2.carbon.apimgt.keymgt.stub/pom.xml | 2 +- service-stubs/apimgt/pom.xml | 2 +- 64 files changed, 66 insertions(+), 66 deletions(-) diff --git a/components/apimgt/org.wso2.carbon.apimgt.api/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.api/pom.xml index 8b8e3fd96e2c..d2f28bff2ae5 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.api/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.api/pom.xml @@ -11,7 +11,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.broker.lifecycle/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.broker.lifecycle/pom.xml index a2eef1c296d3..71e048622c6c 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.broker.lifecycle/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.broker.lifecycle/pom.xml @@ -4,7 +4,7 @@ apimgt org.wso2.carbon.apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.cache.invalidation/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.cache.invalidation/pom.xml index 3ca28b6b2f94..e12bd5bb15a4 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.cache.invalidation/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.cache.invalidation/pom.xml @@ -19,7 +19,7 @@ apimgt org.wso2.carbon.apimgt - 9.29.205 + 9.29.206-SNAPSHOT 4.0.0 diff --git a/components/apimgt/org.wso2.carbon.apimgt.cleanup.service/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.cleanup.service/pom.xml index 1d16a0bd287c..0753e0c4f435 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.cleanup.service/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.cleanup.service/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.common.analytics/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.common.analytics/pom.xml index 5d1f02c6569e..430f24a4acc6 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.common.analytics/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.common.analytics/pom.xml @@ -3,7 +3,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml 4.0.0 diff --git a/components/apimgt/org.wso2.carbon.apimgt.common.gateway/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.common.gateway/pom.xml index 33d40113a809..650dd0d883cc 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.common.gateway/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.common.gateway/pom.xml @@ -3,7 +3,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml 4.0.0 diff --git a/components/apimgt/org.wso2.carbon.apimgt.common.jms/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.common.jms/pom.xml index e334afe845cc..205404034902 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.common.jms/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.common.jms/pom.xml @@ -4,7 +4,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml 4.0.0 diff --git a/components/apimgt/org.wso2.carbon.apimgt.core/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.core/pom.xml index e9fbde47c764..04e24b9b3bb0 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.core/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.core/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.devops.impl/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.devops.impl/pom.xml index 5211aaa8c1c4..3aa6a4e7a07d 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.devops.impl/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.devops.impl/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.eventing.hub/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.eventing.hub/pom.xml index aa3c7daa425e..aa9411809a29 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.eventing.hub/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.eventing.hub/pom.xml @@ -20,7 +20,7 @@ apimgt org.wso2.carbon.apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.eventing/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.eventing/pom.xml index 502f21996cf6..0f68bf563469 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.eventing/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.eventing/pom.xml @@ -20,7 +20,7 @@ apimgt org.wso2.carbon.apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.gateway/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.gateway/pom.xml index 5ca905445d3c..1dd9017b1e42 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.gateway/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.gateway/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.impl/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.impl/pom.xml index bbd05413c5ef..e8019c7de394 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.impl/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.impl/pom.xml @@ -12,7 +12,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.internal.service/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.internal.service/pom.xml index 812bbda31261..136c9917a5ca 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.internal.service/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.internal.service/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.jms.listener/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.jms.listener/pom.xml index 5aaaa481dc58..05afb4bce20d 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.jms.listener/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.jms.listener/pom.xml @@ -4,7 +4,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml 4.0.0 diff --git a/components/apimgt/org.wso2.carbon.apimgt.keymgt.client/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.keymgt.client/pom.xml index 8a9b46cde154..c34421a667fe 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.keymgt.client/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.keymgt.client/pom.xml @@ -16,7 +16,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.keymgt/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.keymgt/pom.xml index 4b8290d5022a..02ac41fe2744 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.keymgt/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.keymgt/pom.xml @@ -16,7 +16,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.notification/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.notification/pom.xml index 3ffca3563fc8..c96254efbe53 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.notification/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.notification/pom.xml @@ -19,7 +19,7 @@ apimgt org.wso2.carbon.apimgt - 9.29.205 + 9.29.206-SNAPSHOT org.wso2.carbon.apimgt.notification 4.0.0 diff --git a/components/apimgt/org.wso2.carbon.apimgt.output.adapter.http/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.output.adapter.http/pom.xml index c38469200a27..fb1d3de4bed0 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.output.adapter.http/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.output.adapter.http/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.persistence/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.persistence/pom.xml index a7a6a20456de..89beb917a217 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.persistence/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.persistence/pom.xml @@ -3,7 +3,7 @@ apimgt org.wso2.carbon.apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml 4.0.0 diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.admin.v1/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.admin.v1/pom.xml index 2ae5a67038db..1528ff85b316 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.admin.v1/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.admin.v1/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.common/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.common/pom.xml index bef13fd6d353..edf814bfb22e 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.common/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.common/pom.xml @@ -17,7 +17,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.dcr/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.dcr/pom.xml index 4aa8747edde8..0cd76c9d01f3 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.dcr/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.dcr/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.devops/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.devops/pom.xml index 009b0d4da4b9..f95ea445d382 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.devops/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.devops/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.gateway/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.gateway/pom.xml index fe248d2527f2..8002461b0481 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.gateway/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.gateway/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1.common/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1.common/pom.xml index e46ab588f374..8e96516406b2 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1.common/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1.common/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1/pom.xml index 7e66f2307119..4ff7e7aa23f3 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog/pom.xml index fdefac3b676e..e7bd69716121 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.store.v1/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.store.v1/pom.xml index 9ae0e80bdfaa..a92363c827c8 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.store.v1/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.store.v1/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.util/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.util/pom.xml index 7fc20e3cfbfc..0636de2a3445 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.util/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.util/pom.xml @@ -17,7 +17,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.solace/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.solace/pom.xml index c9630fa597eb..4cdabd249328 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.solace/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.solace/pom.xml @@ -3,7 +3,7 @@ apimgt org.wso2.carbon.apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer/pom.xml index 595e179f32a5..0ccf651d5d34 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer/pom.xml @@ -19,7 +19,7 @@ apimgt org.wso2.carbon.apimgt - 9.29.205 + 9.29.206-SNAPSHOT 4.0.0 bundle diff --git a/components/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension/pom.xml index b679913d8960..0b8b9f3979a7 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.tokenmgt/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.tokenmgt/pom.xml index 95bcbab83ff3..42f15ad177f2 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.tokenmgt/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.tokenmgt/pom.xml @@ -16,7 +16,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.tracing/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.tracing/pom.xml index c9b1602b246d..8129fe1c1fd0 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.tracing/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.tracing/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/components/apimgt/pom.xml b/components/apimgt/pom.xml index df1eca311fb1..607585faefd8 100644 --- a/components/apimgt/pom.xml +++ b/components/apimgt/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.apimgt carbon-apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../../pom.xml diff --git a/components/apimgt/samples/org.wso2.carbon.apimgt.samples.calculator/pom.xml b/components/apimgt/samples/org.wso2.carbon.apimgt.samples.calculator/pom.xml index 536bed7013bf..7323e3ecf4b1 100644 --- a/components/apimgt/samples/org.wso2.carbon.apimgt.samples.calculator/pom.xml +++ b/components/apimgt/samples/org.wso2.carbon.apimgt.samples.calculator/pom.xml @@ -19,7 +19,7 @@ apimgt org.wso2.carbon.apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../../pom.xml diff --git a/components/apimgt/samples/org.wso2.carbon.apimgt.samples.pizzashack/pom.xml b/components/apimgt/samples/org.wso2.carbon.apimgt.samples.pizzashack/pom.xml index 99bed414322a..fe5c6ef2ff03 100644 --- a/components/apimgt/samples/org.wso2.carbon.apimgt.samples.pizzashack/pom.xml +++ b/components/apimgt/samples/org.wso2.carbon.apimgt.samples.pizzashack/pom.xml @@ -20,7 +20,7 @@ apimgt org.wso2.carbon.apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.cache.invalidation.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.cache.invalidation.feature/pom.xml index ab26c2be47e3..668e28d4a4b4 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.cache.invalidation.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.cache.invalidation.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.core.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.core.feature/pom.xml index 3741aa20b5d8..db993904a549 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.core.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.core.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.eventing.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.eventing.feature/pom.xml index 716265bf60df..369ab2784841 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.eventing.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.eventing.feature/pom.xml @@ -20,7 +20,7 @@ apimgt-feature org.wso2.carbon.apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.eventing.hub.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.eventing.hub.feature/pom.xml index 803d70feb966..d8b2ab641514 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.eventing.hub.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.eventing.hub.feature/pom.xml @@ -20,7 +20,7 @@ apimgt-feature org.wso2.carbon.apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.feature/pom.xml index cfd0038e5981..bae2c239139b 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.gateway.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.gateway.feature/pom.xml index deab10107bbe..2260dd2ed9e7 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.gateway.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.gateway.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.internal.service.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.internal.service.feature/pom.xml index ec81d771af43..0c16a6e9c2ac 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.internal.service.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.internal.service.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.jms.listener.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.jms.listener.feature/pom.xml index a1e4f8729e75..7e75cfccb4c7 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.jms.listener.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.jms.listener.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.keymanager.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.keymanager.feature/pom.xml index 3823ae85985e..b592561f484b 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.keymanager.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.keymanager.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.persistence.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.persistence.feature/pom.xml index 077e3327c686..7ffa659a6120 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.persistence.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.persistence.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.rest.api.admin.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.rest.api.admin.feature/pom.xml index 204c9089a2c3..1c6d8f7b5a04 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.rest.api.admin.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.rest.api.admin.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.rest.api.dcr.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.rest.api.dcr.feature/pom.xml index 9f0ae0b556ec..19fb07cc6245 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.rest.api.dcr.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.rest.api.dcr.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.rest.api.devops.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.rest.api.devops.feature/pom.xml index 49a51be45357..7b9555ffa64f 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.rest.api.devops.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.rest.api.devops.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.rest.api.gateway.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.rest.api.gateway.feature/pom.xml index 0cd26d70ae42..11e0bc2e3eae 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.rest.api.gateway.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.rest.api.gateway.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.feature/pom.xml index eb0de2161526..f4a5ef6149e6 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog.feature/pom.xml index bc458accd501..9ff25427bb84 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.rest.api.store.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.rest.api.store.feature/pom.xml index 32a82f96bf39..33d0bf08e50e 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.rest.api.store.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.rest.api.store.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.scxml.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.scxml.feature/pom.xml index a5dd209dd225..ff9919fe5dfb 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.scxml.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.scxml.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer.feature/pom.xml index 19516219e0f0..abc3a4e79fc5 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension.feature/pom.xml index ce691140c4ee..f3676a522ef0 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.tokenmgt.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.tokenmgt.feature/pom.xml index 166585731766..6d8c4bd5d30d 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.tokenmgt.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.tokenmgt.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.tracing.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.tracing.feature/pom.xml index b92895f653b1..a379926d5cde 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.tracing.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.tracing.feature/pom.xml @@ -21,7 +21,7 @@ apimgt-feature org.wso2.carbon.apimgt - 9.29.205 + 9.29.206-SNAPSHOT 4.0.0 diff --git a/features/apimgt/pom.xml b/features/apimgt/pom.xml index a366d2418681..5a910d8ef78e 100644 --- a/features/apimgt/pom.xml +++ b/features/apimgt/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.apimgt carbon-apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../../pom.xml diff --git a/pom.xml b/pom.xml index 66f2c49d7978..b2f7cd5e8d30 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.wso2.carbon.apimgt carbon-apimgt pom - 9.29.205 + 9.29.206-SNAPSHOT WSO2 Carbon - API Management Aggregator POM https://wso2.org @@ -21,7 +21,7 @@ https://github.com/wso2/carbon-apimgt.git scm:git:https://github.com/wso2/carbon-apimgt.git scm:git:https://github.com/wso2/carbon-apimgt.git - v9.29.205 + HEAD @@ -2012,7 +2012,7 @@ 1.3 - 9.29.205 + 9.29.206-SNAPSHOT [9.0.0, 10.0.0) 5.3.13 diff --git a/service-stubs/apimgt/org.wso2.carbon.apimgt.keymgt.stub/pom.xml b/service-stubs/apimgt/org.wso2.carbon.apimgt.keymgt.stub/pom.xml index 0e051d13293f..bd31c16ed475 100644 --- a/service-stubs/apimgt/org.wso2.carbon.apimgt.keymgt.stub/pom.xml +++ b/service-stubs/apimgt/org.wso2.carbon.apimgt.keymgt.stub/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.apimgt apimgt-stubs - 9.29.205 + 9.29.206-SNAPSHOT ../pom.xml diff --git a/service-stubs/apimgt/pom.xml b/service-stubs/apimgt/pom.xml index a50062e6549a..b81524e2627f 100644 --- a/service-stubs/apimgt/pom.xml +++ b/service-stubs/apimgt/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.apimgt carbon-apimgt - 9.29.205 + 9.29.206-SNAPSHOT ../../pom.xml From fec8af2574b04d9c064828882339500053c2afbf Mon Sep 17 00:00:00 2001 From: RakhithaRR Date: Tue, 24 Sep 2024 15:39:26 +0530 Subject: [PATCH 4/6] Bump kernel to 4.9.27-alpha --- pom.xml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pom.xml b/pom.xml index 2b247244111d..dc35132eff17 100644 --- a/pom.xml +++ b/pom.xml @@ -2017,14 +2017,14 @@ 5.3.13 - 4.9.26 + 4.9.27-alpha ${carbon.kernel.version} [4.5.0, 5.0.0) 4.9.11 4.8.36 - 4.7.218 + 4.7.219 4.1.0 @@ -2045,7 +2045,7 @@ 4.8.34 4.11.16 - 4.9.27 + 4.9.28 1.6.5 1.10.0 3.2.13 @@ -2104,7 +2104,7 @@ [1.6.0, 2.0.0) - 4.0.0-wso2v125 + 4.0.0-wso2v128 3.0.0.wso2v1 @@ -2177,7 +2177,7 @@ 3.0.1.wso2v1 1.0.16.wso2v1 2.0.5.wso2v2 - 2.1.20.wso2v1 + 2.1.22.wso2v1 1.6.11.wso2v1 1.6.11 1.6.11 @@ -2271,7 +2271,7 @@ 1.3.2 2.17.1 2.7.2 - 2.2.224.wso2v2 + 2.3.232.wso2v1 9.0.53 2.7.0 1.17 From dafb909553d526b56008eec7a6581bc75df4bb5f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 24 Sep 2024 11:26:39 +0000 Subject: [PATCH 5/6] [WSO2 Release] [Jenkins #7212] [Release 9.30.0] prepare release v9.30.0 --- components/apimgt/org.wso2.carbon.apimgt.api/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.broker.lifecycle/pom.xml | 2 +- .../org.wso2.carbon.apimgt.cache.invalidation/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.cleanup.service/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.common.analytics/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.common.gateway/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.common.jms/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.core/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.devops.impl/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.eventing.hub/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.eventing/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.gateway/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.impl/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.internal.service/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.jms.listener/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.keymgt.client/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.keymgt/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.notification/pom.xml | 2 +- .../org.wso2.carbon.apimgt.output.adapter.http/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.persistence/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.rest.api.admin.v1/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.rest.api.common/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.rest.api.dcr/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.rest.api.devops/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.rest.api.gateway/pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.apimgt.rest.api.publisher.v1/pom.xml | 2 +- .../org.wso2.carbon.apimgt.rest.api.service.catalog/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.rest.api.store.v1/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.rest.api.util/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.solace/pom.xml | 2 +- .../org.wso2.carbon.apimgt.throttle.policy.deployer/pom.xml | 2 +- .../pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.tokenmgt/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.tracing/pom.xml | 2 +- components/apimgt/pom.xml | 2 +- .../org.wso2.carbon.apimgt.samples.calculator/pom.xml | 2 +- .../org.wso2.carbon.apimgt.samples.pizzashack/pom.xml | 2 +- .../pom.xml | 2 +- features/apimgt/org.wso2.carbon.apimgt.core.feature/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.eventing.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.eventing.hub.feature/pom.xml | 2 +- features/apimgt/org.wso2.carbon.apimgt.feature/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.gateway.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.internal.service.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.jms.listener.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.keymanager.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.persistence.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.rest.api.admin.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.rest.api.dcr.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.rest.api.devops.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.rest.api.gateway.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.apimgt.rest.api.store.feature/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.scxml.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.tokenmgt.feature/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.tracing.feature/pom.xml | 2 +- features/apimgt/pom.xml | 2 +- pom.xml | 6 +++--- .../apimgt/org.wso2.carbon.apimgt.keymgt.stub/pom.xml | 2 +- service-stubs/apimgt/pom.xml | 2 +- 64 files changed, 66 insertions(+), 66 deletions(-) diff --git a/components/apimgt/org.wso2.carbon.apimgt.api/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.api/pom.xml index d2f28bff2ae5..cfe43c01da2a 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.api/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.api/pom.xml @@ -11,7 +11,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.broker.lifecycle/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.broker.lifecycle/pom.xml index 71e048622c6c..cf699aacd67f 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.broker.lifecycle/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.broker.lifecycle/pom.xml @@ -4,7 +4,7 @@ apimgt org.wso2.carbon.apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.cache.invalidation/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.cache.invalidation/pom.xml index e12bd5bb15a4..5832592bfa8d 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.cache.invalidation/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.cache.invalidation/pom.xml @@ -19,7 +19,7 @@ apimgt org.wso2.carbon.apimgt - 9.29.206-SNAPSHOT + 9.30.0 4.0.0 diff --git a/components/apimgt/org.wso2.carbon.apimgt.cleanup.service/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.cleanup.service/pom.xml index 0753e0c4f435..a3656de3da76 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.cleanup.service/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.cleanup.service/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.common.analytics/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.common.analytics/pom.xml index 430f24a4acc6..15cd73d1fdc7 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.common.analytics/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.common.analytics/pom.xml @@ -3,7 +3,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml 4.0.0 diff --git a/components/apimgt/org.wso2.carbon.apimgt.common.gateway/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.common.gateway/pom.xml index 650dd0d883cc..bf96af9919d9 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.common.gateway/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.common.gateway/pom.xml @@ -3,7 +3,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml 4.0.0 diff --git a/components/apimgt/org.wso2.carbon.apimgt.common.jms/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.common.jms/pom.xml index 205404034902..bfb09c9381ec 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.common.jms/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.common.jms/pom.xml @@ -4,7 +4,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml 4.0.0 diff --git a/components/apimgt/org.wso2.carbon.apimgt.core/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.core/pom.xml index 04e24b9b3bb0..ec1b702876a6 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.core/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.core/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.devops.impl/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.devops.impl/pom.xml index 3aa6a4e7a07d..f890de9aa0bd 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.devops.impl/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.devops.impl/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.eventing.hub/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.eventing.hub/pom.xml index aa9411809a29..97dfcb043a9d 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.eventing.hub/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.eventing.hub/pom.xml @@ -20,7 +20,7 @@ apimgt org.wso2.carbon.apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.eventing/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.eventing/pom.xml index 0f68bf563469..2768f478038d 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.eventing/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.eventing/pom.xml @@ -20,7 +20,7 @@ apimgt org.wso2.carbon.apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.gateway/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.gateway/pom.xml index 1dd9017b1e42..6ef2c2f1bcfe 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.gateway/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.gateway/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.impl/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.impl/pom.xml index e8019c7de394..4a1be136b41a 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.impl/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.impl/pom.xml @@ -12,7 +12,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.internal.service/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.internal.service/pom.xml index 136c9917a5ca..d25a47c7cc1e 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.internal.service/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.internal.service/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.jms.listener/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.jms.listener/pom.xml index 05afb4bce20d..e2fe49942657 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.jms.listener/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.jms.listener/pom.xml @@ -4,7 +4,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml 4.0.0 diff --git a/components/apimgt/org.wso2.carbon.apimgt.keymgt.client/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.keymgt.client/pom.xml index c34421a667fe..aa182cc384e5 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.keymgt.client/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.keymgt.client/pom.xml @@ -16,7 +16,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.keymgt/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.keymgt/pom.xml index 02ac41fe2744..4b29a4817566 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.keymgt/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.keymgt/pom.xml @@ -16,7 +16,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.notification/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.notification/pom.xml index c96254efbe53..596bd1b12e22 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.notification/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.notification/pom.xml @@ -19,7 +19,7 @@ apimgt org.wso2.carbon.apimgt - 9.29.206-SNAPSHOT + 9.30.0 org.wso2.carbon.apimgt.notification 4.0.0 diff --git a/components/apimgt/org.wso2.carbon.apimgt.output.adapter.http/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.output.adapter.http/pom.xml index fb1d3de4bed0..a5523e8cc2ad 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.output.adapter.http/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.output.adapter.http/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.persistence/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.persistence/pom.xml index 89beb917a217..45874faaafdf 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.persistence/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.persistence/pom.xml @@ -3,7 +3,7 @@ apimgt org.wso2.carbon.apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml 4.0.0 diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.admin.v1/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.admin.v1/pom.xml index 1528ff85b316..b8e107596b89 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.admin.v1/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.admin.v1/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.common/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.common/pom.xml index edf814bfb22e..25df7aa341b4 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.common/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.common/pom.xml @@ -17,7 +17,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.dcr/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.dcr/pom.xml index 0cd76c9d01f3..562d31c56da2 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.dcr/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.dcr/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.devops/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.devops/pom.xml index f95ea445d382..c8e003acc1ac 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.devops/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.devops/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.gateway/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.gateway/pom.xml index 8002461b0481..a5101144e0d6 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.gateway/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.gateway/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1.common/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1.common/pom.xml index 8e96516406b2..0e308665849a 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1.common/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1.common/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1/pom.xml index 4ff7e7aa23f3..1ad210f15c3b 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog/pom.xml index e7bd69716121..0f0f659b106e 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.store.v1/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.store.v1/pom.xml index a92363c827c8..a303777176ea 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.store.v1/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.store.v1/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.util/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.util/pom.xml index 0636de2a3445..75499b5a0307 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.util/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.util/pom.xml @@ -17,7 +17,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.solace/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.solace/pom.xml index 4cdabd249328..6d3f2b3d84ff 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.solace/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.solace/pom.xml @@ -3,7 +3,7 @@ apimgt org.wso2.carbon.apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer/pom.xml index 0ccf651d5d34..39e29b359a78 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer/pom.xml @@ -19,7 +19,7 @@ apimgt org.wso2.carbon.apimgt - 9.29.206-SNAPSHOT + 9.30.0 4.0.0 bundle diff --git a/components/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension/pom.xml index 0b8b9f3979a7..91ace9797774 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.tokenmgt/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.tokenmgt/pom.xml index 42f15ad177f2..b33b902c7ef1 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.tokenmgt/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.tokenmgt/pom.xml @@ -16,7 +16,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.tracing/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.tracing/pom.xml index 8129fe1c1fd0..ab2cd28ee440 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.tracing/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.tracing/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/components/apimgt/pom.xml b/components/apimgt/pom.xml index 607585faefd8..60ab227969c9 100644 --- a/components/apimgt/pom.xml +++ b/components/apimgt/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.apimgt carbon-apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../../pom.xml diff --git a/components/apimgt/samples/org.wso2.carbon.apimgt.samples.calculator/pom.xml b/components/apimgt/samples/org.wso2.carbon.apimgt.samples.calculator/pom.xml index 7323e3ecf4b1..efd5e1b04776 100644 --- a/components/apimgt/samples/org.wso2.carbon.apimgt.samples.calculator/pom.xml +++ b/components/apimgt/samples/org.wso2.carbon.apimgt.samples.calculator/pom.xml @@ -19,7 +19,7 @@ apimgt org.wso2.carbon.apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../../pom.xml diff --git a/components/apimgt/samples/org.wso2.carbon.apimgt.samples.pizzashack/pom.xml b/components/apimgt/samples/org.wso2.carbon.apimgt.samples.pizzashack/pom.xml index fe5c6ef2ff03..eb760d082e8f 100644 --- a/components/apimgt/samples/org.wso2.carbon.apimgt.samples.pizzashack/pom.xml +++ b/components/apimgt/samples/org.wso2.carbon.apimgt.samples.pizzashack/pom.xml @@ -20,7 +20,7 @@ apimgt org.wso2.carbon.apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.cache.invalidation.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.cache.invalidation.feature/pom.xml index 668e28d4a4b4..779af9ade49b 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.cache.invalidation.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.cache.invalidation.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.core.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.core.feature/pom.xml index db993904a549..ac05eefef719 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.core.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.core.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.eventing.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.eventing.feature/pom.xml index 369ab2784841..f21f0448df74 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.eventing.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.eventing.feature/pom.xml @@ -20,7 +20,7 @@ apimgt-feature org.wso2.carbon.apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.eventing.hub.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.eventing.hub.feature/pom.xml index d8b2ab641514..8f80aaaf6245 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.eventing.hub.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.eventing.hub.feature/pom.xml @@ -20,7 +20,7 @@ apimgt-feature org.wso2.carbon.apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.feature/pom.xml index bae2c239139b..6d9a997c391e 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.gateway.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.gateway.feature/pom.xml index 2260dd2ed9e7..9f705fdf76f2 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.gateway.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.gateway.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.internal.service.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.internal.service.feature/pom.xml index 0c16a6e9c2ac..f0f3e8245232 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.internal.service.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.internal.service.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.jms.listener.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.jms.listener.feature/pom.xml index 7e75cfccb4c7..f2111dffc922 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.jms.listener.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.jms.listener.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.keymanager.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.keymanager.feature/pom.xml index b592561f484b..c4c592c8052a 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.keymanager.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.keymanager.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.persistence.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.persistence.feature/pom.xml index 7ffa659a6120..da55f12c8dee 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.persistence.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.persistence.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.rest.api.admin.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.rest.api.admin.feature/pom.xml index 1c6d8f7b5a04..ca483b172332 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.rest.api.admin.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.rest.api.admin.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.rest.api.dcr.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.rest.api.dcr.feature/pom.xml index 19fb07cc6245..83f41df20afd 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.rest.api.dcr.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.rest.api.dcr.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.rest.api.devops.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.rest.api.devops.feature/pom.xml index 7b9555ffa64f..40c201cb5fd0 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.rest.api.devops.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.rest.api.devops.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.rest.api.gateway.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.rest.api.gateway.feature/pom.xml index 11e0bc2e3eae..80879196d455 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.rest.api.gateway.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.rest.api.gateway.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.feature/pom.xml index f4a5ef6149e6..ebed54e97bb9 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog.feature/pom.xml index 9ff25427bb84..8559cced883a 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.rest.api.store.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.rest.api.store.feature/pom.xml index 33d0bf08e50e..35480817154e 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.rest.api.store.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.rest.api.store.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.scxml.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.scxml.feature/pom.xml index ff9919fe5dfb..24c6d4c6ebba 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.scxml.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.scxml.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer.feature/pom.xml index abc3a4e79fc5..4f6415db62d5 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension.feature/pom.xml index f3676a522ef0..b2d454394ce2 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.tokenmgt.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.tokenmgt.feature/pom.xml index 6d8c4bd5d30d..042a1b40f9b8 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.tokenmgt.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.tokenmgt.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.tracing.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.tracing.feature/pom.xml index a379926d5cde..87335a32b619 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.tracing.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.tracing.feature/pom.xml @@ -21,7 +21,7 @@ apimgt-feature org.wso2.carbon.apimgt - 9.29.206-SNAPSHOT + 9.30.0 4.0.0 diff --git a/features/apimgt/pom.xml b/features/apimgt/pom.xml index 5a910d8ef78e..d3e35e8c6755 100644 --- a/features/apimgt/pom.xml +++ b/features/apimgt/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.apimgt carbon-apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../../pom.xml diff --git a/pom.xml b/pom.xml index 8a15bd5656ec..1523b5f33a59 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.wso2.carbon.apimgt carbon-apimgt pom - 9.29.206-SNAPSHOT + 9.30.0 WSO2 Carbon - API Management Aggregator POM https://wso2.org @@ -21,7 +21,7 @@ https://github.com/wso2/carbon-apimgt.git scm:git:https://github.com/wso2/carbon-apimgt.git scm:git:https://github.com/wso2/carbon-apimgt.git - HEAD + v9.30.0 @@ -2012,7 +2012,7 @@ 1.3 - 9.29.206-SNAPSHOT + 9.30.0 [9.0.0, 10.0.0) 5.3.13 diff --git a/service-stubs/apimgt/org.wso2.carbon.apimgt.keymgt.stub/pom.xml b/service-stubs/apimgt/org.wso2.carbon.apimgt.keymgt.stub/pom.xml index bd31c16ed475..48deb242fd29 100644 --- a/service-stubs/apimgt/org.wso2.carbon.apimgt.keymgt.stub/pom.xml +++ b/service-stubs/apimgt/org.wso2.carbon.apimgt.keymgt.stub/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.apimgt apimgt-stubs - 9.29.206-SNAPSHOT + 9.30.0 ../pom.xml diff --git a/service-stubs/apimgt/pom.xml b/service-stubs/apimgt/pom.xml index b81524e2627f..fe08318d41ae 100644 --- a/service-stubs/apimgt/pom.xml +++ b/service-stubs/apimgt/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.apimgt carbon-apimgt - 9.29.206-SNAPSHOT + 9.30.0 ../../pom.xml From a2919ddffdfd4a8de5b62a9810c31e6e32541995 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 24 Sep 2024 11:26:42 +0000 Subject: [PATCH 6/6] [WSO2 Release] [Jenkins #7212] [Release 9.30.0] prepare for next development iteration --- components/apimgt/org.wso2.carbon.apimgt.api/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.broker.lifecycle/pom.xml | 2 +- .../org.wso2.carbon.apimgt.cache.invalidation/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.cleanup.service/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.common.analytics/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.common.gateway/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.common.jms/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.core/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.devops.impl/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.eventing.hub/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.eventing/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.gateway/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.impl/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.internal.service/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.jms.listener/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.keymgt.client/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.keymgt/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.notification/pom.xml | 2 +- .../org.wso2.carbon.apimgt.output.adapter.http/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.persistence/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.rest.api.admin.v1/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.rest.api.common/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.rest.api.dcr/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.rest.api.devops/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.rest.api.gateway/pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.apimgt.rest.api.publisher.v1/pom.xml | 2 +- .../org.wso2.carbon.apimgt.rest.api.service.catalog/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.rest.api.store.v1/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.rest.api.util/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.solace/pom.xml | 2 +- .../org.wso2.carbon.apimgt.throttle.policy.deployer/pom.xml | 2 +- .../pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.tokenmgt/pom.xml | 2 +- components/apimgt/org.wso2.carbon.apimgt.tracing/pom.xml | 2 +- components/apimgt/pom.xml | 2 +- .../org.wso2.carbon.apimgt.samples.calculator/pom.xml | 2 +- .../org.wso2.carbon.apimgt.samples.pizzashack/pom.xml | 2 +- .../pom.xml | 2 +- features/apimgt/org.wso2.carbon.apimgt.core.feature/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.eventing.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.eventing.hub.feature/pom.xml | 2 +- features/apimgt/org.wso2.carbon.apimgt.feature/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.gateway.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.internal.service.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.jms.listener.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.keymanager.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.persistence.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.rest.api.admin.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.rest.api.dcr.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.rest.api.devops.feature/pom.xml | 2 +- .../org.wso2.carbon.apimgt.rest.api.gateway.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.apimgt.rest.api.store.feature/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.scxml.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.tokenmgt.feature/pom.xml | 2 +- .../apimgt/org.wso2.carbon.apimgt.tracing.feature/pom.xml | 2 +- features/apimgt/pom.xml | 2 +- pom.xml | 6 +++--- .../apimgt/org.wso2.carbon.apimgt.keymgt.stub/pom.xml | 2 +- service-stubs/apimgt/pom.xml | 2 +- 64 files changed, 66 insertions(+), 66 deletions(-) diff --git a/components/apimgt/org.wso2.carbon.apimgt.api/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.api/pom.xml index cfe43c01da2a..1cd07915199f 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.api/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.api/pom.xml @@ -11,7 +11,7 @@ org.wso2.carbon.apimgt apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.broker.lifecycle/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.broker.lifecycle/pom.xml index cf699aacd67f..42f3f76d1e11 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.broker.lifecycle/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.broker.lifecycle/pom.xml @@ -4,7 +4,7 @@ apimgt org.wso2.carbon.apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.cache.invalidation/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.cache.invalidation/pom.xml index 5832592bfa8d..b8baafe40e03 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.cache.invalidation/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.cache.invalidation/pom.xml @@ -19,7 +19,7 @@ apimgt org.wso2.carbon.apimgt - 9.30.0 + 9.30.1-SNAPSHOT 4.0.0 diff --git a/components/apimgt/org.wso2.carbon.apimgt.cleanup.service/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.cleanup.service/pom.xml index a3656de3da76..b70927cda16a 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.cleanup.service/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.cleanup.service/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.apimgt apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.common.analytics/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.common.analytics/pom.xml index 15cd73d1fdc7..37acfa27fa1d 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.common.analytics/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.common.analytics/pom.xml @@ -3,7 +3,7 @@ org.wso2.carbon.apimgt apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml 4.0.0 diff --git a/components/apimgt/org.wso2.carbon.apimgt.common.gateway/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.common.gateway/pom.xml index bf96af9919d9..f8a4500044b1 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.common.gateway/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.common.gateway/pom.xml @@ -3,7 +3,7 @@ org.wso2.carbon.apimgt apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml 4.0.0 diff --git a/components/apimgt/org.wso2.carbon.apimgt.common.jms/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.common.jms/pom.xml index bfb09c9381ec..c31d5bdc7397 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.common.jms/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.common.jms/pom.xml @@ -4,7 +4,7 @@ org.wso2.carbon.apimgt apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml 4.0.0 diff --git a/components/apimgt/org.wso2.carbon.apimgt.core/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.core/pom.xml index ec1b702876a6..58d09b6153ee 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.core/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.core/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.apimgt apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.devops.impl/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.devops.impl/pom.xml index f890de9aa0bd..4f294322540c 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.devops.impl/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.devops.impl/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.eventing.hub/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.eventing.hub/pom.xml index 97dfcb043a9d..3620426bfa3b 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.eventing.hub/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.eventing.hub/pom.xml @@ -20,7 +20,7 @@ apimgt org.wso2.carbon.apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.eventing/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.eventing/pom.xml index 2768f478038d..ea4253c43cf5 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.eventing/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.eventing/pom.xml @@ -20,7 +20,7 @@ apimgt org.wso2.carbon.apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.gateway/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.gateway/pom.xml index 6ef2c2f1bcfe..bc0503ca78fc 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.gateway/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.gateway/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.apimgt apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.impl/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.impl/pom.xml index 4a1be136b41a..89a0d82297f5 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.impl/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.impl/pom.xml @@ -12,7 +12,7 @@ org.wso2.carbon.apimgt apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.internal.service/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.internal.service/pom.xml index d25a47c7cc1e..c6a64a228eba 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.internal.service/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.internal.service/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.jms.listener/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.jms.listener/pom.xml index e2fe49942657..11a2269d3f6a 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.jms.listener/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.jms.listener/pom.xml @@ -4,7 +4,7 @@ org.wso2.carbon.apimgt apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml 4.0.0 diff --git a/components/apimgt/org.wso2.carbon.apimgt.keymgt.client/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.keymgt.client/pom.xml index aa182cc384e5..f3ea6112c363 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.keymgt.client/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.keymgt.client/pom.xml @@ -16,7 +16,7 @@ org.wso2.carbon.apimgt apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.keymgt/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.keymgt/pom.xml index 4b29a4817566..01d041161042 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.keymgt/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.keymgt/pom.xml @@ -16,7 +16,7 @@ org.wso2.carbon.apimgt apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.notification/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.notification/pom.xml index 596bd1b12e22..10ba16f47aa6 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.notification/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.notification/pom.xml @@ -19,7 +19,7 @@ apimgt org.wso2.carbon.apimgt - 9.30.0 + 9.30.1-SNAPSHOT org.wso2.carbon.apimgt.notification 4.0.0 diff --git a/components/apimgt/org.wso2.carbon.apimgt.output.adapter.http/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.output.adapter.http/pom.xml index a5523e8cc2ad..f19e10bbe3e1 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.output.adapter.http/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.output.adapter.http/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.persistence/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.persistence/pom.xml index 45874faaafdf..8332fe6dac0f 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.persistence/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.persistence/pom.xml @@ -3,7 +3,7 @@ apimgt org.wso2.carbon.apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml 4.0.0 diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.admin.v1/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.admin.v1/pom.xml index b8e107596b89..697cb40ad73f 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.admin.v1/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.admin.v1/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.common/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.common/pom.xml index 25df7aa341b4..4f5fbafdf735 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.common/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.common/pom.xml @@ -17,7 +17,7 @@ org.wso2.carbon.apimgt apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.dcr/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.dcr/pom.xml index 562d31c56da2..f24080a63db6 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.dcr/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.dcr/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.devops/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.devops/pom.xml index c8e003acc1ac..60057815f680 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.devops/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.devops/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.gateway/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.gateway/pom.xml index a5101144e0d6..33855d9bd48a 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.gateway/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.gateway/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1.common/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1.common/pom.xml index 0e308665849a..3c6d561118e5 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1.common/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1.common/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1/pom.xml index 1ad210f15c3b..e978a908a7d8 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.v1/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog/pom.xml index 0f0f659b106e..14dcb3e48baa 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.store.v1/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.store.v1/pom.xml index a303777176ea..974b68ec8940 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.store.v1/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.store.v1/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.rest.api.util/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.rest.api.util/pom.xml index 75499b5a0307..3ce8d1bebd8d 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.rest.api.util/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.rest.api.util/pom.xml @@ -17,7 +17,7 @@ org.wso2.carbon.apimgt apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.solace/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.solace/pom.xml index 6d3f2b3d84ff..7a83ca77ecd5 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.solace/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.solace/pom.xml @@ -3,7 +3,7 @@ apimgt org.wso2.carbon.apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer/pom.xml index 39e29b359a78..86f0125cb5cd 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer/pom.xml @@ -19,7 +19,7 @@ apimgt org.wso2.carbon.apimgt - 9.30.0 + 9.30.1-SNAPSHOT 4.0.0 bundle diff --git a/components/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension/pom.xml index 91ace9797774..1ebd878ab321 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.tokenmgt/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.tokenmgt/pom.xml index b33b902c7ef1..8f20ab5bdffc 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.tokenmgt/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.tokenmgt/pom.xml @@ -16,7 +16,7 @@ org.wso2.carbon.apimgt apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/components/apimgt/org.wso2.carbon.apimgt.tracing/pom.xml b/components/apimgt/org.wso2.carbon.apimgt.tracing/pom.xml index ab2cd28ee440..82ea88bec5be 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.tracing/pom.xml +++ b/components/apimgt/org.wso2.carbon.apimgt.tracing/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/components/apimgt/pom.xml b/components/apimgt/pom.xml index 60ab227969c9..12497ca7ac0e 100644 --- a/components/apimgt/pom.xml +++ b/components/apimgt/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.apimgt carbon-apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../../pom.xml diff --git a/components/apimgt/samples/org.wso2.carbon.apimgt.samples.calculator/pom.xml b/components/apimgt/samples/org.wso2.carbon.apimgt.samples.calculator/pom.xml index efd5e1b04776..09d9244f6994 100644 --- a/components/apimgt/samples/org.wso2.carbon.apimgt.samples.calculator/pom.xml +++ b/components/apimgt/samples/org.wso2.carbon.apimgt.samples.calculator/pom.xml @@ -19,7 +19,7 @@ apimgt org.wso2.carbon.apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../../pom.xml diff --git a/components/apimgt/samples/org.wso2.carbon.apimgt.samples.pizzashack/pom.xml b/components/apimgt/samples/org.wso2.carbon.apimgt.samples.pizzashack/pom.xml index eb760d082e8f..dfdd2e7008a3 100644 --- a/components/apimgt/samples/org.wso2.carbon.apimgt.samples.pizzashack/pom.xml +++ b/components/apimgt/samples/org.wso2.carbon.apimgt.samples.pizzashack/pom.xml @@ -20,7 +20,7 @@ apimgt org.wso2.carbon.apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.cache.invalidation.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.cache.invalidation.feature/pom.xml index 779af9ade49b..7964ea5654fd 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.cache.invalidation.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.cache.invalidation.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.core.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.core.feature/pom.xml index ac05eefef719..f053b2d67aaa 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.core.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.core.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.eventing.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.eventing.feature/pom.xml index f21f0448df74..e638ca3e3cb1 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.eventing.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.eventing.feature/pom.xml @@ -20,7 +20,7 @@ apimgt-feature org.wso2.carbon.apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.eventing.hub.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.eventing.hub.feature/pom.xml index 8f80aaaf6245..6b635fa43f4f 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.eventing.hub.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.eventing.hub.feature/pom.xml @@ -20,7 +20,7 @@ apimgt-feature org.wso2.carbon.apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.feature/pom.xml index 6d9a997c391e..71f8dc583731 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.gateway.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.gateway.feature/pom.xml index 9f705fdf76f2..64c983de11b5 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.gateway.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.gateway.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.internal.service.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.internal.service.feature/pom.xml index f0f3e8245232..6a602e2ef635 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.internal.service.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.internal.service.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.jms.listener.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.jms.listener.feature/pom.xml index f2111dffc922..8a3cfcadbbfb 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.jms.listener.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.jms.listener.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.keymanager.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.keymanager.feature/pom.xml index c4c592c8052a..9f0f95abd552 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.keymanager.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.keymanager.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.persistence.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.persistence.feature/pom.xml index da55f12c8dee..8b9e9d5b4a4f 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.persistence.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.persistence.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.rest.api.admin.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.rest.api.admin.feature/pom.xml index ca483b172332..5cf99a6f5dfd 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.rest.api.admin.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.rest.api.admin.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.rest.api.dcr.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.rest.api.dcr.feature/pom.xml index 83f41df20afd..66bf5593e273 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.rest.api.dcr.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.rest.api.dcr.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.rest.api.devops.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.rest.api.devops.feature/pom.xml index 40c201cb5fd0..cdebe7d7d9bd 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.rest.api.devops.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.rest.api.devops.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.rest.api.gateway.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.rest.api.gateway.feature/pom.xml index 80879196d455..5dfe727afa2a 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.rest.api.gateway.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.rest.api.gateway.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.feature/pom.xml index ebed54e97bb9..d71035d8b6f6 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.rest.api.publisher.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog.feature/pom.xml index 8559cced883a..df1ec0a4f831 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.rest.api.service.catalog.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.rest.api.store.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.rest.api.store.feature/pom.xml index 35480817154e..0980814180e1 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.rest.api.store.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.rest.api.store.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.scxml.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.scxml.feature/pom.xml index 24c6d4c6ebba..87f799eb97bd 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.scxml.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.scxml.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer.feature/pom.xml index 4f6415db62d5..d476eb1e4ac8 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.throttle.policy.deployer.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension.feature/pom.xml index b2d454394ce2..3e076a425f05 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.throttling.siddhi.extension.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.tokenmgt.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.tokenmgt.feature/pom.xml index 042a1b40f9b8..e8dd3dfd9860 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.tokenmgt.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.tokenmgt.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.apimgt apimgt-feature - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/features/apimgt/org.wso2.carbon.apimgt.tracing.feature/pom.xml b/features/apimgt/org.wso2.carbon.apimgt.tracing.feature/pom.xml index 87335a32b619..bbe6faf126ae 100644 --- a/features/apimgt/org.wso2.carbon.apimgt.tracing.feature/pom.xml +++ b/features/apimgt/org.wso2.carbon.apimgt.tracing.feature/pom.xml @@ -21,7 +21,7 @@ apimgt-feature org.wso2.carbon.apimgt - 9.30.0 + 9.30.1-SNAPSHOT 4.0.0 diff --git a/features/apimgt/pom.xml b/features/apimgt/pom.xml index d3e35e8c6755..2f7f6176e1df 100644 --- a/features/apimgt/pom.xml +++ b/features/apimgt/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.apimgt carbon-apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../../pom.xml diff --git a/pom.xml b/pom.xml index 1523b5f33a59..cc470180b182 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.wso2.carbon.apimgt carbon-apimgt pom - 9.30.0 + 9.30.1-SNAPSHOT WSO2 Carbon - API Management Aggregator POM https://wso2.org @@ -21,7 +21,7 @@ https://github.com/wso2/carbon-apimgt.git scm:git:https://github.com/wso2/carbon-apimgt.git scm:git:https://github.com/wso2/carbon-apimgt.git - v9.30.0 + HEAD @@ -2012,7 +2012,7 @@ 1.3 - 9.30.0 + 9.30.1-SNAPSHOT [9.0.0, 10.0.0) 5.3.13 diff --git a/service-stubs/apimgt/org.wso2.carbon.apimgt.keymgt.stub/pom.xml b/service-stubs/apimgt/org.wso2.carbon.apimgt.keymgt.stub/pom.xml index 48deb242fd29..f30bdee5e988 100644 --- a/service-stubs/apimgt/org.wso2.carbon.apimgt.keymgt.stub/pom.xml +++ b/service-stubs/apimgt/org.wso2.carbon.apimgt.keymgt.stub/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.apimgt apimgt-stubs - 9.30.0 + 9.30.1-SNAPSHOT ../pom.xml diff --git a/service-stubs/apimgt/pom.xml b/service-stubs/apimgt/pom.xml index fe08318d41ae..2d6b133a1575 100644 --- a/service-stubs/apimgt/pom.xml +++ b/service-stubs/apimgt/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.apimgt carbon-apimgt - 9.30.0 + 9.30.1-SNAPSHOT ../../pom.xml