Fixing the conflict

application-manager-new
geethkokila 7 years ago
commit 6ac2f958d8

@ -0,0 +1,62 @@
<!--
~ Copyright (c) 2018, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.wso2.iot</groupId>
<artifactId>wso2iot-parent</artifactId>
<version>3.2.0-update1-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wso2is-cxf-filters</artifactId>
<packaging>pom</packaging>
<name>Identity Server : cxf filters</name>
<build>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<!-- Download JWT Bearer Grant jar from nexus and copy to the oauth2GrantCopied folder-->
<execution>
<id>download_oauth_client_authenticaion_proxy_jar</id>
<phase>compile</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.wso2.carbon.identity.inbound.auth.oauth2</groupId>
<artifactId>org.wso2.carbon.identity.oauth.client.authn.filter</artifactId>
<version>${identity.inbound.auth.oauth.version}</version>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>${basedir}/target/cxfFilters/jar
</outputDirectory>
<includes>**/*.jar</includes>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

@ -171,6 +171,26 @@
</replacements>
</configuration>
</execution>
<!-- Replace Consent Mgt Datasource Confgs -->
<execution>
<id>replace-for-consent</id>
<phase>package</phase>
<goals>
<goal>replace</goal>
</goals>
<configuration>
<file>${basedir}/../p2-profile/iot-core-profile/target/wso2carbon-core-${carbon.kernel.version}/wso2/conf/consent-mgt-config.xml</file>
<replacements>
<replacement>
<xpath>/ConsentManager/DataSource/Name</xpath>
<token>(jdbc/WSO2CarbonDB)</token>
<value>jdbc/WSO2AM_DB</value>
</replacement>
</replacements>
</configuration>
</execution>
<!-- Replace Datasource, Scope mpl classes and OAuth callback class in identity.xml -->
<!-- Replace the Datasource in the thrift-authentication.xml file -->
@ -473,7 +493,33 @@
</tasks>
</configuration>
</execution>
<execution>
<!-- Creating API Management schema -->
<id>create-user-consent-schema</id>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<echo message="########### Create User Consent H2 Schema ###########" />
<property name="db.dir" value="target/wso2carbon-core-${carbon.kernel.version}/repository/database" />
<property name="userid" value="wso2carbon" />
<property name="password" value="wso2carbon" />
<property name="dbURL" value="jdbc:h2:file:${basedir}/${db.dir}/WSO2AM_DB;DB_CLOSE_ON_EXIT=FALSE" />
<sql driver="org.h2.Driver" url="${dbURL}" userid="${userid}" password="${password}" autocommit="true" onerror="continue">
<classpath refid="maven.dependency.classpath" />
<classpath refid="maven.compile.classpath" />
<classpath refid="maven.runtime.classpath" />
<fileset file="${basedir}/../p2-profile/iot-core-profile/target/wso2carbon-core-${carbon.kernel.version}/dbscripts/consent/h2.sql" />
</sql>
<echo message="##################### END ####################" />
</tasks>
</configuration>
</execution>
<execution>
<!-- Creating App Management schema -->
<id>create-app-mgt-schema</id>

@ -386,7 +386,6 @@
<fileMode>644</fileMode>
</fileSet>
<!--Copying privacy and cookie policies -->
<fileSet>
@ -398,6 +397,13 @@
</excludes>
</fileSet>
<!--copy the cxf filters to cxf-runtime-->
<fileSet>
<directory>../cxf-filters/target/cxfFilters/jar</directory>
<outputDirectory>${pom.artifactId}-${pom.version}/wso2/lib/runtimes/cxf</outputDirectory>
</fileSet>
<!-- Copying APP Manager Publisher and Store Jaggery apps -->
<fileSet>
<directory>
@ -1130,15 +1136,6 @@
<filtered>true</filtered>
</fileSet>
<fileSet>
<directory>src/broker/resources/STRATOS_ROOT</directory>
<outputDirectory>
${pom.artifactId}-${pom.version}/wso2/broker/repository/deployment/server/webapps/STRATOS_ROOT
</outputDirectory>
<fileMode>644</fileMode>
<directoryMode>775</directoryMode>
</fileSet>
<fileSet>
<directory>../p2-profile/broker-profile/target/wso2carbon-core-${carbon.kernel.version}/wso2/components
</directory>
@ -1325,6 +1322,11 @@
<fileMode>644</fileMode>
</file>
<file>
<source>../p2-profile/iot-core-profile/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/security/balana-config.xml</source>
<outputDirectory>${pom.artifactId}-${pom.version}/conf/security/</outputDirectory>
</file>
<file>
<source>src/core/LICENSE.txt</source>
<outputDirectory>${pom.artifactId}-${pom.version}</outputDirectory>
@ -1658,13 +1660,13 @@
<fileMode>755</fileMode>
</file>
<file>
<source>target/webapp-temp/client-registration#v0.11.war</source>
<outputDirectory>
${pom.artifactId}-${pom.version}/repository/deployment/server/webapps
</outputDirectory>
<fileMode>755</fileMode>
</file>
<!--<file>-->
<!--<source>target/webapp-temp/client-registration#v0.11.war</source>-->
<!--<outputDirectory>-->
<!--${pom.artifactId}-${pom.version}/repository/deployment/server/webapps-->
<!--</outputDirectory>-->
<!--<fileMode>755</fileMode>-->
<!--</file>-->
<file>
<source>target/webapp-temp/api#identity#entitlement.war</source>
<outputDirectory>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 523 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 233 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

@ -1,69 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head> <script type="text/javascript" src="../../carbon/googleanalytics/js/jquery.min.js"></script>
<script type="text/javascript" src="../../carbon/googleanalytics/js/googleAnalyticsProcessor.js"></script>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<title>StratosLive</title>
<link href="style.css" rel="stylesheet" type="text/css" media="all" />
<link rel="icon" href="images/favicon.ico" type="image/x-icon"/>
<meta name="description" content="WSO2 is the lean enterprise middleware company, delivering the only complete open source enterprise SOA middleware stack available internally and in the cloud." />
<meta name="keywords" content="cloud, platform-as-a-service, PaaS" />
</head>
<body>
<div id="main-content">
<div id="header">
<div class="logo"><img src="images/logo.gif"/></div>
</div>
<div id="content">
<div class="intro">
<div class="register">
<a href="https://stratoslive.wso2.com/carbon/tenant-register/select_domain.jsp"><img src="images/register.gif"/></a>
<a href="../carbon/sso-acs/redirect_ajaxprocessor.jsp"><img src="images/sign-in.gif"/></a>
</div>
<p>WSO2 MB brings Event Driven Architecture capabilities to WSO2 Carbon platform. It provides WS-Eventing, JMS and SQS interfaces to client. It uses Apache Qpid as the underling broker which supports AMQP.</p>
</div>
<div class="clear"></div>
<div class="features">
<h2>Features</h2>
<div class="feature feature-left">
<img src="images/feature-01-icon.gif"/>
<h2>Bring CEP to SOA</h2>
<p>
Bring CEP to SOA by processing XML events and produce results as XML events.
</p>
</div>
<div class="feature">
<img src="images/feature-02-icon.gif"/>
<h2>Registry Storage</h2>
<p>
Ability to define different event streams, queries and out put streams and store them in the registry as a bucket.
</p>
</div>
<div class="feature">
<img src="images/feature-03-icon.gif"/>
<h2>Esper and Fusion</h2>
<p>
Support Esper and fusion back end runtimes.
</p>
</div>
<div class="clear"></div>
</div>
<div class="clear"></div>
</div>
<div id="footer">
<div class="footer-links">
<a href="http://www.wso2.com/cloud/services/terms-of-use" target="_blank">Terms of Service</a> | <a href="http://www.wso2.com/cloud/services/privacy-policy" target="_blank">Privacy Policy</a> | <a href="http://www.wso2.com/cloud/services/support" target="_blank">Support</a>
</div>
<div class="powered">
<span>Powered by</span><img src="images/powered-logo.gif" alt="ESB"/>
</div>
<span class="copyright">&copy;stratoslive.wso2.com copyright 2010-2011 WSO2, Inc. </span>
</div>
</div>
</div>
</body>
</html>

@ -1,46 +0,0 @@
body { font-family: "Calibri","Lucida Grande","Lucida Sans","Microsoft Sans Serif","Lucida Sans Unicode","Verdana","Sans-serif","trebuchet ms"; font-size: .85em; line-height: 135%; color: #434343; margin: 0px; padding: 0px; background-color: #94C8EC;}
p { }
td { }
a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }
a:active { text-decoration: none; }
a img { border: 0px; }
div
.clear { clear: both; }
div#main-content { width: 960px; margin: auto; background-image: url(images/top.gif); background-repeat: no-repeat; background-position: left top; }
div#header { height: 125px; }
div.logo { float: left; margin-top: 35px; }
div.sign-in { float: right; margin-top: 35px; }
div#content { background-color: #ffffff; background-image: url(images/content-bg.gif); background-repeat: repeat-y; background-position: left top; }
div.intro { padding: 35px; padding-top: 10px; padding-bottom: 20px; font-size: 125%; line-height: 130%; float: left; background-image: url(images/intro-bg.gif); background-position: left bottom; background-repeat: no-repeat; }
div.intro p { margin-top: 0px; margin-bottom: 0px; }
div.register { float: right; margin-left: 40px; margin-top: 0px; margin-right: 0px; width: 400px; text-align: center;}
div.register a img { margin-bottom: 7px; }
div.register a:hover img { opacity:0.7;filter:alpha(opacity=70) }
div.features { margin-top: 20px; }
div.features h2 { margin-top: 0px; margin-bottom: 0px; font-size: 24px; color: #003A63; margin-left: 35px; margin-right: 35px; border-bottom: solid 0px #79BDE8; padding-bottom: 10px; background-image: url(images/title-bg.gif); background-repeat: no-repeat; background-position: left bottom; }
div.feature { float: left; width: 230px; margin-left: 30px; margin-top: 7px; padding: 20px; text-align: left; }
div.feature img { float: left; margin-right: 10px; width: 64px; }
div.feature h2 { margin-top: 0px; margin-bottom: 7px; color: #0499CC; font-size: 140%; line-height: 110%; font-weight: normal; border-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-bottom: 0px; background-image: none; }
div.feature p { margin-top: 0px; padding-top: 0px; }
div.feature-left { margin-left: 41px; }
div#footer { height: 80px; background-image: url(images/bottom.gif); background-position: left top; background-repeat: no-repeat; padding-top: 25px; }
div#footer div.powered { color: #333333; float: right; font-size: 85%; margin-right: 10px; }
div#footer div.powered span { float: left; line-height: 23px; margin-right: 5px; }
div.footer-links { padding-bottom: 5px; padding-left: 10px; border-bottom: solid 1px #4E84C4; margin-bottom: 10px; color: #4E84C4; }
div#footer span.copyright { font-size: 90%; padding-left: 10px; }

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<?pde version="3.5"?>
<product name="Carbon Product" uid="carbon.product.id" id="carbon.product" application="carbon.application" version="4.4.17" useFeatures="true" includeLaunchers="true">
<product name="Carbon Product" uid="carbon.product.id" id="carbon.product" application="carbon.application" version="4.4.25" useFeatures="true" includeLaunchers="true">
<configIni use="default">
</configIni>
@ -13,7 +13,7 @@
</plugins>
<features>
<feature id="org.wso2.carbon.core.runtime" version="4.4.17"/>
<feature id="org.wso2.carbon.core.runtime" version="4.4.25"/>
</features>
<configurations>

@ -185,6 +185,7 @@
</featureArtifactDef>
<!-- ************** END - User Management ********* -->
<!-- ************** START - Deployment Synchronizer ********* -->
<featureArtifactDef>
org.wso2.carbon.commons:org.wso2.carbon.deployment.synchronizer.feature:${carbon.commons.version}
@ -276,6 +277,9 @@
<featureArtifactDef>
org.wso2.carbon.data:org.wso2.carbon.datasource.reader.cassandra.server.feature:${carbon.data.version}
</featureArtifactDef>
<featureArtifactDef>
org.wso2.carbon.data:org.wso2.carbon.datasource.reader.mongo.server.feature:${carbon.data.version}
</featureArtifactDef>
<!-- END - Data source related -->
<!-- ************** START - EVENT PROCESSING FEATURES *********** -->
@ -294,6 +298,9 @@
<featureArtifactDef>
org.wso2.carbon.event-processing:org.wso2.carbon.event.flow.feature:${carbon.event-processing.version}
</featureArtifactDef>
<featureArtifactDef>
org.wso2.carbon.event-processing:org.wso2.carbon.event.processor.server.feature:${carbon.event-processing.version}
</featureArtifactDef>
<featureArtifactDef>
org.wso2.carbon.analytics-common:org.wso2.carbon.event.statistics.feature:${carbon.analytics.common.version}
</featureArtifactDef>
@ -588,6 +595,17 @@
</feature>
<!-- ************** END - User Management ********* -->
<!--Identity governance-->
<!--<feature>-->
<!--<id>org.wso2.carbon.identity.governance.server.feature.group</id>-->
<!--<version>${carbon.identity.governance.version}</version>-->
<!--</feature>-->
<!--<feature>-->
<!--<id>org.wso2.carbon.identity.captcha.server.feature.group</id>-->
<!--<version>${carbon.identity.governance.version}</version>-->
<!--</feature>-->
<!--Identity governance ends-->
<!-- ************** START - Deployment Synchronizer ********* -->
<feature>
<id>org.wso2.carbon.deployment.synchronizer.feature.group</id>
@ -699,6 +717,13 @@
<id>org.wso2.carbon.datasource.reader.cassandra.server.feature.group</id>
<version>${carbon.data.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.datasource.reader.mongo.server.feature.group</id>
<version>${carbon.data.version}</version>
</feature>
<!-- END - Data source related -->
<!-- ************** START - EVENT PROCESSING FEATURES ************ -->

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<?pde version="3.5"?>
<product name="Carbon Product" uid="carbon.product.id" id="carbon.product" application="carbon.application" version="4.4.17" useFeatures="true" includeLaunchers="true">
<product name="Carbon Product" uid="carbon.product.id" id="carbon.product" application="carbon.application" version="4.4.25" useFeatures="true" includeLaunchers="true">
<configIni use="default">
</configIni>
@ -13,7 +13,7 @@
</plugins>
<features>
<feature id="org.wso2.carbon.core.runtime" version="4.4.17"/>
<feature id="org.wso2.carbon.core.runtime" version="4.4.25"/>
</features>
<configurations>

@ -103,18 +103,9 @@
<featureArtifactDef>
org.wso2.carbon.commons:org.wso2.carbon.system.statistics.feature:${carbon.commons.version}
</featureArtifactDef>
<featureArtifactDef>
org.wso2.carbon.commons:org.wso2.carbon.soaptracer.feature:${carbon.commons.version}
</featureArtifactDef>
<featureArtifactDef>
org.wso2.carbon.identity.framework:org.wso2.carbon.security.mgt.feature:${carbon.identity.framework.version}
</featureArtifactDef>
<featureArtifactDef>
org.wso2.carbon.commons:org.wso2.carbon.message.flows.feature:${carbon.commons.version}
</featureArtifactDef>
<featureArtifactDef>
org.wso2.carbon.commons:org.wso2.carbon.tryit.feature:${carbon.commons.version}
</featureArtifactDef>
<featureArtifactDef>
org.wso2.carbon.registry:org.wso2.carbon.registry.core.feature:${carbon.registry.version}
</featureArtifactDef>
@ -124,24 +115,15 @@
<featureArtifactDef>
org.wso2.carbon.registry:org.wso2.carbon.registry.resource.properties.feature:${carbon.registry.version}
</featureArtifactDef>
<featureArtifactDef>
org.wso2.carbon.commons:org.wso2.carbon.wsdl.tools.feature:${carbon.commons.version}
</featureArtifactDef>
<featureArtifactDef>
org.wso2.carbon.identity.user.ws:org.wso2.carbon.um.ws.service.feature:${carbon.um.ws.version}
</featureArtifactDef>
<featureArtifactDef>
org.wso2.carbon.messaging:org.wso2.carbon.andes.feature:${carbon.messaging.version}
</featureArtifactDef>
<featureArtifactDef>
org.wso2.carbon.multitenancy:org.wso2.carbon.tenant.common.server.feature:${carbon.multitenancy.version}
org.wso2.carbon.multitenancy:org.wso2.carbon.tenant.common.feature:${carbon.multitenancy.version}
</featureArtifactDef>
<featureArtifactDef>
org.wso2.carbon.commons:org.wso2.carbon.tenant.mgt.common.feature:${carbon.commons.version}
</featureArtifactDef>
<featureArtifactDef>
org.wso2.carbon.multitenancy:org.wso2.carbon.tenant.usage.agent.feature:${carbon.multitenancy.version}
</featureArtifactDef>
<featureArtifactDef>
org.wso2.carbon.multitenancy:org.wso2.carbon.tenant.throttling.agent.feature:${carbon.multitenancy.version}
</featureArtifactDef>
@ -157,6 +139,12 @@
<featureArtifactDef>
org.wso2.carbon.identity.framework:org.wso2.carbon.identity.core.feature:${carbon.identity.framework.version}
</featureArtifactDef>
<featureArtifactDef>
org.wso2.carbon.deployment:org.wso2.carbon.webapp.mgt.server.feature:${carbon.deployment.version}
</featureArtifactDef>
<featureArtifactDef>
org.wso2.carbon.deployment:org.wso2.carbon.as.runtimes.cxf.feature:${carbon.deployment.version}
</featureArtifactDef>
<!--carbon core features -->
<featureArtifactDef>
org.wso2.carbon:org.wso2.carbon.core.feature:${carbon.kernel.version}
@ -173,9 +161,6 @@
<featureArtifactDef>
org.wso2.ciphertool:org.wso2.ciphertool.feature:${cipher.tool.version}
</featureArtifactDef>
<featureArtifactDef>
org.wso2.carbon.analytics.shared:org.wso2.carbon.analytics.shared.data.agents.log4j.feature:${analytics.shared.version}
</featureArtifactDef>
<featureArtifactDef>
org.wso2.carbon.devicemgt-plugins:org.wso2.carbon.andes.extensions.device.mgt.mqtt.authorization.feature:${carbon.device.mgt.plugin.version}
</featureArtifactDef>
@ -241,23 +226,6 @@
<id>org.wso2.carbon.system.statistics.feature.group</id>
<version>${carbon.commons.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.soaptracer.feature.group</id>
<version>${carbon.commons.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.security.mgt.feature.group</id>
<version>${carbon.identity.framework.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.message.flows.feature.group</id>
<version>${carbon.commons.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.tryit.feature.group</id>
<version>${carbon.commons.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.registry.contentsearch.feature.group</id>
<version>${carbon.registry.version}</version>
@ -271,14 +239,6 @@
</id>
<version>${carbon.registry.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.wsdl.tools.feature.group</id>
<version>${carbon.commons.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.um.ws.service.feature.group</id>
<version>${carbon.um.ws.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.messaging.andes.feature.group</id>
<version>${carbon.messaging.version}</version>
@ -290,22 +250,20 @@
</feature>
<!-- multitenancy feature groups -->
<feature>
<id>org.wso2.carbon.tenant.common.server.feature.group</id>
<id>org.wso2.carbon.tenant.common.feature.group</id>
<version>${carbon.multitenancy.version}</version>
</feature>
<feature>
<id>
org.wso2.carbon.identity.authenticator.saml2.sso.server.feature.group
</id>
<version>${identity.carbon.auth.saml2.version}</version>
<id>org.wso2.carbon.tenant.throttling.agent.feature.group</id>
<version>${carbon.multitenancy.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.tenant.usage.agent.feature.group</id>
<version>${carbon.multitenancy.version}</version>
<id>org.wso2.carbon.security.mgt.feature.group</id>
<version>${carbon.identity.framework.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.tenant.throttling.agent.feature.group</id>
<version>${carbon.multitenancy.version}</version>
<id>org.wso2.carbon.identity.authenticator.saml2.sso.feature.group</id>
<version>${identity.carbon.auth.saml2.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.user.mgt.feature.group</id>
@ -329,14 +287,17 @@
<version>${cipher.tool.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.analytics.shared.data.agents.log4j.feature.group</id>
<version>${analytics.shared.version}</version>
<id>org.wso2.carbon.webapp.mgt.server.feature.group</id>
<version>${carbon.deployment.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.as.runtimes.cxf.feature.group</id>
<version>${carbon.deployment.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.andes.extensions.device.mgt.mqtt.authorization.feature.group</id>
<version>${carbon.device.mgt.plugin.version}</version>
</feature>
</features>
</configuration>
</execution>

@ -2,7 +2,7 @@
<?pde version="3.5"?>
<product name="Carbon Product" uid="carbon.product.id" id="carbon.product" application="carbon.application"
version="4.4.17" useFeatures="true" includeLaunchers="true">
version="4.4.25" useFeatures="true" includeLaunchers="true">
<configIni use="default">
</configIni>
@ -14,7 +14,7 @@ version="4.4.17" useFeatures="true" includeLaunchers="true">
</plugins>
<features>
<feature id="org.wso2.carbon.core.runtime" version="4.4.17"/>
<feature id="org.wso2.carbon.core.runtime" version="4.4.25"/>
</features>
<configurations>

@ -99,6 +99,15 @@
<publishArtifactRepository>true</publishArtifactRepository>
<featureArtifacts>
<featureArtifactDef>
org.wso2.carbon.identity.governance:org.wso2.carbon.identity.captcha.server.feature:${identity.governance.version}
</featureArtifactDef>
<featureArtifactDef>
org.wso2.carbon.identity.governance:org.wso2.carbon.identity.governance.feature:${identity.governance.version}
</featureArtifactDef>
<featureArtifactDef>
org.wso2.carbon.identity.event.handler.accountlock:org.wso2.carbon.identity.handler.event.account.lock.feature:${identity.event.handler.account.lock.version}
</featureArtifactDef>
<!-- Device Management Features -->
<featureArtifactDef>
org.wso2.carbon.devicemgt:org.wso2.carbon.device.mgt.feature:${carbon.device.mgt.version}
@ -244,6 +253,10 @@
<featureArtifactDef>
org.wso2.carbon.apimgt:org.wso2.carbon.forum.server.feature:${carbon.api.mgt.version}
</featureArtifactDef>
<featureArtifactDef>
org.wso2.carbon.apimgt:org.wso2.carbon.apimgt.publisher.feature:${carbon.api.mgt.version}
</featureArtifactDef>
<!-- End of API Management Features -->
<!-- Carbon Commons Features -->
@ -292,8 +305,13 @@
<featureArtifactDef>
org.wso2.carbon.identity.inbound.auth.oauth2:org.wso2.carbon.identity.oauth.feature:${identity.inbound.auth.oauth.version}
</featureArtifactDef>
<featureArtifactDef>
org.wso2.carbon.identity:org.wso2.carbon.identity.provider.server.feature:${identity.inbound.auth.openid.version}
org.wso2.carbon.identity.framework:org.wso2.carbon.identity.event.server.feature:${carbon.identity.framework.version}
</featureArtifactDef>
<featureArtifactDef>
org.wso2.carbon.identity.inbound.auth.openid:org.wso2.carbon.identity.provider.server.feature:${identity.inbound.auth.openid.version}
</featureArtifactDef>
<featureArtifactDef>
org.wso2.carbon.identity.framework:org.wso2.carbon.identity.thrift.authentication.feature:${carbon.identity.framework.version}
@ -353,10 +371,10 @@
</featureArtifactDef>
<!-- Authenticators -->
<featureArtifactDef>
org.wso2.carbon.identity:org.wso2.carbon.identity.application.authenticator.requestpath.basicauth.server.feature:${identity.outbound.auth.requestpath.basicauth.version}
org.wso2.carbon.identity.local.auth.requestpath.basic:org.wso2.carbon.identity.application.authenticator.requestpath.basicauth.server.feature:${identity.outbound.auth.requestpath.basicauth.version}
</featureArtifactDef>
<featureArtifactDef>
org.wso2.carbon.identity:org.wso2.carbon.identity.application.authenticator.requestpath.oauth.server.feature:${identity.outbound.auth.requestpath.oauth.version}
org.wso2.carbon.identity.local.auth.requestpath.oauth:org.wso2.carbon.identity.application.authenticator.requestpath.oauth.server.feature:${identity.outbound.auth.requestpath.oauth.version}
</featureArtifactDef>
<featureArtifactDef>
org.wso2.carbon.identity.application.auth.basic:org.wso2.carbon.identity.application.authenticator.basicauth.server.feature:${identity.local.auth.basicauth.version}
@ -377,7 +395,15 @@
org.wso2.carbon.identity.metadata.saml2:org.wso2.carbon.identity.sp.metadata.saml2.server.feature:${identity.metadata.saml2.version}
</featureArtifactDef>
<!--<featureArtifactDef>-->
<!--org.wso2.carbon.identity.framework:org.wso2.carbon.identity.base:${carbon.identity.framework.version}-->
<!--org.wso2.carbon.identity.framework:org.wso2.carbon.identity.mgt.server.feature:${carbon.identity.framework.version}-->
<!--</featureArtifactDef>-->
<!--<featureArtifactDef>-->
<!--org.wso2.carbon.identity.governance:org.wso2.carbon.identity.governance.server.feature:${carbon.identity.governance.version}-->
<!--</featureArtifactDef>-->
<!--<featureArtifactDef>-->
<!--org.wso2.carbon.identity.governance:org.wso2.carbon.identity.captcha.server.feature:${carbon.identity.governance.version}-->
<!--</featureArtifactDef>-->
<!-- End of Identity Features -->
@ -735,9 +761,19 @@
</featureArtifactDef>
<!--JWT grant type handler-->
<featureArtifactDef>
org.wso2.carbon.identity:org.wso2.carbon.identity.oauth2.grant.jwt.feature:${identity.jwt.extension.version}
org.wso2.carbon.extension.identity.oauth2.grantType.jwt:org.wso2.carbon.extension.identity.oauth2.jwt.feature:${identity.jwt.extension.version}
</featureArtifactDef>
<!-- Geo Dashboard feature -->
<!--Consent management feature-->
<featureArtifactDef>
org.wso2.carbon.consent.mgt:org.wso2.carbon.consent.mgt.server.feature:${carbon.consent.mgt.version}
</featureArtifactDef>
<!--Database utils feature-->
<featureArtifactDef>
org.wso2.carbon.utils:org.wso2.carbon.database.utils.feature:${org.wso2.carbon.database.utils.version}
</featureArtifactDef>
<!--Geo Dashboard feature-->
<featureArtifactDef>
org.wso2.carbon.devicemgt-plugins:org.wso2.carbon.iot.geo.dashboard.feature:${carbon.device.mgt.plugin.version}
</featureArtifactDef>
@ -851,7 +887,20 @@
</destination>
<deleteOldProfileFiles>true</deleteOldProfileFiles>
<features>
<feature>
<id>org.wso2.carbon.identity.captcha.server.feature.group</id>
<version>${identity.governance.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.identity.governance.feature.group</id>
<version>${identity.governance.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.identity.handler.event.account.lock.feature.group</id>
<version>${identity.event.handler.account.lock.version}</version>
</feature>
<!-- IoTServer Features -->
<feature>
<id>org.wso2.carbon.identity.inbound.metadata.saml2.server.feature.group</id>
<version>0.1.1</version>
@ -1137,6 +1186,12 @@
<id>org.wso2.carbon.forum.server.feature.group</id>
<version>${carbon.api.mgt.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.apimgt.publisher.feature.group</id>
<version>${carbon.api.mgt.version}</version>
</feature>
<!-- End of API Management Features -->
<!-- Carbon Analytics Common Features -->
@ -1230,6 +1285,12 @@
<id>org.wso2.carbon.user.mgt.feature.group</id>
<version>${carbon.identity.framework.version}</version>
</feature>
<!--<feature>-->
<!--<id>org.wso2.carbon.identity.mgt.server.feature.group</id>-->
<!--<version>${carbon.identity.framework.version}</version>-->
<!--</feature>-->
<feature>
<id>org.wso2.carbon.directory.service.mgr.server.feature.group
</id>
@ -1310,6 +1371,17 @@
</feature>
<!-- End of Identity Features -->
<!--Identity governance-->
<!--<feature>-->
<!--<id>org.wso2.carbon.identity.governance.server.feature.group</id>-->
<!--<version>${carbon.identity.governance.version}</version>-->
<!--</feature>-->
<!--<feature>-->
<!--<id>org.wso2.carbon.identity.captcha.server.feature.group</id>-->
<!--<version>${carbon.identity.governance.version}</version>-->
<!--</feature>-->
<!--Identity governance ends-->
<!-- Registry Features -->
<feature>
<id>org.wso2.carbon.registry.core.feature.group</id>
@ -1492,8 +1564,25 @@
<id>org.wso2.carbon.identity.oauth.feature.group</id>
<version>${identity.inbound.auth.oauth.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.identity.event.server.feature.group</id>
<version>${carbon.identity.framework.version}</version>
</feature>
<!-- End of Identity Features -->
<!--Identity governance-->
<!--<feature>-->
<!--<id>org.wso2.carbon.identity.governance.server.feature.group</id>-->
<!--<version>${carbon.identity.governance.version}</version>-->
<!--</feature>-->
<!--<feature>-->
<!--<id>org.wso2.carbon.identity.captcha.server.feature.group</id>-->
<!--<version>${carbon.identity.governance.version}</version>-->
<!--</feature>-->
<!--Identity governance ends-->
<!-- Registry Features -->
<feature>
<id>org.wso2.carbon.registry.community.features.server.feature.group</id>
@ -1607,9 +1696,21 @@
</feature>
<!--jwt grant type handler-->
<feature>
<id>org.wso2.carbon.identity.oauth2.grant.jwt.feature.group</id>
<id>org.wso2.carbon.extension.identity.oauth2.jwt.feature.group</id>
<version>${identity.jwt.extension.version}</version>
</feature>
<!--Consent Management Feature-->
<feature>
<id>org.wso2.carbon.consent.mgt.server.feature.group</id>
<version>${carbon.consent.mgt.version}</version>
</feature>
<!--Database utils feature-->
<feature>
<id>org.wso2.carbon.database.utils.feature.group</id>
<version>${org.wso2.carbon.database.utils.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.device.mgt.cdmf.analytics.feature.group</id>
<version>${carbon.device.mgt.plugin.version}</version>
@ -1679,9 +1780,18 @@
<version>${carbon.identity.framework.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.identity.oauth2.grant.jwt.feature.group</id>
<id>org.wso2.carbon.extension.identity.oauth2.jwt.feature.group</id>
<version>${identity.jwt.extension.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.consent.mgt.server.feature.group</id>
<version>${carbon.consent.mgt.version}</version>
</feature>
<!--Database utils feature-->
<feature>
<id>org.wso2.carbon.database.utils.feature.group</id>
<version>${org.wso2.carbon.database.utils.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.tenant.common.feature.group</id>
<version>${carbon.multitenancy.version}</version>
@ -1767,6 +1877,10 @@
<id>org.wso2.carbon.identity.oauth.feature.group</id>
<version>${identity.inbound.auth.oauth.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.identity.event.server.feature.group</id>
<version>${carbon.identity.framework.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.identity.user.registration.server.feature.group</id>
<version>${carbon.identity.framework.version}</version>
@ -1780,6 +1894,10 @@
<id>org.wso2.carbon.user.mgt.feature.group</id>
<version>${carbon.identity.framework.version}</version>
</feature>
<!--<feature>-->
<!--<id>org.wso2.carbon.identity.mgt.server.feature.group</id>-->
<!--<version>${carbon.identity.framework.version}</version>-->
<!--</feature>-->
<feature>
<id>org.wso2.carbon.identity.core.feature.group</id>
<version>${carbon.identity.framework.version}</version>
@ -1844,6 +1962,10 @@
<id>org.wso2.carbon.identity.jwt.client.extension.feature.group</id>
<version>${carbon.device.mgt.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.consent.mgt.server.feature.group</id>
<version>${carbon.consent.mgt.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.identity.sso.saml.feature.group</id>
<version>${identity.inbound.auth.saml.version}</version>
@ -1993,6 +2115,10 @@
<id>org.wso2.carbon.identity.jwt.client.extension.feature.group</id>
<version>${carbon.device.mgt.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.consent.mgt.server.feature.group</id>
<version>${carbon.consent.mgt.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.device.mgt.analytics.data.publisher.feature.group</id>
<version>${carbon.device.mgt.version}</version>
@ -2039,9 +2165,14 @@
<version>${carbon.device.mgt.plugin.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.identity.oauth2.grant.jwt.feature.group</id>
<id>org.wso2.carbon.extension.identity.oauth2.jwt.feature.group</id>
<version>${identity.jwt.extension.version}</version>
</feature>
<!--Database utils feature-->
<feature>
<id>org.wso2.carbon.database.utils.feature.group</id>
<version>${org.wso2.carbon.database.utils.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.tenant.mgt.common.feature.group</id>
<version>${carbon.commons.version}</version>
@ -2199,6 +2330,10 @@
<id>org.wso2.carbon.identity.oauth.feature.group</id>
<version>${identity.inbound.auth.oauth.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.identity.event.server.feature.group</id>
<version>${carbon.identity.framework.version}</version>
</feature>
<feature>
<id>
org.wso2.carbon.identity.application.authenticator.basicauth.server.feature.group
@ -2225,6 +2360,7 @@
<id>org.wso2.carbon.identity.user.registration.server.feature.group</id>
<version>${carbon.identity.framework.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.deployment.synchronizer.feature.group</id>
<version>${carbon.commons.version}</version>
@ -2349,6 +2485,10 @@
<id>org.wso2.carbon.forum.server.feature.group</id>
<version>${carbon.api.mgt.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.apimgt.publisher.feature.group</id>
<version>${carbon.api.mgt.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.tenant.common.feature.group</id>
<version>${carbon.multitenancy.version}</version>
@ -2671,7 +2811,7 @@
<version>${carbon.device.mgt.plugin.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.identity.oauth2.grant.jwt.feature.group</id>
<id>org.wso2.carbon.extension.identity.oauth2.jwt.feature.group</id>
<version>${identity.jwt.extension.version}</version>
</feature>
<feature>
@ -2971,6 +3111,10 @@
<id>org.wso2.carbon.forum.server.feature.group</id>
<version>${carbon.api.mgt.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.apimgt.publisher.feature.group</id>
<version>${carbon.api.mgt.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.tenant.common.feature.group</id>
<version>${carbon.multitenancy.version}</version>

@ -39,9 +39,10 @@
<module>modules/features</module>
<module>modules/scripts</module>
<module>modules/tools</module>
<module>modules/cxf-filters</module>
<module>modules/p2-profile</module>
<module>modules/distribution</module>
<module>modules/integration</module>
<!--<module>modules/integration</module>-->
</modules>
<dependencyManagement>
@ -492,7 +493,6 @@
<artifactId>org.wso2.carbon.identity.jwt.client.extension</artifactId>
<version>${carbon.device.mgt.version}</version>
</dependency>
<!--MDM dependencies-->
<dependency>
<groupId>org.wso2.carbon.devicemgt-plugins</groupId>
@ -1460,7 +1460,7 @@
<properties>
<!--Carbon kernel versions-->
<carbon.kernel.version>4.4.17</carbon.kernel.version>
<carbon.kernel.version>4.4.25</carbon.kernel.version>
<carbon.kernel.version.range>[4.4.0, 4.5.0)</carbon.kernel.version.range>
<carbon.ui.menu.stratos.version>2.2.0</carbon.ui.menu.stratos.version>
@ -1497,63 +1497,68 @@
<javax.ws.rs.version>1.1.1</javax.ws.rs.version>
<!-- Carbon Commons -->
<carbon.commons.version>4.5.8</carbon.commons.version>
<carbon.commons.version>4.6.21</carbon.commons.version>
<!-- Carbon Deployment -->
<carbon.deployment.version>4.7.3</carbon.deployment.version>
<carbon.deployment.version>4.7.15</carbon.deployment.version>
<!-- Carbon Identity -->
<carbon.identity.framework.version>5.7.5</carbon.identity.framework.version>
<carbon.identity.framework.version>5.11.139</carbon.identity.framework.version>
<carbon.identity.framework.version.range>[5.2.0, 6.0.0)
</carbon.identity.framework.version.range>
<identity.local.auth.basicauth.version>5.3.1</identity.local.auth.basicauth.version>
<identity.inbound.auth.openid.version>5.1.1</identity.inbound.auth.openid.version>
<identity.inbound.auth.saml.version>5.3.1</identity.inbound.auth.saml.version>
<identity.carbon.auth.saml2.version>5.2.1</identity.carbon.auth.saml2.version>
<identity.inbound.auth.oauth.version>5.3.11</identity.inbound.auth.oauth.version>
<identity.carbon.auth.mutual.ssl.version>5.1.2</identity.carbon.auth.mutual.ssl.version>
<identity.user.ws.version>5.1.4</identity.user.ws.version>
<identity.outbound.auth.requestpath.basicauth.version>5.1.1
</identity.outbound.auth.requestpath.basicauth.version>
<identity.outbound.auth.requestpath.oauth.version>5.1.1
</identity.outbound.auth.requestpath.oauth.version>
<identity.outbound.auth.samlsso.version>5.1.4</identity.outbound.auth.samlsso.version>
<identity.metadata.saml2.version>1.0.0</identity.metadata.saml2.version>
<identity.local.auth.basicauth.version>5.3.7</identity.local.auth.basicauth.version>
<identity.inbound.auth.openid.version>5.2.5</identity.inbound.auth.openid.version>
<identity.inbound.auth.saml.version>5.4.4</identity.inbound.auth.saml.version>
<identity.carbon.auth.saml2.version>5.2.5</identity.carbon.auth.saml2.version>
<identity.inbound.auth.oauth.version>5.6.53</identity.inbound.auth.oauth.version>
<identity.carbon.auth.mutual.ssl.version>5.1.3</identity.carbon.auth.mutual.ssl.version>
<identity.user.ws.version>5.1.8</identity.user.ws.version>
<identity.outbound.auth.requestpath.basicauth.version>5.1.5</identity.outbound.auth.requestpath.basicauth.version>
<identity.outbound.auth.requestpath.oauth.version>5.1.4</identity.outbound.auth.requestpath.oauth.version>
<identity.outbound.auth.samlsso.version>5.1.12</identity.outbound.auth.samlsso.version>
<identity.metadata.saml2.version>1.0.5</identity.metadata.saml2.version>
<identity.inbound.metadata.saml2.version>0.1.1</identity.inbound.metadata.saml2.version>
<identity.application.authz.xacml>1.0.0</identity.application.authz.xacml>
<identity.application.authz.xacml>2.0.2</identity.application.authz.xacml>
<carbon.identity.governance.version>1.1.7</carbon.identity.governance.version>
<!--JWT grant type extension feature-->
<identity.jwt.extension.version>1.0.2</identity.jwt.extension.version>
<identity.jwt.extension.version>1.0.10</identity.jwt.extension.version>
<!--Consent Management feature-->
<carbon.consent.mgt.version>1.0.48</carbon.consent.mgt.version>
<!--Database utils version-->
<org.wso2.carbon.database.utils.version>2.0.6</org.wso2.carbon.database.utils.version>
<!-- Carbon Multi-tenancy -->
<carbon.multitenancy.version>4.6.1</carbon.multitenancy.version>
<carbon.multitenancy.version>4.6.8</carbon.multitenancy.version>
<!-- Carbon Registry -->
<carbon.registry.version>4.6.8</carbon.registry.version>
<carbon.registry.version>4.6.28</carbon.registry.version>
<!-- Carbon Governance -->
<carbon.governance.version>4.7.8</carbon.governance.version>
<carbon.governance.version>4.7.23</carbon.governance.version>
<!-- Carbon Device Management-->
<carbon.device.mgt.version>3.0.240</carbon.device.mgt.version>
<carbon.device.mgt.version.range>[3.0.0, 4.0.0)</carbon.device.mgt.version.range>
<carbon.device.mgt.version>3.1.3</carbon.device.mgt.version>
<carbon.device.mgt.version.range>[3.1.0, 4.0.0)</carbon.device.mgt.version.range>
<!-- IOT Device Management -->
<product.iot.version>${project.version}</product.iot.version>
<!-- Carbon Device Management Plugins-->
<carbon.device.mgt.plugin.version>4.0.136</carbon.device.mgt.plugin.version>
<carbon.device.mgt.plugin.version>4.1.1</carbon.device.mgt.plugin.version>
<!-- API Management -->
<carbon.api.mgt.version>6.1.109</carbon.api.mgt.version>
<carbon.api.mgt.version>6.2.170</carbon.api.mgt.version>
<carbon.api.mgt.version.range>(6.0.0,7.0.0]</carbon.api.mgt.version.range>
<!-- Carbon Mediation -->
<carbon.mediation.version>4.6.10</carbon.mediation.version>
<carbon.mediation.version>4.6.61</carbon.mediation.version>
<!-- Carbon Analytics Common (DAS) -->
<carbon.analytics.common.version>5.1.17</carbon.analytics.common.version>
<carbon.analytics.version>1.3.3</carbon.analytics.version>
<carbon.analytics.das.version>1.3.5</carbon.analytics.das.version>
<carbon.analytics.common.version>5.1.33</carbon.analytics.common.version>
<carbon.analytics.version>1.3.16</carbon.analytics.version>
<carbon.analytics.das.version>1.3.16</carbon.analytics.das.version>
<product.iot.analytics.version>${project.version}</product.iot.analytics.version>
<product.das.version>3.1.0</product.das.version>
<product.mb.version>3.1.0</product.mb.version>
@ -1572,8 +1577,8 @@
<!-- IoT Broker Dependencies -->
<product.iot.broker.version>${project.version}</product.iot.broker.version>
<andes.version>3.2.25</andes.version>
<carbon.messaging.version>3.2.16</carbon.messaging.version>
<andes.version>3.2.45</andes.version>
<carbon.messaging.version>3.2.32</carbon.messaging.version>
<!-- Third Party Dependencies-->
<spongycastle.version>1.51.0.0</spongycastle.version>
@ -1586,7 +1591,7 @@
<!--IOT Analytics-->
<shindig.version>2.0.2</shindig.version>
<carbon.data.version>4.3.6</carbon.data.version>
<carbon.data.version>4.4.41</carbon.data.version>
<equinox.osgi.version>3.8.1.v20120830-144521</equinox.osgi.version>
<analytics.shared.version>1.0.3</analytics.shared.version>
@ -1618,7 +1623,7 @@
<commons.lang3.version>3.3.2</commons.lang3.version>
<commons.lang.version>2.2</commons.lang.version>
<commons.io.version>2.4</commons.io.version>
<axis2.wso2.version>1.6.1.wso2v12</axis2.wso2.version>
<axis2.wso2.version>1.6.1.wso2v23</axis2.wso2.version>
<carbon.p2.plugin.version>1.5.4</carbon.p2.plugin.version>
<gson.version>2.3.1</gson.version>
<slf4j.log4j12.version>1.6.1</slf4j.log4j12.version>
@ -1638,7 +1643,7 @@
<orbit.version.joda-time>2.8.2.wso2v1</orbit.version.joda-time>
<orbit.version.json>2.0.0.wso2v1</orbit.version.json>
<carbon.dashboard.version>2.0.7</carbon.dashboard.version>
<carbon.event-processing.version>2.1.9</carbon.event-processing.version>
<carbon.event-processing.version>2.1.19</carbon.event-processing.version>
<imp.pkg.version.javax.servlet>[2.6.0,3.0.0)</imp.pkg.version.javax.servlet>
<akka.version>2.3.4-spark</akka.version>
@ -1646,16 +1651,16 @@
<caramel.version>1.0.1</caramel.version>
<!-- App manager version-->
<appmgt.feature.version>1.2.51</appmgt.feature.version>
<appmgt.feature.version>1.2.53</appmgt.feature.version>
<!-- Carbon Store version-->
<carbon.store.version>1.5.1</carbon.store.version>
<!-- Carbon Remote User Management version -->
<carbon.um.ws.version>5.1.4</carbon.um.ws.version>
<carbon.um.ws.version>5.1.5</carbon.um.ws.version>
<!-- Cipher tool version-->
<cipher.tool.version>1.0.0-wso2v5</cipher.tool.version>
<cipher.tool.version>1.0.0-wso2v6</cipher.tool.version>
<!--XMPP/MQTT Version-->
<smack.wso2.version>3.0.4.wso2v1</smack.wso2.version>
@ -1665,7 +1670,7 @@
<project.scm.id>github-scm</project.scm.id>
<!-- Carbon Metrics Features -->
<carbon.metrics.version>1.2.2</carbon.metrics.version>
<carbon.metrics.version>1.2.3</carbon.metrics.version>
<!--http client version-->
<httpclient.version>4.5.2</httpclient.version>
@ -1685,6 +1690,8 @@
<forgetme.tool.version>1.1.4</forgetme.tool.version>
<maven.javadoc.skip>true</maven.javadoc.skip>
<identity.governance.version>1.0.38</identity.governance.version>
<identity.event.handler.account.lock.version>1.1.12</identity.event.handler.account.lock.version>
</properties>
<scm>

Loading…
Cancel
Save