merge-requests/1/head
GPrathap 8 years ago
commit d8fdd18dde

@ -0,0 +1,12 @@
<processor>
<!-- Remove current datsources config -->
<remove>
<name>//datasources-configuration/datasources</name>
</remove>
<!-- Add modified Carbon db and UM db config -->
<add>
<inside>//datasources-configuration</inside>
<file>ds_config.xml</file>
</add>
</processor>

@ -0,0 +1,46 @@
<config>
<datasources>
<datasource>
<name>WSO2_CARBON_DB</name>
<description>The datasource used for registry and user manager</description>
<jndiConfig>
<name>jdbc/WSO2CarbonDB</name>
</jndiConfig>
<definition type="RDBMS">
<configuration>
<url>jdbc:h2:./repository/database/WSO2CARBON_DB;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000</url>
<username>wso2carbon</username>
<password>wso2carbon</password>
<driverClassName>org.h2.Driver</driverClassName>
<maxActive>50</maxActive>
<maxWait>60000</maxWait>
<testOnBorrow>true</testOnBorrow>
<validationQuery>SELECT 1</validationQuery>
<validationInterval>30000</validationInterval>
<defaultAutoCommit>false</defaultAutoCommit>
</configuration>
</definition>
</datasource>
<datasource>
<name>WSO2_UM_DB</name>
<description>The datasource used for registry and user manager</description>
<jndiConfig>
<name>jdbc/WSO2UMDB</name>
</jndiConfig>
<definition type="RDBMS">
<configuration>
<url>jdbc:h2:../core/repository/database/WSO2CARBON_DB;DB_CLOSE_ON_EXIT=FALSE;AUTO_SERVER=TRUE</url>
<username>wso2carbon</username>
<password>wso2carbon</password>
<driverClassName>org.h2.Driver</driverClassName>
<maxActive>50</maxActive>
<maxWait>60000</maxWait>
<testOnBorrow>true</testOnBorrow>
<validationQuery>SELECT 1</validationQuery>
<validationInterval>30000</validationInterval>
<defaultAutoCommit>false</defaultAutoCommit>
</configuration>
</definition>
</datasource>
</datasources>
</config>

@ -80,6 +80,31 @@
</executions> </executions>
</plugin> </plugin>
<plugin>
<groupId>com.google.code.maven-config-processor-plugin</groupId>
<artifactId>config-processor-maven-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<id>change_datasource_config</id>
<phase>package</phase>
<goals>
<goal>process</goal>
</goals>
<configuration>
<failOnMissingXpath>true</failOnMissingXpath>
<transformations>
<transformation>
<input>${basedir}/../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/datasources/master-datasources.xml</input>
<output>../../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/datasources/master-datasources.xml</output>
<config>datasource_config_change.xml</config>
</transformation>
</transformations>
</configuration>
</execution>
</executions>
</plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId> <artifactId>maven-antrun-plugin</artifactId>
@ -117,6 +142,7 @@
<!-- commenting "GetAllRolesOfUserEnabled" property to fix <!-- commenting "GetAllRolesOfUserEnabled" property to fix
https://wso2.org/jira/browse/IDENTITY-3489 --> https://wso2.org/jira/browse/IDENTITY-3489 -->
<replace file="target/wso2carbon-core-${carbon.kernel.version}/repository/conf/user-mgt.xml" token="&lt;Property name=&quot;GetAllRolesOfUserEnabled&quot;&gt;true&lt;/Property&gt;" value="&lt;!--Property name=&quot;GetAllRolesOfUserEnabled&quot;&gt;true&lt;/Property--&gt;" /> <replace file="target/wso2carbon-core-${carbon.kernel.version}/repository/conf/user-mgt.xml" token="&lt;Property name=&quot;GetAllRolesOfUserEnabled&quot;&gt;true&lt;/Property&gt;" value="&lt;!--Property name=&quot;GetAllRolesOfUserEnabled&quot;&gt;true&lt;/Property--&gt;" />
<replace file="target/wso2carbon-core-${carbon.kernel.version}/repository/conf/user-mgt.xml" token="&lt;Property name=&quot;dataSource&quot;&gt;jdbc/WSO2CarbonDB&lt;/Property&gt;" value="&lt;Property name=&quot;dataSource&quot;&gt;jdbc/WSO2UMDB&lt;/Property&gt;" />
<!-- Move IS UI to configure menu --> <!-- Move IS UI to configure menu -->
<property name="tempdir2" value="target/identity-ui" /> <property name="tempdir2" value="target/identity-ui" />
<mkdir dir="${tempdir2}" /> <mkdir dir="${tempdir2}" />

@ -40,6 +40,7 @@
<exclude>**/release-notes.html</exclude> <exclude>**/release-notes.html</exclude>
<exclude>**/carbon.xml</exclude> <exclude>**/carbon.xml</exclude>
<exclude>**/axis2/axis2.xml</exclude> <exclude>**/axis2/axis2.xml</exclude>
<exclude>**/master-datasources.xml</exclude>
<exclude>**/log4j.properties</exclude> <exclude>**/log4j.properties</exclude>
<exclude>**/wso2server.sh</exclude> <!--adding a custom DAS server.sh file--> <exclude>**/wso2server.sh</exclude> <!--adding a custom DAS server.sh file-->
<exclude>**/registry.xml</exclude> <exclude>**/registry.xml</exclude>
@ -824,5 +825,13 @@
<filtered>true</filtered> <filtered>true</filtered>
<fileMode>644</fileMode> <fileMode>644</fileMode>
</file> </file>
<file>
<source>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/datasources/master-datasources.xml
</source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/datasources</outputDirectory>
<filtered>true</filtered>
<fileMode>644</fileMode>
</file>
</files> </files>
</assembly> </assembly>

@ -79,7 +79,7 @@
<artifactItem> <artifactItem>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>wso2carbon-core</artifactId> <artifactId>wso2carbon-core</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
<type>zip</type> <type>zip</type>
<overWrite>true</overWrite> <overWrite>true</overWrite>
<outputDirectory>target</outputDirectory> <outputDirectory>target</outputDirectory>
@ -105,7 +105,7 @@
<tasks> <tasks>
<echo message="########### Create Device Management H2 Schema ###########" /> <echo message="########### Create Device Management H2 Schema ###########" />
<property name="db.dir" value="target/wso2carbon-core-${carbon.kernel.version}/repository/database" /> <property name="db.dir" value="target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/database" />
<property name="userid" value="wso2carbon" /> <property name="userid" value="wso2carbon" />
<property name="password" value="wso2carbon" /> <property name="password" value="wso2carbon" />
<property name="dbURL" value="jdbc:h2:file:${basedir}/${db.dir}/WSO2DM_DB;DB_CLOSE_ON_EXIT=FALSE" /> <property name="dbURL" value="jdbc:h2:file:${basedir}/${db.dir}/WSO2DM_DB;DB_CLOSE_ON_EXIT=FALSE" />
@ -115,7 +115,7 @@
<classpath refid="maven.compile.classpath" /> <classpath refid="maven.compile.classpath" />
<classpath refid="maven.runtime.classpath" /> <classpath refid="maven.runtime.classpath" />
<fileset file="${basedir}/../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/dbscripts/cdm/h2.sql" /> <fileset file="${basedir}/../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/dbscripts/cdm/h2.sql" />
</sql> </sql>
<echo message="##################### END ####################" /> <echo message="##################### END ####################" />
</tasks> </tasks>
@ -132,7 +132,7 @@
<tasks> <tasks>
<echo message="########### Create Certificate Management H2 Schema ###########" /> <echo message="########### Create Certificate Management H2 Schema ###########" />
<property name="db.dir" value="target/wso2carbon-core-${carbon.kernel.version}/repository/database" /> <property name="db.dir" value="target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/database" />
<property name="userid" value="wso2carbon" /> <property name="userid" value="wso2carbon" />
<property name="password" value="wso2carbon" /> <property name="password" value="wso2carbon" />
<property name="dbURL" value="jdbc:h2:file:${basedir}/${db.dir}/WSO2DM_DB;DB_CLOSE_ON_EXIT=FALSE" /> <property name="dbURL" value="jdbc:h2:file:${basedir}/${db.dir}/WSO2DM_DB;DB_CLOSE_ON_EXIT=FALSE" />
@ -141,7 +141,7 @@
<classpath refid="maven.dependency.classpath" /> <classpath refid="maven.dependency.classpath" />
<classpath refid="maven.compile.classpath" /> <classpath refid="maven.compile.classpath" />
<classpath refid="maven.runtime.classpath" /> <classpath refid="maven.runtime.classpath" />
<fileset file="${basedir}/../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/dbscripts/certMgt/h2.sql" /> <fileset file="${basedir}/../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/dbscripts/certMgt/h2.sql" />
</sql> </sql>
<echo message="##################### END ####################" /> <echo message="##################### END ####################" />
</tasks> </tasks>
@ -158,7 +158,7 @@
<tasks> <tasks>
<echo message="########### Create API Management H2 Schema ###########" /> <echo message="########### Create API Management H2 Schema ###########" />
<property name="db.dir" value="target/wso2carbon-core-${carbon.kernel.version}/repository/database" /> <property name="db.dir" value="target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/database" />
<property name="userid" value="wso2carbon" /> <property name="userid" value="wso2carbon" />
<property name="password" value="wso2carbon" /> <property name="password" value="wso2carbon" />
<property name="dbURL" value="jdbc:h2:file:${basedir}/${db.dir}/WSO2AM_DB;DB_CLOSE_ON_EXIT=FALSE" /> <property name="dbURL" value="jdbc:h2:file:${basedir}/${db.dir}/WSO2AM_DB;DB_CLOSE_ON_EXIT=FALSE" />
@ -168,7 +168,7 @@
<classpath refid="maven.compile.classpath" /> <classpath refid="maven.compile.classpath" />
<classpath refid="maven.runtime.classpath" /> <classpath refid="maven.runtime.classpath" />
<fileset file="${basedir}/../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/dbscripts/apimgt/h2.sql" /> <fileset file="${basedir}/../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/dbscripts/apimgt/h2.sql" />
</sql> </sql>
<echo message="##################### END ####################" /> <echo message="##################### END ####################" />
</tasks> </tasks>
@ -186,7 +186,7 @@
<tasks> <tasks>
<echo message="########### Create App Management H2 Schema ###########" /> <echo message="########### Create App Management H2 Schema ###########" />
<property name="db.dir" value="target/wso2carbon-core-${carbon.kernel.version}/repository/database" /> <property name="db.dir" value="target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/database" />
<property name="userid" value="wso2carbon" /> <property name="userid" value="wso2carbon" />
<property name="password" value="wso2carbon" /> <property name="password" value="wso2carbon" />
<property name="dbURL" value="jdbc:h2:file:${basedir}/${db.dir}/WSO2APPM_DB;DB_CLOSE_ON_EXIT=FALSE" /> <property name="dbURL" value="jdbc:h2:file:${basedir}/${db.dir}/WSO2APPM_DB;DB_CLOSE_ON_EXIT=FALSE" />
@ -196,7 +196,7 @@
<classpath refid="maven.compile.classpath" /> <classpath refid="maven.compile.classpath" />
<classpath refid="maven.runtime.classpath" /> <classpath refid="maven.runtime.classpath" />
<fileset file="${basedir}/../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/dbscripts/appmgt/h2.sql" /> <fileset file="${basedir}/../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/dbscripts/appmgt/h2.sql" />
</sql> </sql>
<echo message="##################### END ####################" /> <echo message="##################### END ####################" />
</tasks> </tasks>
@ -214,7 +214,7 @@
<tasks> <tasks>
<echo message="########### Create JAGH2 Schema ###########" /> <echo message="########### Create JAGH2 Schema ###########" />
<property name="db.dir" value="target/wso2carbon-core-${carbon.kernel.version}/repository/database" /> <property name="db.dir" value="target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/database" />
<property name="userid" value="wso2carbon" /> <property name="userid" value="wso2carbon" />
<property name="password" value="wso2carbon" /> <property name="password" value="wso2carbon" />
<property name="dbURL" value="jdbc:h2:file:${basedir}/${db.dir}/ES_STORAGE;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000" /> <property name="dbURL" value="jdbc:h2:file:${basedir}/${db.dir}/ES_STORAGE;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000" />
@ -225,7 +225,7 @@
<classpath refid="maven.compile.classpath" /> <classpath refid="maven.compile.classpath" />
<classpath refid="maven.runtime.classpath" /> <classpath refid="maven.runtime.classpath" />
<fileset file="${basedir}/../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/dbscripts/storage/h2/h2.sql" /> <fileset file="${basedir}/../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/dbscripts/storage/h2/h2.sql" />
</sql> </sql>
<echo message="##################### END ####################" /> <echo message="##################### END ####################" />
</tasks> </tasks>
@ -243,7 +243,7 @@
<tasks> <tasks>
<echo message="########### Create Social Plugin H2 Schema ###########" /> <echo message="########### Create Social Plugin H2 Schema ###########" />
<property name="db.dir" value="target/wso2carbon-core-${carbon.kernel.version}/repository/database" /> <property name="db.dir" value="target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/database" />
<property name="userid" value="wso2carbon" /> <property name="userid" value="wso2carbon" />
<property name="password" value="wso2carbon" /> <property name="password" value="wso2carbon" />
<property name="dbURL" value="jdbc:h2:file:${basedir}/${db.dir}/WSO2_SOCIAL_DB;DB_CLOSE_ON_EXIT=FALSE" /> <property name="dbURL" value="jdbc:h2:file:${basedir}/${db.dir}/WSO2_SOCIAL_DB;DB_CLOSE_ON_EXIT=FALSE" />
@ -253,7 +253,7 @@
<classpath refid="maven.compile.classpath" /> <classpath refid="maven.compile.classpath" />
<classpath refid="maven.runtime.classpath" /> <classpath refid="maven.runtime.classpath" />
<fileset file="${basedir}/../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/dbscripts/social/h2/resource.sql" /> <fileset file="${basedir}/../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/dbscripts/social/h2/resource.sql" />
</sql> </sql>
<echo message="##################### END ####################" /> <echo message="##################### END ####################" />
</tasks> </tasks>
@ -281,7 +281,7 @@
<include name="${project.artifactId}-${project.version}.zip" /> <include name="${project.artifactId}-${project.version}.zip" />
</fileset> </fileset>
</unzip> </unzip>
<copy todir="target/wso2carbon-core-${carbon.kernel.version}/repository/components" overwrite="true"> <copy todir="target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/components" overwrite="true">
<fileset dir="${tempdir}/${project.artifactId}-${project.version}/repository/components" /> <fileset dir="${tempdir}/${project.artifactId}-${project.version}/repository/components" />
</copy> </copy>
<!--testing --> <!--testing -->
@ -310,7 +310,7 @@
<phase>package</phase> <phase>package</phase>
<configuration> <configuration>
<tasks> <tasks>
<mkdir dir="target/wso2carbon-core-${carbon.kernel.version}/repository/deployment/server/webapps" /> <mkdir dir="target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/deployment/server/webapps" />
</tasks> </tasks>
</configuration> </configuration>
<goals> <goals>
@ -327,8 +327,8 @@
<delete dir="target/archive-tmp" /> <delete dir="target/archive-tmp" />
<delete dir="target/dependency-maven-plugin-markers" /> <delete dir="target/dependency-maven-plugin-markers" />
<delete dir="target/maven-archiver" /> <delete dir="target/maven-archiver" />
<delete dir="target/wso2carbon-core-${carbon.kernel.version}" /> <delete dir="target/wso2carbon-core-${carbon.kernel.version.iotcore}" />
<delete dir="target/wso2carbon-core-${carbon.kernel.version}" /> <delete dir="target/wso2carbon-core-${carbon.kernel.version.iotcore}" />
<delete file="target/${project.artifactId}-${project.version}.jar" /> <delete file="target/${project.artifactId}-${project.version}.jar" />
<delete dir="target/sources" /> <delete dir="target/sources" />
<delete dir="target/site" /> <delete dir="target/site" />
@ -347,7 +347,7 @@
<phase>prepare-package</phase> <phase>prepare-package</phase>
<configuration> <configuration>
<tasks> <tasks>
<replace token="PIP.AttributeDesignators.Designator.2=org.wso2.carbon.identity.application.authz.xacml.pip.AuthenticationContextAttributePIP" value="#PIP.AttributeDesignators.Designator.2=org.wso2.carbon.identity.application.authz.xacml.pip.AuthenticationContextAttributePIP" dir="${basedir}/../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/identity/"> <replace token="PIP.AttributeDesignators.Designator.2=org.wso2.carbon.identity.application.authz.xacml.pip.AuthenticationContextAttributePIP" value="#PIP.AttributeDesignators.Designator.2=org.wso2.carbon.identity.application.authz.xacml.pip.AuthenticationContextAttributePIP" dir="${basedir}/../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/identity/">
<include name="entitlement.properties" /> <include name="entitlement.properties" />
</replace> </replace>
</tasks> </tasks>
@ -422,7 +422,7 @@
</goals> </goals>
<configuration> <configuration>
<file> <file>
${basedir}/../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/api-manager.xml ${basedir}/../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/api-manager.xml
</file> </file>
<replacements> <replacements>
<replacement> <replacement>
@ -441,7 +441,7 @@
</goals> </goals>
<configuration> <configuration>
<file> <file>
${basedir}/../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/deployment/server/jaggeryapps/api-store/site/conf/site.json ${basedir}/../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/deployment/server/jaggeryapps/api-store/site/conf/site.json
</file> </file>
<replacements> <replacements>
<replacement> <replacement>

@ -48,7 +48,7 @@
<fileSets> <fileSets>
<fileSet> <fileSet>
<directory>target/wso2carbon-core-${carbon.kernel.version}</directory> <directory>target/wso2carbon-core-${carbon.kernel.version.iotcore}</directory>
<outputDirectory>${pom.artifactId}-${pom.version}</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}</outputDirectory>
<excludes> <excludes>
<exclude>**/*.sh</exclude> <exclude>**/*.sh</exclude>
@ -120,7 +120,7 @@
<!-- Copying Runtimes--> <!-- Copying Runtimes-->
<fileSet> <fileSet>
<directory> <directory>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/lib/runtimes ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/lib/runtimes
</directory> </directory>
<outputDirectory>${pom.artifactId}-${pom.version}/lib/runtimes/</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/lib/runtimes/</outputDirectory>
<includes> <includes>
@ -128,7 +128,7 @@
</includes> </includes>
</fileSet> </fileSet>
<fileSet> <fileSet>
<directory>target/wso2carbon-core-${carbon.kernel.version}</directory> <directory>target/wso2carbon-core-${carbon.kernel.version.iotcore}</directory>
<outputDirectory>${pom.artifactId}-${pom.version}</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}</outputDirectory>
<includes> <includes>
<include>**/*.sh</include> <include>**/*.sh</include>
@ -143,7 +143,7 @@
<!-- Multi-tenancy related file --> <!-- Multi-tenancy related file -->
<fileSet> <fileSet>
<directory> <directory>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/multitenancy/ ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/multitenancy/
</directory> </directory>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/multitenancy <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/multitenancy
</outputDirectory> </outputDirectory>
@ -157,7 +157,7 @@
</fileSet> </fileSet>
<fileSet> <fileSet>
<directory> <directory>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/multitenancy/ ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/multitenancy/
</directory> </directory>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf</outputDirectory>
<includes> <includes>
@ -190,7 +190,7 @@
</fileSet> </fileSet>
<fileSet> <fileSet>
<directory>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/modules <directory>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/modules
</directory> </directory>
<outputDirectory>${pom.artifactId}-${pom.version}/modules/</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/modules/</outputDirectory>
<includes> <includes>
@ -228,7 +228,7 @@
</fileSet> </fileSet>
<fileSet> <fileSet>
<directory> <directory>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/security ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/security
</directory> </directory>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/security <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/security
</outputDirectory> </outputDirectory>
@ -254,7 +254,7 @@
</fileSet> </fileSet>
<fileSet> <fileSet>
<directory> <directory>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/datasources ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/datasources
</directory> </directory>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/datasources <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/datasources
</outputDirectory> </outputDirectory>
@ -264,7 +264,7 @@
</fileSet> </fileSet>
<fileSet> <fileSet>
<directory> <directory>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/device-types ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/device-types
</directory> </directory>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/device-types <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/device-types
</outputDirectory> </outputDirectory>
@ -288,7 +288,7 @@
</fileSet> </fileSet>
<fileSet> <fileSet>
<directory> <directory>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/dbscripts/service-provider ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/dbscripts/service-provider
</directory> </directory>
<outputDirectory>${pom.artifactId}-${pom.version}/dbscripts/service-provider</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/dbscripts/service-provider</outputDirectory>
<includes> <includes>
@ -298,7 +298,7 @@
<!-- Copying API management related dbscripts --> <!-- Copying API management related dbscripts -->
<fileSet> <fileSet>
<directory>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/dbscripts/apimgt</directory> <directory>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/dbscripts/apimgt</directory>
<outputDirectory>${pom.artifactId}-${pom.version}/dbscripts/apimgt</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/dbscripts/apimgt</outputDirectory>
<includes> <includes>
<include>*/**</include> <include>*/**</include>
@ -306,14 +306,14 @@
</fileSet> </fileSet>
<!-- Copying APP management related dbscripts --> <!-- Copying APP management related dbscripts -->
<fileSet> <fileSet>
<directory>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/dbscripts/storage</directory> <directory>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/dbscripts/storage</directory>
<outputDirectory>${pom.artifactId}-${pom.version}/dbscripts/storage</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/dbscripts/storage</outputDirectory>
<includes> <includes>
<include>*/**</include> <include>*/**</include>
</includes> </includes>
</fileSet> </fileSet>
<fileSet> <fileSet>
<directory>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/dbscripts/appmgt</directory> <directory>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/dbscripts/appmgt</directory>
<outputDirectory>${pom.artifactId}-${pom.version}/dbscripts/appmgt</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/dbscripts/appmgt</outputDirectory>
<includes> <includes>
<include>*/**</include> <include>*/**</include>
@ -323,7 +323,7 @@
<!-- Copying Certificate management related dbscripts --> <!-- Copying Certificate management related dbscripts -->
<fileSet> <fileSet>
<directory> <directory>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/dbscripts/certMgt ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/dbscripts/certMgt
</directory> </directory>
<outputDirectory>${pom.artifactId}-${pom.version}/dbscripts/certMgt</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/dbscripts/certMgt</outputDirectory>
<includes> <includes>
@ -332,7 +332,7 @@
</fileSet> </fileSet>
<!-- Copying Social plugin related dbscripts --> <!-- Copying Social plugin related dbscripts -->
<fileSet> <fileSet>
<directory>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/dbscripts/social</directory> <directory>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/dbscripts/social</directory>
<outputDirectory>${pom.artifactId}-${pom.version}/dbscripts/social</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/dbscripts/social</outputDirectory>
<includes> <includes>
<include>*/**</include> <include>*/**</include>
@ -356,7 +356,7 @@
</fileSet> </fileSet>
<!--Copying modules--> <!--Copying modules-->
<fileSet> <fileSet>
<directory>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/modules</directory> <directory>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/modules</directory>
<outputDirectory>${pom.artifactId}-${pom.version}/modules/</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/modules/</outputDirectory>
<includes> <includes>
<include>*/**</include> <include>*/**</include>
@ -382,7 +382,7 @@
<!--Copying modules--> <!--Copying modules-->
<fileSet> <fileSet>
<directory> <directory>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/modules ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/modules
</directory> </directory>
<outputDirectory>${pom.artifactId}-${pom.version}/modules/</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/modules/</outputDirectory>
<includes> <includes>
@ -400,7 +400,7 @@
<!-- Copying Device Management related dbscripts --> <!-- Copying Device Management related dbscripts -->
<fileSet> <fileSet>
<directory> <directory>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/dbscripts/cdm ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/dbscripts/cdm
</directory> </directory>
<outputDirectory>${pom.artifactId}-${pom.version}/dbscripts/cdm</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/dbscripts/cdm</outputDirectory>
<includes> <includes>
@ -408,13 +408,13 @@
</includes> </includes>
</fileSet> </fileSet>
<fileSet> <fileSet>
<directory>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/deployment/server/carbonapps</directory> <directory>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/deployment/server/carbonapps</directory>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/deployment/server/carbonapps <outputDirectory>${pom.artifactId}-${pom.version}/repository/deployment/server/carbonapps
</outputDirectory> </outputDirectory>
</fileSet> </fileSet>
<fileSet> <fileSet>
<directory> <directory>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/resources ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/resources
</directory> </directory>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/resources <outputDirectory>${pom.artifactId}-${pom.version}/repository/resources
</outputDirectory> </outputDirectory>
@ -436,7 +436,7 @@
<!-- Copying Authentication Endpoint webapp --> <!-- Copying Authentication Endpoint webapp -->
<fileSet> <fileSet>
<directory> <directory>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/deployment/server/webapps ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/deployment/server/webapps
</directory> </directory>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/deployment/server/webapps <outputDirectory>${pom.artifactId}-${pom.version}/repository/deployment/server/webapps
</outputDirectory> </outputDirectory>
@ -450,7 +450,7 @@
<!-- Copying mdm app from devicemgt app--> <!-- Copying mdm app from devicemgt app-->
<fileSet> <fileSet>
<directory> <directory>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/deployment/server/jaggeryapps/devicemgt/ ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/deployment/server/jaggeryapps/devicemgt/
</directory> </directory>
<outputDirectory> <outputDirectory>
${pom.artifactId}-${pom.version}/repository/deployment/server/jaggeryapps/devicemgt ${pom.artifactId}-${pom.version}/repository/deployment/server/jaggeryapps/devicemgt
@ -458,7 +458,7 @@
</fileSet> </fileSet>
<fileSet> <fileSet>
<directory> <directory>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/deployment/server/jaggeryapps/devicemgt-cdmf/ ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/deployment/server/jaggeryapps/devicemgt-cdmf/
</directory> </directory>
<outputDirectory> <outputDirectory>
${pom.artifactId}-${pom.version}/repository/deployment/server/jaggeryapps/devicemgt ${pom.artifactId}-${pom.version}/repository/deployment/server/jaggeryapps/devicemgt
@ -466,7 +466,7 @@
</fileSet> </fileSet>
<fileSet> <fileSet>
<directory> <directory>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/deployment/server/jaggeryapps/uuf-template-app/ ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/deployment/server/jaggeryapps/uuf-template-app/
</directory> </directory>
<outputDirectory> <outputDirectory>
${pom.artifactId}-${pom.version}/repository/deployment/server/jaggeryapps/devicemgt ${pom.artifactId}-${pom.version}/repository/deployment/server/jaggeryapps/devicemgt
@ -475,7 +475,7 @@
<fileSet> <fileSet>
<directory> <directory>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/deployment/server/webapps/ ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/deployment/server/webapps/
</directory> </directory>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/deployment/server/webapps/ <outputDirectory>${pom.artifactId}-${pom.version}/repository/deployment/server/webapps/
</outputDirectory> </outputDirectory>
@ -491,7 +491,7 @@
<!-- Copying APP Manager Publisher and Store Jaggery apps --> <!-- Copying APP Manager Publisher and Store Jaggery apps -->
<fileSet> <fileSet>
<directory> <directory>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/deployment/server/jaggeryapps/publisher/ ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/deployment/server/jaggeryapps/publisher/
</directory> </directory>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/deployment/server/jaggeryapps/publisher <outputDirectory>${pom.artifactId}-${pom.version}/repository/deployment/server/jaggeryapps/publisher
</outputDirectory> </outputDirectory>
@ -505,7 +505,7 @@
</fileSet> </fileSet>
<fileSet> <fileSet>
<directory> <directory>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/deployment/server/jaggeryapps/store/ ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/deployment/server/jaggeryapps/store/
</directory> </directory>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/deployment/server/jaggeryapps/store <outputDirectory>${pom.artifactId}-${pom.version}/repository/deployment/server/jaggeryapps/store
</outputDirectory> </outputDirectory>
@ -521,7 +521,7 @@
<!-- Copying API Manager Store Jaggery app --> <!-- Copying API Manager Store Jaggery app -->
<fileSet> <fileSet>
<directory> <directory>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/deployment/server/jaggeryapps/api-store/ ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/deployment/server/jaggeryapps/api-store/
</directory> </directory>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/deployment/server/jaggeryapps/api-store <outputDirectory>${pom.artifactId}-${pom.version}/repository/deployment/server/jaggeryapps/api-store
</outputDirectory> </outputDirectory>
@ -552,7 +552,7 @@
</fileSet> </fileSet>
<fileSet> <fileSet>
<directory>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/deployment/server/jaggeryapps/social/</directory> <directory>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/deployment/server/jaggeryapps/social/</directory>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/deployment/server/jaggeryapps/social</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/repository/deployment/server/jaggeryapps/social</outputDirectory>
</fileSet> </fileSet>
@ -577,7 +577,7 @@
<!-- Copying RXTs corresponding API management related components --> <!-- Copying RXTs corresponding API management related components -->
<fileSet> <fileSet>
<directory> <directory>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/rxts ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/rxts
</directory> </directory>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/resources/rxts <outputDirectory>${pom.artifactId}-${pom.version}/repository/resources/rxts
</outputDirectory> </outputDirectory>
@ -585,7 +585,7 @@
<fileSet> <fileSet>
<directory> <directory>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/identity ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/identity
</directory> </directory>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/identity <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/identity
</outputDirectory> </outputDirectory>
@ -606,7 +606,7 @@
<fileSet> <fileSet>
<directory> <directory>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/identity/identity-providers ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/identity/identity-providers
</directory> </directory>
<outputDirectory> <outputDirectory>
${pom.artifactId}-${pom.version}/repository/conf/identity/identity-providers ${pom.artifactId}-${pom.version}/repository/conf/identity/identity-providers
@ -617,7 +617,7 @@
</fileSet> </fileSet>
<fileSet> <fileSet>
<directory> <directory>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/identity/service-providers ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/identity/service-providers
</directory> </directory>
<outputDirectory> <outputDirectory>
${pom.artifactId}-${pom.version}/repository/conf/identity/service-providers ${pom.artifactId}-${pom.version}/repository/conf/identity/service-providers
@ -631,7 +631,7 @@
<fileSet> <fileSet>
<directory> <directory>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/dbscripts/metrics/ ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/dbscripts/metrics/
</directory> </directory>
<outputDirectory>${pom.artifactId}-${pom.version}/dbscripts/metrics</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/dbscripts/metrics</outputDirectory>
<includes> <includes>
@ -643,7 +643,7 @@
<!--QPID related configurations--> <!--QPID related configurations-->
<!--fileSet> <!--fileSet>
<directory> <directory>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/advanced/ ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/advanced/
</directory> </directory>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/advanced</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/advanced</outputDirectory>
<includes> <includes>
@ -657,7 +657,7 @@
<!-- Dashboard portal Jaggery app. Should be copied to <DAS_HOME>/repository/deployment/server/jaggeryapps --> <!-- Dashboard portal Jaggery app. Should be copied to <DAS_HOME>/repository/deployment/server/jaggeryapps -->
<fileSet> <fileSet>
<directory> <directory>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/deployment/server/jaggeryapps/portal ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/deployment/server/jaggeryapps/portal
</directory> </directory>
<outputDirectory> <outputDirectory>
${pom.artifactId}-${pom.version}/repository/deployment/server/jaggeryapps/portal ${pom.artifactId}-${pom.version}/repository/deployment/server/jaggeryapps/portal
@ -772,14 +772,14 @@
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/security</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/security</outputDirectory>
</file> </file>
<file> <file>
<source>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/event-broker.xml <source>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/event-broker.xml
</source> </source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/</outputDirectory>
<filtered>true</filtered> <filtered>true</filtered>
<fileMode>644</fileMode> <fileMode>644</fileMode>
</file> </file>
<file> <file>
<source>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/registry-event-broker.xml <source>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/registry-event-broker.xml
</source> </source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/</outputDirectory>
<filtered>true</filtered> <filtered>true</filtered>
@ -810,13 +810,13 @@
<fileMode>644</fileMode> <fileMode>644</fileMode>
</file> </file>
<file> <file>
<source>target/wso2carbon-core-${carbon.kernel.version}/bin/README.txt</source> <source>target/wso2carbon-core-${carbon.kernel.version.iotcore}/bin/README.txt</source>
<outputDirectory>${pom.artifactId}-${pom.version}/bin/</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/bin/</outputDirectory>
<filtered>true</filtered> <filtered>true</filtered>
<fileMode>644</fileMode> <fileMode>644</fileMode>
</file> </file>
<file> <file>
<source>target/wso2carbon-core-${carbon.kernel.version}/bin/version.txt</source> <source>target/wso2carbon-core-${carbon.kernel.version.iotcore}/bin/version.txt</source>
<outputDirectory>${pom.artifactId}-${pom.version}/bin/</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/bin/</outputDirectory>
<filtered>true</filtered> <filtered>true</filtered>
<fileMode>644</fileMode> <fileMode>644</fileMode>
@ -824,7 +824,7 @@
<!-- Copying logging-config.xml --> <!-- Copying logging-config.xml -->
<file> <file>
<source> <source>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/etc/logging-config.xml ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/etc/logging-config.xml
</source> </source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/etc</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/etc</outputDirectory>
<filtered>true</filtered> <filtered>true</filtered>
@ -839,13 +839,13 @@
<fileMode>644</fileMode> <fileMode>644</fileMode>
</file> </file>
<file> <file>
<source>target/wso2carbon-core-${carbon.kernel.version}/repository/conf/README</source> <source>target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/README</source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/</outputDirectory>
<filtered>true</filtered> <filtered>true</filtered>
<fileMode>644</fileMode> <fileMode>644</fileMode>
</file> </file>
<file> <file>
<source>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/identity/oidc-scope-config.xml</source> <source>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/identity/oidc-scope-config.xml</source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/identity/</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/identity/</outputDirectory>
<filtered>true</filtered> <filtered>true</filtered>
<fileMode>644</fileMode> <fileMode>644</fileMode>
@ -885,7 +885,7 @@
<!-- Copying governance.xml --> <!-- Copying governance.xml -->
<file> <file>
<source> <source>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/governance.xml ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/governance.xml
</source> </source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf</outputDirectory>
<fileMode>644</fileMode> <fileMode>644</fileMode>
@ -911,7 +911,7 @@
</file--> </file-->
<file> <file>
<source> <source>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/tomcat/webapp-classloading.xml ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/tomcat/webapp-classloading.xml
</source> </source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/tomcat <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/tomcat
</outputDirectory> </outputDirectory>
@ -932,7 +932,7 @@
<!--certificate config file--> <!--certificate config file-->
<file> <file>
<source> <source>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/certificate-config.xml ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/certificate-config.xml
</source> </source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf</outputDirectory>
<filtered>true</filtered> <filtered>true</filtered>
@ -940,31 +940,31 @@
</file> </file>
<!--Metrics--> <!--Metrics-->
<file> <file>
<source>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/metrics.properties</source> <source>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/metrics.properties</source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/</outputDirectory>
<filtered>false</filtered> <filtered>false</filtered>
<fileMode>644</fileMode> <fileMode>644</fileMode>
</file> </file>
<file> <file>
<source>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/metrics.xml</source> <source>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/metrics.xml</source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/</outputDirectory>
<filtered>false</filtered> <filtered>false</filtered>
<fileMode>644</fileMode> <fileMode>644</fileMode>
</file> </file>
<file> <file>
<source>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/datasources/metrics-datasources.xml</source> <source>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/datasources/metrics-datasources.xml</source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/datasources/</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/datasources/</outputDirectory>
<fileMode>644</fileMode> <fileMode>644</fileMode>
</file> </file>
<file> <file>
<source>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/database/WSO2METRICS_DB.h2.db</source> <source>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/database/WSO2METRICS_DB.h2.db</source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/database/</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/repository/database/</outputDirectory>
<fileMode>644</fileMode> <fileMode>644</fileMode>
</file> </file>
<!-- nTask Component --> <!-- nTask Component -->
<file> <file>
<source> <source>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/etc/tasks-config.xml ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/etc/tasks-config.xml
</source> </source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/etc/</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/etc/</outputDirectory>
<fileMode>644</fileMode> <fileMode>644</fileMode>
@ -994,7 +994,7 @@
<!--Webapp Authenticator Config file--> <!--Webapp Authenticator Config file-->
<file> <file>
<source> <source>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/etc/webapp-authenticator-config.xml ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/etc/webapp-authenticator-config.xml
</source> </source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/etc</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/etc</outputDirectory>
<filtered>true</filtered> <filtered>true</filtered>
@ -1013,7 +1013,7 @@
<!-- Copying email-sender-config.xml --> <!-- Copying email-sender-config.xml -->
<file> <file>
<source> <source>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/etc/email-sender-config.xml ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/etc/email-sender-config.xml
</source> </source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/etc</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/etc</outputDirectory>
<filtered>true</filtered> <filtered>true</filtered>
@ -1022,7 +1022,7 @@
<!--cdm plugin config file--> <!--cdm plugin config file-->
<file> <file>
<source> <source>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/tomcat/webapp-classloading-environments.xml ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/tomcat/webapp-classloading-environments.xml
</source> </source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/tomcat <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/tomcat
</outputDirectory> </outputDirectory>
@ -1031,7 +1031,7 @@
</file> </file>
<file> <file>
<source> <source>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/claim-config.xml ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/claim-config.xml
</source> </source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/ <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/
</outputDirectory> </outputDirectory>
@ -1041,7 +1041,7 @@
<!-- Copying H2 database related files corresponding to default API management repository schema --> <!-- Copying H2 database related files corresponding to default API management repository schema -->
<file> <file>
<source> <source>
target/wso2carbon-core-${carbon.kernel.version}/repository/database/WSO2AM_DB.h2.db target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/database/WSO2AM_DB.h2.db
</source> </source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/database</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/repository/database</outputDirectory>
<destName>WSO2AM_DB.h2.db</destName> <destName>WSO2AM_DB.h2.db</destName>
@ -1050,7 +1050,7 @@
<!-- Copying H2 database related files corresponding to default App management repository schema --> <!-- Copying H2 database related files corresponding to default App management repository schema -->
<file> <file>
<source> <source>
target/wso2carbon-core-${carbon.kernel.version}/repository/database/WSO2APPM_DB.h2.db target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/database/WSO2APPM_DB.h2.db
</source> </source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/database</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/repository/database</outputDirectory>
<destName>WSO2APPM_DB.h2.db</destName> <destName>WSO2APPM_DB.h2.db</destName>
@ -1059,7 +1059,7 @@
<!-- Copying H2 database related files corresponding to default Device management repository schema --> <!-- Copying H2 database related files corresponding to default Device management repository schema -->
<file> <file>
<source> <source>
target/wso2carbon-core-${carbon.kernel.version}/repository/database/WSO2DM_DB.h2.db target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/database/WSO2DM_DB.h2.db
</source> </source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/database</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/repository/database</outputDirectory>
<destName>WSO2DM_DB.h2.db</destName> <destName>WSO2DM_DB.h2.db</destName>
@ -1076,7 +1076,7 @@
<!-- Copying axis2-client.xml --> <!-- Copying axis2-client.xml -->
<file> <file>
<source> <source>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/axis2/axis2_client.xml ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/axis2/axis2_client.xml
</source> </source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/axis2 <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/axis2
</outputDirectory> </outputDirectory>
@ -1111,21 +1111,21 @@
<!-- Cipher Tool Files --> <!-- Cipher Tool Files -->
<file> <file>
<source> <source>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/bin/ciphertool.sh ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/bin/ciphertool.sh
</source> </source>
<outputDirectory>${pom.artifactId}-${pom.version}/bin</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/bin</outputDirectory>
<fileMode>755</fileMode> <fileMode>755</fileMode>
</file> </file>
<file> <file>
<source> <source>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/bin/ciphertool.bat ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/bin/ciphertool.bat
</source> </source>
<outputDirectory>${pom.artifactId}-${pom.version}/bin</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/bin</outputDirectory>
<fileMode>644</fileMode> <fileMode>644</fileMode>
</file> </file>
<file> <file>
<source> <source>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/lib/org.wso2.ciphertool-${cipher.tool.version}.jar ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/lib/org.wso2.ciphertool-${cipher.tool.version}.jar
</source> </source>
<outputDirectory>${pom.artifactId}-${pom.version}/lib</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/lib</outputDirectory>
<fileMode>644</fileMode> <fileMode>644</fileMode>
@ -1134,7 +1134,7 @@
<!--DAS Files--> <!--DAS Files-->
<file> <file>
<source> <source>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/output-event-adapters.xml ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/output-event-adapters.xml
</source> </source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf
</outputDirectory> </outputDirectory>
@ -1143,7 +1143,7 @@
</file> </file>
<file> <file>
<source> <source>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/input-event-adapters.xml ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/input-event-adapters.xml
</source> </source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf
</outputDirectory> </outputDirectory>
@ -1152,7 +1152,7 @@
</file> </file>
<!-- ************* Data bridge related files ********** --> <!-- ************* Data bridge related files ********** -->
<file> <file>
<source>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/data-bridge/data-bridge-config.xml</source> <source>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/data-bridge/data-bridge-config.xml</source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/data-bridge</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/data-bridge</outputDirectory>
<filtered>true</filtered> <filtered>true</filtered>
<fileMode>644</fileMode> <fileMode>644</fileMode>
@ -1163,7 +1163,7 @@
</file> </file>
<file> <file>
<source> <source>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/data-bridge/data-agent-config.xml ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/data-bridge/data-agent-config.xml
</source> </source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/data-bridge <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/data-bridge
</outputDirectory> </outputDirectory>
@ -1183,7 +1183,7 @@
<file> <file>
<source> <source>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/etc/jwt.properties ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/etc/jwt.properties
</source> </source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/etc</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/etc</outputDirectory>
<filtered>true</filtered> <filtered>true</filtered>
@ -1191,7 +1191,7 @@
</file> </file>
<file> <file>
<source> <source>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/etc/websocket-validation.xml ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/etc/websocket-validation.xml
</source> </source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/etc</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/etc</outputDirectory>
<filtered>true</filtered> <filtered>true</filtered>
@ -1199,7 +1199,7 @@
</file> </file>
<file> <file>
<source> <source>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/etc/device-analytics-config.xml ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/etc/device-analytics-config.xml
</source> </source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/etc</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/etc</outputDirectory>
<filtered>true</filtered> <filtered>true</filtered>
@ -1215,7 +1215,7 @@
</file> </file>
<file> <file>
<source>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/social.xml</source> <source>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/social.xml</source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf</outputDirectory>
<filtered>true</filtered> <filtered>true</filtered>
<fileMode>644</fileMode> <fileMode>644</fileMode>
@ -1233,7 +1233,7 @@
<!-- Copying devi-appmanager-config.xml --> <!-- Copying devi-appmanager-config.xml -->
<file> <file>
<source> <source>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/etc/remote-appmanager-config.xml ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/conf/etc/remote-appmanager-config.xml
</source> </source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/etc</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/repository/conf/etc</outputDirectory>
<filtered>true</filtered> <filtered>true</filtered>
@ -1242,7 +1242,7 @@
<!-- Adding IoT Analytics Dashboard and gadget CApps --> <!-- Adding IoT Analytics Dashboard and gadget CApps -->
<file> <file>
<source> <source>
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/deployment/server/carbonapps/org_wso2_carbon_analytics_cdmf-1.0.0.car ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/deployment/server/carbonapps/org_wso2_carbon_analytics_cdmf-1.0.0.car
</source> </source>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/deployment/server/carbonapps/</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/repository/deployment/server/carbonapps/</outputDirectory>
<fileMode>644</fileMode> <fileMode>644</fileMode>

@ -25,7 +25,7 @@
<fileSets> <fileSets>
<!-- Copying p2 profile and osgi bundles--> <!-- Copying p2 profile and osgi bundles-->
<fileSet> <fileSet>
<directory>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/components</directory> <directory>../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/components</directory>
<outputDirectory>${pom.artifactId}-${pom.version}/repository/components</outputDirectory> <outputDirectory>${pom.artifactId}-${pom.version}/repository/components</outputDirectory>
<excludes> <excludes>
<exclude>**/eclipse.ini</exclude> <exclude>**/eclipse.ini</exclude>

@ -30,7 +30,7 @@
</jndiConfig> </jndiConfig>
<definition type="RDBMS"> <definition type="RDBMS">
<configuration> <configuration>
<url>jdbc:h2:repository/database/WSO2CARBON_DB;DB_CLOSE_ON_EXIT=FALSE</url> <url>jdbc:h2:repository/database/WSO2CARBON_DB;DB_CLOSE_ON_EXIT=FALSE;AUTO_SERVER=TRUE</url>
<username>wso2carbon</username> <username>wso2carbon</username>
<password>wso2carbon</password> <password>wso2carbon</password>
<driverClassName>org.h2.Driver</driverClassName> <driverClassName>org.h2.Driver</driverClassName>

@ -44,7 +44,7 @@
</AuthenticationStep> </AuthenticationStep>
</AuthenticationSteps> </AuthenticationSteps>
<UseUserstoreDomainInUsername>true</UseUserstoreDomainInUsername> <UseUserstoreDomainInUsername>true</UseUserstoreDomainInUsername>
<UseTenantDomainInUsername>true</UseTenantDomainInUsername> <UseTenantDomainInUsername>false</UseTenantDomainInUsername>
</LocalAndOutBoundAuthenticationConfig> </LocalAndOutBoundAuthenticationConfig>
<RequestPathAuthenticatorConfigs> <RequestPathAuthenticatorConfigs>
</RequestPathAuthenticatorConfigs> </RequestPathAuthenticatorConfigs>

@ -44,7 +44,7 @@
</AuthenticationStep> </AuthenticationStep>
</AuthenticationSteps> </AuthenticationSteps>
<UseUserstoreDomainInUsername>true</UseUserstoreDomainInUsername> <UseUserstoreDomainInUsername>true</UseUserstoreDomainInUsername>
<UseTenantDomainInUsername>true</UseTenantDomainInUsername> <UseTenantDomainInUsername>false</UseTenantDomainInUsername>
</LocalAndOutBoundAuthenticationConfig> </LocalAndOutBoundAuthenticationConfig>
<RequestPathAuthenticatorConfigs> <RequestPathAuthenticatorConfigs>
</RequestPathAuthenticatorConfigs> </RequestPathAuthenticatorConfigs>

@ -44,7 +44,7 @@
</AuthenticationStep> </AuthenticationStep>
</AuthenticationSteps> </AuthenticationSteps>
<UseUserstoreDomainInUsername>true</UseUserstoreDomainInUsername> <UseUserstoreDomainInUsername>true</UseUserstoreDomainInUsername>
<UseTenantDomainInUsername>true</UseTenantDomainInUsername> <UseTenantDomainInUsername>false</UseTenantDomainInUsername>
</LocalAndOutBoundAuthenticationConfig> </LocalAndOutBoundAuthenticationConfig>
<RequestPathAuthenticatorConfigs> <RequestPathAuthenticatorConfigs>
</RequestPathAuthenticatorConfigs> </RequestPathAuthenticatorConfigs>

@ -44,7 +44,7 @@
</AuthenticationStep> </AuthenticationStep>
</AuthenticationSteps> </AuthenticationSteps>
<UseUserstoreDomainInUsername>true</UseUserstoreDomainInUsername> <UseUserstoreDomainInUsername>true</UseUserstoreDomainInUsername>
<UseTenantDomainInUsername>true</UseTenantDomainInUsername> <UseTenantDomainInUsername>false</UseTenantDomainInUsername>
</LocalAndOutBoundAuthenticationConfig> </LocalAndOutBoundAuthenticationConfig>
<RequestPathAuthenticatorConfigs> <RequestPathAuthenticatorConfigs>
</RequestPathAuthenticatorConfigs> </RequestPathAuthenticatorConfigs>

@ -44,7 +44,7 @@
</AuthenticationStep> </AuthenticationStep>
</AuthenticationSteps> </AuthenticationSteps>
<UseUserstoreDomainInUsername>true</UseUserstoreDomainInUsername> <UseUserstoreDomainInUsername>true</UseUserstoreDomainInUsername>
<UseTenantDomainInUsername>true</UseTenantDomainInUsername> <UseTenantDomainInUsername>false</UseTenantDomainInUsername>
</LocalAndOutBoundAuthenticationConfig> </LocalAndOutBoundAuthenticationConfig>
<RequestPathAuthenticatorConfigs> <RequestPathAuthenticatorConfigs>
</RequestPathAuthenticatorConfigs> </RequestPathAuthenticatorConfigs>

@ -168,7 +168,7 @@
</properties> </properties>
</adviceFile> </adviceFile>
<importFeatures> <importFeatures>
<importFeatureDef>org.wso2.carbon.core.server:${carbon.kernel.version} <importFeatureDef>org.wso2.carbon.core.server:${carbon.kernel.version.iotcore}
</importFeatureDef> </importFeatureDef>
<importFeatureDef>org.wso2.carbon.device.mgt.server:${carbon.device.mgt.version} <importFeatureDef>org.wso2.carbon.device.mgt.server:${carbon.device.mgt.version}
</importFeatureDef> </importFeatureDef>

@ -65,7 +65,7 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.logging</artifactId> <artifactId>org.wso2.carbon.logging</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.apache.log4j.wso2</groupId> <groupId>org.apache.log4j.wso2</groupId>
@ -143,7 +143,7 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.ndatasource.core</artifactId> <artifactId>org.wso2.carbon.ndatasource.core</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.wso2.carbon.devicemgt-plugins</groupId> <groupId>org.wso2.carbon.devicemgt-plugins</groupId>
@ -208,7 +208,7 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.utils</artifactId> <artifactId>org.wso2.carbon.utils</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.bouncycastle.wso2</groupId> <groupId>org.bouncycastle.wso2</groupId>
@ -363,7 +363,7 @@
<properties> <properties>
<carbon.kernel.version>4.4.3</carbon.kernel.version> <carbon.kernel.version.iotcore>4.4.3</carbon.kernel.version.iotcore>
<!-- Carbon Device Management --> <!-- Carbon Device Management -->
<carbon.device.mgt.version>1.2.6-SNAPSHOT</carbon.device.mgt.version> <carbon.device.mgt.version>1.2.6-SNAPSHOT</carbon.device.mgt.version>

@ -207,7 +207,7 @@
</bundleDef> </bundleDef>
</bundles> </bundles>
<importFeatures> <importFeatures>
<importFeatureDef>org.wso2.carbon.core.server:${carbon.kernel.version} <importFeatureDef>org.wso2.carbon.core.server:${carbon.kernel.version.iotcore}
</importFeatureDef> </importFeatureDef>
<importFeatureDef>org.wso2.carbon.device.mgt.server:${carbon.device.mgt.version} <importFeatureDef>org.wso2.carbon.device.mgt.server:${carbon.device.mgt.version}
</importFeatureDef> </importFeatureDef>

@ -56,7 +56,7 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.logging</artifactId> <artifactId>org.wso2.carbon.logging</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.apache.log4j.wso2</groupId> <groupId>org.apache.log4j.wso2</groupId>
@ -131,7 +131,7 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.ndatasource.core</artifactId> <artifactId>org.wso2.carbon.ndatasource.core</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.wso2.carbon.devicemgt-plugins</groupId> <groupId>org.wso2.carbon.devicemgt-plugins</groupId>
@ -196,7 +196,7 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.utils</artifactId> <artifactId>org.wso2.carbon.utils</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.bouncycastle.wso2</groupId> <groupId>org.bouncycastle.wso2</groupId>

@ -197,7 +197,7 @@
</bundleDef> </bundleDef>
</bundles> </bundles>
<importFeatures> <importFeatures>
<importFeatureDef>org.wso2.carbon.core.server:${carbon.kernel.version} <importFeatureDef>org.wso2.carbon.core.server:${carbon.kernel.version.iotcore}
</importFeatureDef> </importFeatureDef>
<importFeatureDef>org.wso2.carbon.device.mgt.server:${carbon.device.mgt.version} <importFeatureDef>org.wso2.carbon.device.mgt.server:${carbon.device.mgt.version}
</importFeatureDef> </importFeatureDef>

@ -82,7 +82,7 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.logging</artifactId> <artifactId>org.wso2.carbon.logging</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.apache.log4j.wso2</groupId> <groupId>org.apache.log4j.wso2</groupId>
@ -173,10 +173,10 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.ndatasource.core</artifactId> <artifactId>org.wso2.carbon.ndatasource.core</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
<scope>system</scope> <scope>system</scope>
<systemPath> <systemPath>
${basedir}/../../../../repository/components/plugins/org.wso2.carbon.ndatasource.core_${carbon.kernel.version}.jar ${basedir}/../../../../repository/components/plugins/org.wso2.carbon.ndatasource.core_${carbon.kernel.version.iotcore}.jar
</systemPath> </systemPath>
</dependency> </dependency>
<dependency> <dependency>
@ -245,7 +245,7 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.utils</artifactId> <artifactId>org.wso2.carbon.utils</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.bouncycastle.wso2</groupId> <groupId>org.bouncycastle.wso2</groupId>
@ -306,7 +306,7 @@
</exclusions> </exclusions>
<scope>system</scope> <scope>system</scope>
<systemPath> <systemPath>
${basedir}/../../../../repository/components/plugins/org.wso2.carbon.utils_${carbon.kernel.version}.jar ${basedir}/../../../../repository/components/plugins/org.wso2.carbon.utils_${carbon.kernel.version.iotcore}.jar
</systemPath> </systemPath>
</dependency> </dependency>
<dependency> <dependency>
@ -375,17 +375,17 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.user.api</artifactId> <artifactId>org.wso2.carbon.user.api</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
<scope>system</scope> <scope>system</scope>
<systemPath> <systemPath>
${basedir}/../../../../repository/components/plugins/org.wso2.carbon.user.api_${carbon.kernel.version}.jar ${basedir}/../../../../repository/components/plugins/org.wso2.carbon.user.api_${carbon.kernel.version.iotcore}.jar
</systemPath> </systemPath>
</dependency> </dependency>
</dependencies> </dependencies>
</dependencyManagement> </dependencyManagement>
<properties> <properties>
<carbon.kernel.version>4.4.3</carbon.kernel.version> <carbon.kernel.version.iotcore>4.4.3</carbon.kernel.version.iotcore>
<!-- Carbon Device Management --> <!-- Carbon Device Management -->
<carbon.device.mgt.version>1.2.3-SNAPSHOT</carbon.device.mgt.version> <carbon.device.mgt.version>1.2.3-SNAPSHOT</carbon.device.mgt.version>

@ -194,7 +194,7 @@
</bundleDef> </bundleDef>
</bundles> </bundles>
<importFeatures> <importFeatures>
<importFeatureDef>org.wso2.carbon.core.server:${carbon.kernel.version} <importFeatureDef>org.wso2.carbon.core.server:${carbon.kernel.version.iotcore}
</importFeatureDef> </importFeatureDef>
<importFeatureDef>org.wso2.carbon.device.mgt.server:${carbon.device.mgt.version} <importFeatureDef>org.wso2.carbon.device.mgt.server:${carbon.device.mgt.version}
</importFeatureDef> </importFeatureDef>

@ -81,7 +81,7 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.logging</artifactId> <artifactId>org.wso2.carbon.logging</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.apache.log4j.wso2</groupId> <groupId>org.apache.log4j.wso2</groupId>
@ -183,10 +183,10 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.ndatasource.core</artifactId> <artifactId>org.wso2.carbon.ndatasource.core</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
<scope>system</scope> <scope>system</scope>
<systemPath> <systemPath>
${basedir}/../../../../repository/components/plugins/org.wso2.carbon.ndatasource.core_${carbon.kernel.version}.jar ${basedir}/../../../../repository/components/plugins/org.wso2.carbon.ndatasource.core_${carbon.kernel.version.iotcore}.jar
</systemPath> </systemPath>
</dependency> </dependency>
<dependency> <dependency>
@ -255,7 +255,7 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.utils</artifactId> <artifactId>org.wso2.carbon.utils</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.bouncycastle.wso2</groupId> <groupId>org.bouncycastle.wso2</groupId>
@ -316,7 +316,7 @@
</exclusions> </exclusions>
<scope>system</scope> <scope>system</scope>
<systemPath> <systemPath>
${basedir}/../../../../repository/components/plugins/org.wso2.carbon.utils_${carbon.kernel.version}.jar ${basedir}/../../../../repository/components/plugins/org.wso2.carbon.utils_${carbon.kernel.version.iotcore}.jar
</systemPath> </systemPath>
</dependency> </dependency>
<dependency> <dependency>
@ -385,10 +385,10 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.user.api</artifactId> <artifactId>org.wso2.carbon.user.api</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
<scope>system</scope> <scope>system</scope>
<systemPath> <systemPath>
${basedir}/../../../../repository/components/plugins/org.wso2.carbon.user.api_${carbon.kernel.version}.jar ${basedir}/../../../../repository/components/plugins/org.wso2.carbon.user.api_${carbon.kernel.version.iotcore}.jar
</systemPath> </systemPath>
</dependency> </dependency>
</dependencies> </dependencies>
@ -460,7 +460,7 @@
<properties> <properties>
<carbon.kernel.version>4.4.3</carbon.kernel.version> <carbon.kernel.version.iotcore>4.4.3</carbon.kernel.version.iotcore>
<!-- Carbon Device Management --> <!-- Carbon Device Management -->
<carbon.device.mgt.version>1.2.3-SNAPSHOT</carbon.device.mgt.version> <carbon.device.mgt.version>1.2.3-SNAPSHOT</carbon.device.mgt.version>

@ -193,7 +193,7 @@
</bundleDef> </bundleDef>
</bundles> </bundles>
<importFeatures> <importFeatures>
<importFeatureDef>org.wso2.carbon.core.server:${carbon.kernel.version} <importFeatureDef>org.wso2.carbon.core.server:${carbon.kernel.version.iotcore}
</importFeatureDef> </importFeatureDef>
<importFeatureDef>org.wso2.carbon.device.mgt.server:${carbon.device.mgt.version} <importFeatureDef>org.wso2.carbon.device.mgt.server:${carbon.device.mgt.version}
</importFeatureDef> </importFeatureDef>

@ -56,7 +56,7 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.logging</artifactId> <artifactId>org.wso2.carbon.logging</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.apache.log4j.wso2</groupId> <groupId>org.apache.log4j.wso2</groupId>
@ -131,7 +131,7 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.ndatasource.core</artifactId> <artifactId>org.wso2.carbon.ndatasource.core</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.wso2.carbon.devicemgt-plugins</groupId> <groupId>org.wso2.carbon.devicemgt-plugins</groupId>
@ -196,17 +196,17 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.user.core</artifactId> <artifactId>org.wso2.carbon.user.core</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.user.api</artifactId> <artifactId>org.wso2.carbon.user.api</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.utils</artifactId> <artifactId>org.wso2.carbon.utils</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.bouncycastle.wso2</groupId> <groupId>org.bouncycastle.wso2</groupId>
@ -394,7 +394,7 @@
<carbon.device.mgt.plugin.version>2.2.3-SNAPSHOT</carbon.device.mgt.plugin.version> <carbon.device.mgt.plugin.version>2.2.3-SNAPSHOT</carbon.device.mgt.plugin.version>
<carbon.commons.version>4.4.8</carbon.commons.version> <carbon.commons.version>4.4.8</carbon.commons.version>
<carbon.kernel.version>4.4.3</carbon.kernel.version> <carbon.kernel.version.iotcore>4.4.3</carbon.kernel.version.iotcore>
<carbon-p2-plugin.version>1.5.3</carbon-p2-plugin.version> <carbon-p2-plugin.version>1.5.3</carbon-p2-plugin.version>
<org.apache.httpcomponents.version>4.1</org.apache.httpcomponents.version> <org.apache.httpcomponents.version>4.1</org.apache.httpcomponents.version>

@ -193,7 +193,7 @@
</bundleDef> </bundleDef>
</bundles> </bundles>
<importFeatures> <importFeatures>
<importFeatureDef>org.wso2.carbon.core.server:${carbon.kernel.version} <importFeatureDef>org.wso2.carbon.core.server:${carbon.kernel.version.iotcore}
</importFeatureDef> </importFeatureDef>
<importFeatureDef>org.wso2.carbon.device.mgt.server:${carbon.device.mgt.version} <importFeatureDef>org.wso2.carbon.device.mgt.server:${carbon.device.mgt.version}
</importFeatureDef> </importFeatureDef>

@ -56,7 +56,7 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.logging</artifactId> <artifactId>org.wso2.carbon.logging</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.apache.log4j.wso2</groupId> <groupId>org.apache.log4j.wso2</groupId>
@ -131,7 +131,7 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.ndatasource.core</artifactId> <artifactId>org.wso2.carbon.ndatasource.core</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.wso2.carbon.devicemgt-plugins</groupId> <groupId>org.wso2.carbon.devicemgt-plugins</groupId>
@ -196,7 +196,7 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.utils</artifactId> <artifactId>org.wso2.carbon.utils</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.bouncycastle.wso2</groupId> <groupId>org.bouncycastle.wso2</groupId>
@ -384,7 +384,7 @@
<carbon.device.mgt.plugin.version>2.2.3-SNAPSHOT</carbon.device.mgt.plugin.version> <carbon.device.mgt.plugin.version>2.2.3-SNAPSHOT</carbon.device.mgt.plugin.version>
<carbon.commons.version>4.4.8</carbon.commons.version> <carbon.commons.version>4.4.8</carbon.commons.version>
<carbon.kernel.version>4.4.3</carbon.kernel.version> <carbon.kernel.version.iotcore>4.4.3</carbon.kernel.version.iotcore>
<carbon-p2-plugin.version>1.5.3</carbon-p2-plugin.version> <carbon-p2-plugin.version>1.5.3</carbon-p2-plugin.version>
<org.apache.httpcomponents.version>4.1</org.apache.httpcomponents.version> <org.apache.httpcomponents.version>4.1</org.apache.httpcomponents.version>

@ -193,7 +193,7 @@
</bundleDef> </bundleDef>
</bundles> </bundles>
<importFeatures> <importFeatures>
<importFeatureDef>org.wso2.carbon.core.server:${carbon.kernel.version} <importFeatureDef>org.wso2.carbon.core.server:${carbon.kernel.version.iotcore}
</importFeatureDef> </importFeatureDef>
<importFeatureDef>org.wso2.carbon.device.mgt.server:${carbon.device.mgt.version} <importFeatureDef>org.wso2.carbon.device.mgt.server:${carbon.device.mgt.version}
</importFeatureDef> </importFeatureDef>

@ -56,7 +56,7 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.logging</artifactId> <artifactId>org.wso2.carbon.logging</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.apache.log4j.wso2</groupId> <groupId>org.apache.log4j.wso2</groupId>
@ -131,7 +131,7 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.ndatasource.core</artifactId> <artifactId>org.wso2.carbon.ndatasource.core</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.wso2.carbon.devicemgt-plugins</groupId> <groupId>org.wso2.carbon.devicemgt-plugins</groupId>
@ -196,7 +196,7 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.utils</artifactId> <artifactId>org.wso2.carbon.utils</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.bouncycastle.wso2</groupId> <groupId>org.bouncycastle.wso2</groupId>
@ -384,7 +384,7 @@
<carbon.device.mgt.plugin.version>2.2.3-SNAPSHOT</carbon.device.mgt.plugin.version> <carbon.device.mgt.plugin.version>2.2.3-SNAPSHOT</carbon.device.mgt.plugin.version>
<carbon.commons.version>4.4.8</carbon.commons.version> <carbon.commons.version>4.4.8</carbon.commons.version>
<carbon.kernel.version>4.4.3</carbon.kernel.version> <carbon.kernel.version.iotcore>4.4.3</carbon.kernel.version.iotcore>
<carbon-p2-plugin.version>1.5.3</carbon-p2-plugin.version> <carbon-p2-plugin.version>1.5.3</carbon-p2-plugin.version>
<org.apache.httpcomponents.version>4.1</org.apache.httpcomponents.version> <org.apache.httpcomponents.version>4.1</org.apache.httpcomponents.version>

@ -194,7 +194,7 @@
</bundleDef> </bundleDef>
</bundles> </bundles>
<importFeatures> <importFeatures>
<importFeatureDef>org.wso2.carbon.core.server:${carbon.kernel.version} <importFeatureDef>org.wso2.carbon.core.server:${carbon.kernel.version.iotcore}
</importFeatureDef> </importFeatureDef>
<importFeatureDef>org.wso2.carbon.device.mgt.server:${carbon.device.mgt.version} <importFeatureDef>org.wso2.carbon.device.mgt.server:${carbon.device.mgt.version}
</importFeatureDef> </importFeatureDef>

@ -56,7 +56,7 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.logging</artifactId> <artifactId>org.wso2.carbon.logging</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.apache.log4j.wso2</groupId> <groupId>org.apache.log4j.wso2</groupId>
@ -131,7 +131,7 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.ndatasource.core</artifactId> <artifactId>org.wso2.carbon.ndatasource.core</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.wso2.carbon.devicemgt-plugins</groupId> <groupId>org.wso2.carbon.devicemgt-plugins</groupId>
@ -196,7 +196,7 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.utils</artifactId> <artifactId>org.wso2.carbon.utils</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.bouncycastle.wso2</groupId> <groupId>org.bouncycastle.wso2</groupId>
@ -384,7 +384,7 @@
<carbon.device.mgt.plugin.version>2.2.3-SNAPSHOT</carbon.device.mgt.plugin.version> <carbon.device.mgt.plugin.version>2.2.3-SNAPSHOT</carbon.device.mgt.plugin.version>
<carbon.commons.version>4.4.8</carbon.commons.version> <carbon.commons.version>4.4.8</carbon.commons.version>
<carbon.kernel.version>4.4.3</carbon.kernel.version> <carbon.kernel.version.iotcore>4.4.3</carbon.kernel.version.iotcore>
<carbon-p2-plugin.version>1.5.3</carbon-p2-plugin.version> <carbon-p2-plugin.version>1.5.3</carbon-p2-plugin.version>
<org.apache.httpcomponents.version>4.1</org.apache.httpcomponents.version> <org.apache.httpcomponents.version>4.1</org.apache.httpcomponents.version>

@ -193,7 +193,7 @@
</bundleDef> </bundleDef>
</bundles> </bundles>
<importFeatures> <importFeatures>
<importFeatureDef>org.wso2.carbon.core.server:${carbon.kernel.version} <importFeatureDef>org.wso2.carbon.core.server:${carbon.kernel.version.iotcore}
</importFeatureDef> </importFeatureDef>
<importFeatureDef>org.wso2.carbon.device.mgt.server:${carbon.device.mgt.version} <importFeatureDef>org.wso2.carbon.device.mgt.server:${carbon.device.mgt.version}
</importFeatureDef> </importFeatureDef>

@ -57,7 +57,7 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.logging</artifactId> <artifactId>org.wso2.carbon.logging</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.apache.log4j.wso2</groupId> <groupId>org.apache.log4j.wso2</groupId>
@ -132,7 +132,7 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.ndatasource.core</artifactId> <artifactId>org.wso2.carbon.ndatasource.core</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.wso2.carbon.devicemgt-plugins</groupId> <groupId>org.wso2.carbon.devicemgt-plugins</groupId>
@ -197,7 +197,7 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.utils</artifactId> <artifactId>org.wso2.carbon.utils</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.bouncycastle.wso2</groupId> <groupId>org.bouncycastle.wso2</groupId>
@ -375,7 +375,7 @@
<carbon.device.mgt.plugin.version>2.2.3-SNAPSHOT</carbon.device.mgt.plugin.version> <carbon.device.mgt.plugin.version>2.2.3-SNAPSHOT</carbon.device.mgt.plugin.version>
<carbon.commons.version>4.4.8</carbon.commons.version> <carbon.commons.version>4.4.8</carbon.commons.version>
<carbon.kernel.version>4.4.3</carbon.kernel.version> <carbon.kernel.version.iotcore>4.4.3</carbon.kernel.version.iotcore>
<carbon-p2-plugin.version>1.5.3</carbon-p2-plugin.version> <carbon-p2-plugin.version>1.5.3</carbon-p2-plugin.version>
<org.apache.httpcomponents.version>4.1</org.apache.httpcomponents.version> <org.apache.httpcomponents.version>4.1</org.apache.httpcomponents.version>

@ -68,7 +68,7 @@
</bundleDef> </bundleDef>
</bundles> </bundles>
<importFeatures> <importFeatures>
<importFeatureDef>org.wso2.carbon.core.server:${carbon.kernel.version}</importFeatureDef> <importFeatureDef>org.wso2.carbon.core.server:${carbon.kernel.version.iotcore}</importFeatureDef>
</importFeatures> </importFeatures>
</configuration> </configuration>
</execution> </execution>

@ -49,7 +49,7 @@
<artifactItem> <artifactItem>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>wso2carbon-core</artifactId> <artifactId>wso2carbon-core</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
<type>zip</type> <type>zip</type>
<overWrite>true</overWrite> <overWrite>true</overWrite>
<outputDirectory>target</outputDirectory> <outputDirectory>target</outputDirectory>
@ -514,13 +514,13 @@
<!--********************************************--> <!--********************************************-->
<featureArtifactDef> <featureArtifactDef>
org.wso2.carbon:org.wso2.carbon.core.feature:${carbon.kernel.version} org.wso2.carbon:org.wso2.carbon.core.feature:${carbon.kernel.version.iotcore}
</featureArtifactDef> </featureArtifactDef>
<featureArtifactDef> <featureArtifactDef>
org.wso2.carbon:org.wso2.carbon.core.runtime.feature:${carbon.kernel.version} org.wso2.carbon:org.wso2.carbon.core.runtime.feature:${carbon.kernel.version.iotcore}
</featureArtifactDef> </featureArtifactDef>
<featureArtifactDef> <featureArtifactDef>
org.wso2.carbon:org.wso2.carbon.core.ui.feature:${carbon.kernel.version} org.wso2.carbon:org.wso2.carbon.core.ui.feature:${carbon.kernel.version.iotcore}
</featureArtifactDef> </featureArtifactDef>
<!-- Carbon Commons Features --> <!-- Carbon Commons Features -->
@ -718,7 +718,7 @@
<metadataRepository>file:${basedir}/target/p2-repo</metadataRepository> <metadataRepository>file:${basedir}/target/p2-repo</metadataRepository>
<artifactRepository>file:${basedir}/target/p2-repo</artifactRepository> <artifactRepository>file:${basedir}/target/p2-repo</artifactRepository>
<targetPath> <targetPath>
file:${basedir}/target/wso2carbon-core-${carbon.kernel.version}/repository/components file:${basedir}/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/components
</targetPath> </targetPath>
<profile>http-gateway</profile> <profile>http-gateway</profile>
</configuration> </configuration>
@ -734,7 +734,7 @@
<metadataRepository>file:${basedir}/target/p2-repo</metadataRepository> <metadataRepository>file:${basedir}/target/p2-repo</metadataRepository>
<artifactRepository>file:${basedir}/target/p2-repo</artifactRepository> <artifactRepository>file:${basedir}/target/p2-repo</artifactRepository>
<targetPath> <targetPath>
file:${basedir}/target/wso2carbon-core-${carbon.kernel.version}/repository/components file:${basedir}/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/components
</targetPath> </targetPath>
<profile>device-key-manager</profile> <profile>device-key-manager</profile>
</configuration> </configuration>
@ -750,7 +750,7 @@
<metadataRepository>file:${basedir}/target/p2-repo</metadataRepository> <metadataRepository>file:${basedir}/target/p2-repo</metadataRepository>
<artifactRepository>file:${basedir}/target/p2-repo</artifactRepository> <artifactRepository>file:${basedir}/target/p2-repo</artifactRepository>
<targetPath> <targetPath>
file:${basedir}/target/wso2carbon-core-${carbon.kernel.version}/repository/components file:${basedir}/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/components
</targetPath> </targetPath>
<profile>devicetype-publisher</profile> <profile>devicetype-publisher</profile>
</configuration> </configuration>
@ -766,7 +766,7 @@
<metadataRepository>file:${basedir}/target/p2-repo</metadataRepository> <metadataRepository>file:${basedir}/target/p2-repo</metadataRepository>
<artifactRepository>file:${basedir}/target/p2-repo</artifactRepository> <artifactRepository>file:${basedir}/target/p2-repo</artifactRepository>
<targetPath> <targetPath>
file:${basedir}/target/wso2carbon-core-${carbon.kernel.version}/repository/components file:${basedir}/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/components
</targetPath> </targetPath>
<profile>devicetype-worker</profile> <profile>devicetype-worker</profile>
</configuration> </configuration>
@ -782,7 +782,7 @@
<metadataRepository>file:${basedir}/target/p2-repo</metadataRepository> <metadataRepository>file:${basedir}/target/p2-repo</metadataRepository>
<artifactRepository>file:${basedir}/target/p2-repo</artifactRepository> <artifactRepository>file:${basedir}/target/p2-repo</artifactRepository>
<destination> <destination>
${basedir}/target/wso2carbon-core-${carbon.kernel.version}/repository/components ${basedir}/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/components
</destination> </destination>
<deleteOldProfileFiles>true</deleteOldProfileFiles> <deleteOldProfileFiles>true</deleteOldProfileFiles>
<features> <features>
@ -1291,15 +1291,15 @@
<!--********************************************--> <!--********************************************-->
<feature> <feature>
<id>org.wso2.carbon.core.feature.group</id> <id>org.wso2.carbon.core.feature.group</id>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</feature> </feature>
<feature> <feature>
<id>org.wso2.carbon.core.runtime.feature.group</id> <id>org.wso2.carbon.core.runtime.feature.group</id>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</feature> </feature>
<feature> <feature>
<id>org.wso2.carbon.core.ui.feature.group</id> <id>org.wso2.carbon.core.ui.feature.group</id>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</feature> </feature>
<!-- Carbon Deployment Features --> <!-- Carbon Deployment Features -->
@ -1487,7 +1487,7 @@
<metadataRepository>file:${basedir}/target/p2-repo</metadataRepository> <metadataRepository>file:${basedir}/target/p2-repo</metadataRepository>
<artifactRepository>file:${basedir}/target/p2-repo</artifactRepository> <artifactRepository>file:${basedir}/target/p2-repo</artifactRepository>
<destination> <destination>
${basedir}/target/wso2carbon-core-${carbon.kernel.version}/repository/components ${basedir}/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/components
</destination> </destination>
<deleteOldProfileFiles>true</deleteOldProfileFiles> <deleteOldProfileFiles>true</deleteOldProfileFiles>
<features> <features>
@ -1527,15 +1527,15 @@
</feature> </feature>
<feature> <feature>
<id>org.wso2.carbon.core.common.feature.group</id> <id>org.wso2.carbon.core.common.feature.group</id>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</feature> </feature>
<feature> <feature>
<id>org.wso2.carbon.core.server.feature.group</id> <id>org.wso2.carbon.core.server.feature.group</id>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</feature> </feature>
<feature> <feature>
<id>org.wso2.carbon.core.runtime.feature.group</id> <id>org.wso2.carbon.core.runtime.feature.group</id>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</feature> </feature>
<feature> <feature>
<id>org.wso2.carbon.ntask.core.feature.group</id> <id>org.wso2.carbon.ntask.core.feature.group</id>
@ -1857,7 +1857,7 @@
<metadataRepository>file:${basedir}/target/p2-repo</metadataRepository> <metadataRepository>file:${basedir}/target/p2-repo</metadataRepository>
<artifactRepository>file:${basedir}/target/p2-repo</artifactRepository> <artifactRepository>file:${basedir}/target/p2-repo</artifactRepository>
<destination> <destination>
${basedir}/target/wso2carbon-core-${carbon.kernel.version}/repository/components ${basedir}/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/components
</destination> </destination>
<deleteOldProfileFiles>true</deleteOldProfileFiles> <deleteOldProfileFiles>true</deleteOldProfileFiles>
<features> <features>
@ -1899,7 +1899,7 @@
</feature> </feature>
<feature> <feature>
<id>org.wso2.carbon.core.feature.group</id> <id>org.wso2.carbon.core.feature.group</id>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</feature> </feature>
<feature> <feature>
<id>org.apache.axis2.transport.mail.feature.group</id> <id>org.apache.axis2.transport.mail.feature.group</id>
@ -1952,7 +1952,7 @@
</feature> </feature>
<feature> <feature>
<id>org.wso2.carbon.core.common.feature.group</id> <id>org.wso2.carbon.core.common.feature.group</id>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</feature> </feature>
<feature> <feature>
<id>org.wso2.carbon.identity.application.mgt.server.feature.group</id> <id>org.wso2.carbon.identity.application.mgt.server.feature.group</id>
@ -1960,11 +1960,11 @@
</feature> </feature>
<feature> <feature>
<id>org.wso2.carbon.core.server.feature.group</id> <id>org.wso2.carbon.core.server.feature.group</id>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</feature> </feature>
<feature> <feature>
<id>org.wso2.carbon.core.runtime.feature.group</id> <id>org.wso2.carbon.core.runtime.feature.group</id>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</feature> </feature>
<feature> <feature>
<id>org.wso2.carbon.ntask.core.feature.group</id> <id>org.wso2.carbon.ntask.core.feature.group</id>
@ -2303,7 +2303,7 @@
<metadataRepository>file:${basedir}/target/p2-repo</metadataRepository> <metadataRepository>file:${basedir}/target/p2-repo</metadataRepository>
<artifactRepository>file:${basedir}/target/p2-repo</artifactRepository> <artifactRepository>file:${basedir}/target/p2-repo</artifactRepository>
<destination> <destination>
${basedir}/target/wso2carbon-core-${carbon.kernel.version}/repository/components ${basedir}/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/components
</destination> </destination>
<deleteOldProfileFiles>true</deleteOldProfileFiles> <deleteOldProfileFiles>true</deleteOldProfileFiles>
<features> <features>
@ -2438,7 +2438,7 @@
</feature> </feature>
<feature> <feature>
<id>org.wso2.carbon.core.feature.group</id> <id>org.wso2.carbon.core.feature.group</id>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</feature> </feature>
<feature> <feature>
<id>org.apache.axis2.transport.mail.feature.group</id> <id>org.apache.axis2.transport.mail.feature.group</id>
@ -2458,7 +2458,7 @@
</feature> </feature>
<feature> <feature>
<id>org.wso2.carbon.core.common.feature.group</id> <id>org.wso2.carbon.core.common.feature.group</id>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</feature> </feature>
<feature> <feature>
<id>org.wso2.carbon.user.mgt.feature.group</id> <id>org.wso2.carbon.user.mgt.feature.group</id>
@ -2470,19 +2470,19 @@
</feature> </feature>
<feature> <feature>
<id>org.wso2.carbon.core.server.feature.group</id> <id>org.wso2.carbon.core.server.feature.group</id>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</feature> </feature>
<feature> <feature>
<id>org.wso2.carbon.core.runtime.feature.group</id> <id>org.wso2.carbon.core.runtime.feature.group</id>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</feature> </feature>
<feature> <feature>
<id>org.wso2.carbon.core.feature.group</id> <id>org.wso2.carbon.core.feature.group</id>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</feature> </feature>
<feature> <feature>
<id>org.wso2.carbon.core.ui.feature.group</id> <id>org.wso2.carbon.core.ui.feature.group</id>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</feature> </feature>
<feature> <feature>
<id>org.wso2.carbon.as.runtimes.cxf.feature.group</id> <id>org.wso2.carbon.as.runtimes.cxf.feature.group</id>
@ -2895,7 +2895,7 @@
<metadataRepository>file:${basedir}/target/p2-repo</metadataRepository> <metadataRepository>file:${basedir}/target/p2-repo</metadataRepository>
<artifactRepository>file:${basedir}/target/p2-repo</artifactRepository> <artifactRepository>file:${basedir}/target/p2-repo</artifactRepository>
<destination> <destination>
${basedir}/target/wso2carbon-core-${carbon.kernel.version}/repository/components ${basedir}/target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/components
</destination> </destination>
<deleteOldProfileFiles>true</deleteOldProfileFiles> <deleteOldProfileFiles>true</deleteOldProfileFiles>
<features> <features>
@ -3021,7 +3021,7 @@
</feature> </feature>
<feature> <feature>
<id>org.wso2.carbon.core.feature.group</id> <id>org.wso2.carbon.core.feature.group</id>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</feature> </feature>
<feature> <feature>
<id>org.apache.axis2.transport.mail.feature.group</id> <id>org.apache.axis2.transport.mail.feature.group</id>
@ -3041,7 +3041,7 @@
</feature> </feature>
<feature> <feature>
<id>org.wso2.carbon.core.common.feature.group</id> <id>org.wso2.carbon.core.common.feature.group</id>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</feature> </feature>
<feature> <feature>
<id>org.wso2.carbon.user.mgt.feature.group</id> <id>org.wso2.carbon.user.mgt.feature.group</id>
@ -3053,19 +3053,19 @@
</feature> </feature>
<feature> <feature>
<id>org.wso2.carbon.core.server.feature.group</id> <id>org.wso2.carbon.core.server.feature.group</id>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</feature> </feature>
<feature> <feature>
<id>org.wso2.carbon.core.runtime.feature.group</id> <id>org.wso2.carbon.core.runtime.feature.group</id>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</feature> </feature>
<feature> <feature>
<id>org.wso2.carbon.core.feature.group</id> <id>org.wso2.carbon.core.feature.group</id>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</feature> </feature>
<feature> <feature>
<id>org.wso2.carbon.core.ui.feature.group</id> <id>org.wso2.carbon.core.ui.feature.group</id>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</feature> </feature>
<feature> <feature>
<id>org.wso2.carbon.as.runtimes.cxf.feature.group</id> <id>org.wso2.carbon.as.runtimes.cxf.feature.group</id>
@ -3457,7 +3457,7 @@
<phase>package</phase> <phase>package</phase>
<configuration> <configuration>
<tasks> <tasks>
<replace token="false" value="true" dir="target/wso2carbon-core-${carbon.kernel.version}/repository/components"> <replace token="false" value="true" dir="target/wso2carbon-core-${carbon.kernel.version.iotcore}/repository/components">
<include name="**/bundles.info" /> <include name="**/bundles.info" />
</replace> </replace>
</tasks> </tasks>

@ -193,7 +193,7 @@
</bundleDef> </bundleDef>
</bundles> </bundles>
<importFeatures> <importFeatures>
<importFeatureDef>org.wso2.carbon.core.server:${carbon.kernel.version} <importFeatureDef>org.wso2.carbon.core.server:${carbon.kernel.version.iotcore}
</importFeatureDef> </importFeatureDef>
<importFeatureDef>org.wso2.carbon.device.mgt.server:${carbon.device.mgt.version} <importFeatureDef>org.wso2.carbon.device.mgt.server:${carbon.device.mgt.version}
</importFeatureDef> </importFeatureDef>

@ -56,7 +56,7 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.logging</artifactId> <artifactId>org.wso2.carbon.logging</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.apache.log4j.wso2</groupId> <groupId>org.apache.log4j.wso2</groupId>
@ -131,7 +131,7 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.ndatasource.core</artifactId> <artifactId>org.wso2.carbon.ndatasource.core</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.wso2.carbon.devicemgt-plugins</groupId> <groupId>org.wso2.carbon.devicemgt-plugins</groupId>
@ -196,7 +196,7 @@
<dependency> <dependency>
<groupId>org.wso2.carbon</groupId> <groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.utils</artifactId> <artifactId>org.wso2.carbon.utils</artifactId>
<version>${carbon.kernel.version}</version> <version>${carbon.kernel.version.iotcore}</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.bouncycastle.wso2</groupId> <groupId>org.bouncycastle.wso2</groupId>
@ -380,7 +380,7 @@
<!-- Carbon Device Management --> <!-- Carbon Device Management -->
<carbon.devicemgt.version>1.1.0-SNAPSHOT</carbon.devicemgt.version> <carbon.devicemgt.version>1.1.0-SNAPSHOT</carbon.devicemgt.version>
<carbon.analytics.version>1.0.6-ALPHA</carbon.analytics.version> <carbon.analytics.version>1.0.6-ALPHA</carbon.analytics.version>
<carbon.kernel.version>4.4.3</carbon.kernel.version> <carbon.kernel.version.iotcore>4.4.3</carbon.kernel.version.iotcore>
<carbon.device.mgt.version>1.2.3-SNAPSHOT</carbon.device.mgt.version> <carbon.device.mgt.version>1.2.3-SNAPSHOT</carbon.device.mgt.version>
<carbon.device.mgt.jar.version>1.1.0.SNAPSHOT</carbon.device.mgt.jar.version> <carbon.device.mgt.jar.version>1.1.0.SNAPSHOT</carbon.device.mgt.jar.version>
<carbon-p2-plugin.version>1.5.3</carbon-p2-plugin.version> <carbon-p2-plugin.version>1.5.3</carbon-p2-plugin.version>

@ -27,7 +27,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.wso2.iot.devicemgt-plugins</groupId> <groupId>org.wso2.iot.devicemgt-plugins</groupId>
<artifactId>iot-devicetype-feature-installation</artifactId> <artifactId>iot-devicetype-feature-installation</artifactId>
<version>1.0.0-SNAPSHOT</version> <version>3.0.0-SNAPSHOT</version>
<packaging>pom</packaging> <packaging>pom</packaging>
<name>Creating custom distribution</name> <name>Creating custom distribution</name>
<url>http://wso2.org</url> <url>http://wso2.org</url>

@ -96,6 +96,17 @@
</exclusion> </exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<exclusions>
<exclusion>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-android-driver</artifactId>
</exclusion>
</exclusions>
<scope>compile</scope>
</dependency>
<dependency> <dependency>
<groupId>org.testng</groupId> <groupId>org.testng</groupId>
<artifactId>testng</artifactId> <artifactId>testng</artifactId>

@ -1454,6 +1454,7 @@
<!--Carbon kernel versions--> <!--Carbon kernel versions-->
<carbon.kernel.version>4.4.10</carbon.kernel.version> <carbon.kernel.version>4.4.10</carbon.kernel.version>
<carbon.kernel.version.iotcore>4.4.10</carbon.kernel.version.iotcore>
<carbon.kernel.version.range>[4.4.0, 4.5.0)</carbon.kernel.version.range> <carbon.kernel.version.range>[4.4.0, 4.5.0)</carbon.kernel.version.range>
<carbon.p2.plugin.version>1.5.4</carbon.p2.plugin.version> <carbon.p2.plugin.version>1.5.4</carbon.p2.plugin.version>

Loading…
Cancel
Save