Merge branch 'release-1.0.0-alpha' of https://github.com/wso2/product-iots into das-ext

merge-requests/1/head
ayyoob 8 years ago
commit 97ac29c7ba

File diff suppressed because it is too large Load Diff

@ -1,11 +1,11 @@
WSO2 Mobile Device Manager (MDM)
WSO2 IoT Server
----------------------
Welcome to the WSO2 Mobile Device Manager Manager (MDM) 2.0.0-SNAPSHOT release
Welcome to the WSO2 IoT Server (IoTS) 1.0.0-ALPHA release
=======
Key Features
------------
1. Self-service device enrollment and management with end-user MDM console
1. Self-service device enrollment and management with end-user IoTS console
Installation & Running
@ -14,68 +14,19 @@ Installation & Running
2. Run the wso2server.sh or wso2server.bat file in the bin directory
3. Once the server starts, point your Web browser to
https://localhost:9443/
4. An external API manager is necessary to access the APIs MDM exposes for Android agent.
Create the following APIs,
i. http://<HOST_NAME>:9763/cdm-android-api/enrollment/
Keeps the context as /enroll and version as 1.0.0
ii. http://<HOST_NAME>:9763/cdm-android-ap/devices/license
Keeps the context as /license and version as 1.0.0
iii. http://<HOST_NAME>:9763/cdm-android-ap/operations/
Keeps the context as /operation and version as 1.0.0
5. After publishing these APIs, subscribe to these APIs with default app/any app.
4. After publishing these APIs, subscribe to these APIs with default app/any app.
In API store, go to my subscriptions and find client ID and secret.
6. Please find the maven-archetype in <PRODUCT_HOME>repository/tools to generate the mdm-android-agent project & follow the README file.
7. Go to MDM admin console.
Add a license with following properties.
Ex -: Provider -: Any text
Name -: android
Language -: en-us
Valid From -: date in {dd-mm-yyyy} format.
Valid To -: date in {dd-mm-yyyy} format.
License -: License Text
8. Configure email account.
Go to Following path and open CARBON_HOME/repository/conf/axis2 and open axis2_client.xml.
Un comment following entry and give correct credentials for email account.
<transportSender name="mailto"
class="org.apache.axis2.transport.mail.MailTransportSender">
<parameter name="mail.smtp.from">wso2demomail@gmail.com</parameter>
<parameter name="mail.smtp.user">wso2demomail</parameter>
<parameter name="mail.smtp.password">mailpassword</parameter>
<parameter name="mail.smtp.host">smtp.gmail.com</parameter>
<parameter name="mail.smtp.port">587</parameter>
<parameter name="mail.smtp.starttls.enable">true</parameter>
<parameter name="mail.smtp.auth">true</parameter>
</transportSender>
9. Install following features using carbon admin features.
MDM - iOS APNS Server 1.9.2.SNAPSHOT More Info.
MDM - iOS Device Management JAX-RS Web Application 1.9.2.SNAPSHOT More Info.
MDM - iOS Device Management Server.
10. Change Urls and settings in ios-config.xml found in CARBON_HOME/repository/conf.
11. Follow the instructions in following document to generate keys.
https://docs.wso2.com/display/EMM110/iOS+Server+Configurations
For more details, see the Installation Guide
5. Please find the maven-archetype in <PRODUCT_HOME>repository/tools to generate the mdm-android-agent project & follow the README file.
System Requirements
-------------------
1. Minimum memory - 2GB
1. Minimum memory - 4GB
2. Portal app requires full Javascript enablement of the Web browser
For known issues see
https://wso2.org/jira/issues/?filter=12190
WSO2 Mobile Device Manager (MDM) Binary Distribution Directory Structure
WSO2 IoT Server (IoTS) Binary Distribution Directory Structure
-----------------------------------------------------
EMM_HOME
@ -101,7 +52,7 @@ WSO2 Mobile Device Manager (MDM) Binary Distribution Directory Structure
various supported databases.
- lib
Contains the basic set of libraries required to startup WSO2 Enterprise Mobility Manager
Contains the basic set of libraries required to startup WSO2 IoT Server
in standalone mode
- repository
@ -154,10 +105,10 @@ WSO2 Mobile Device Manager (MDM) Binary Distribution Directory Structure
This document.
- INSTALL.txt
This document contains information on installing WSO2 Enterprise Mobility Manager.
This document contains information on installing WSO2 IoT Server.
- release-notes.html
Release information for WSO2 Enterprise Mobility Manager 2.0.0-SNAPSHOT
Release information for WSO2 IoT Server 1.0.0-ALPHA
Secure sensitive information in carbon configuration files
----------------------------------------------------------
@ -216,4 +167,4 @@ development methodology and is provided by the very same engineers who build the
For additional support information please refer to http://wso2.com/support/
---------------------------------------------------------------------------
(c) Copyright 2015 WSO2 Inc.
(c) Copyright 2016 WSO2 Inc.

@ -17,9 +17,7 @@
~ under the License.
-->
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.wso2.iot</groupId>
@ -106,26 +104,21 @@
</goals>
<configuration>
<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="userid" 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="db.dir" value="target/wso2carbon-core-${carbon.kernel.version}/repository/database" />
<property name="userid" value="wso2carbon" />
<property name="password" value="wso2carbon" />
<property name="dbURL" value="jdbc:h2:file:${basedir}/${db.dir}/WSO2DM_DB;DB_CLOSE_ON_EXIT=FALSE" />
<sql driver="org.h2.Driver" url="${dbURL}" userid="${userid}"
password="${password}"
autocommit="true" onerror="continue">
<classpath refid="maven.dependency.classpath"/>
<classpath refid="maven.compile.classpath"/>
<classpath refid="maven.runtime.classpath"/>
<sql driver="org.h2.Driver" url="${dbURL}" userid="${userid}" password="${password}" autocommit="true" onerror="continue">
<classpath refid="maven.dependency.classpath" />
<classpath refid="maven.compile.classpath" />
<classpath refid="maven.runtime.classpath" />
<fileset
file="${basedir}/../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/dbscripts/cdm/h2.sql"/>
<fileset file="${basedir}/../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/dbscripts/cdm/h2.sql" />
</sql>
<echo message="##################### END ####################"/>
<echo message="##################### END ####################" />
</tasks>
</configuration>
</execution>
@ -138,26 +131,21 @@
</goals>
<configuration>
<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="userid" value="wso2carbon"/>
<property name="password" value="wso2carbon"/>
<property name="dbURL"
value="jdbc:h2:file:${basedir}/${db.dir}/WSO2AM_DB;DB_CLOSE_ON_EXIT=FALSE"/>
<property name="db.dir" value="target/wso2carbon-core-${carbon.kernel.version}/repository/database" />
<property name="userid" value="wso2carbon" />
<property name="password" value="wso2carbon" />
<property name="dbURL" value="jdbc:h2:file:${basedir}/${db.dir}/WSO2AM_DB;DB_CLOSE_ON_EXIT=FALSE" />
<sql driver="org.h2.Driver" url="${dbURL}" userid="${userid}"
password="${password}"
autocommit="true" onerror="continue">
<classpath refid="maven.dependency.classpath"/>
<classpath refid="maven.compile.classpath"/>
<classpath refid="maven.runtime.classpath"/>
<sql driver="org.h2.Driver" url="${dbURL}" userid="${userid}" password="${password}" autocommit="true" onerror="continue">
<classpath refid="maven.dependency.classpath" />
<classpath refid="maven.compile.classpath" />
<classpath refid="maven.runtime.classpath" />
<fileset
file="${basedir}/src/repository/resources/dbscripts/apimgt/h2.sql"/>
<fileset file="${basedir}/src/repository/resources/dbscripts/apimgt/h2.sql" />
</sql>
<echo message="##################### END ####################"/>
<echo message="##################### END ####################" />
</tasks>
</configuration>
</execution>
@ -169,23 +157,21 @@
</goals>
<configuration>
<tasks>
<property name="tempdir" value="target/docs-temp"/>
<property name="jardir" value="target/jars"/>
<property name="tempdir" value="target/docs-temp" />
<property name="jardir" value="target/jars" />
<!--<property name="shindig.version" value="2.5.0-beta5" />-->
<mkdir dir="${tempdir}"/>
<mkdir dir="${tempdir}/${project.artifactId}-${project.version}/repository/components"/>
<mkdir dir="${tempdir}/${project.artifactId}-${project.version}/repository/deployment/server"/>
<mkdir dir="${tempdir}/${project.artifactId}-${project.version}/repository/deployment/server/webapps"/>
<mkdir dir="${tempdir}" />
<mkdir dir="${tempdir}/${project.artifactId}-${project.version}/repository/components" />
<mkdir dir="${tempdir}/${project.artifactId}-${project.version}/repository/deployment/server" />
<mkdir dir="${tempdir}/${project.artifactId}-${project.version}/repository/deployment/server/webapps" />
<unzip dest="${tempdir}">
<fileset dir="target">
<include name="${project.artifactId}-${project.version}.zip"/>
<include name="${project.artifactId}-${project.version}.zip" />
</fileset>
</unzip>
<copy todir="target/wso2carbon-core-${carbon.kernel.version}/repository/components"
overwrite="true">
<fileset
dir="${tempdir}/${project.artifactId}-${project.version}/repository/components"/>
<copy todir="target/wso2carbon-core-${carbon.kernel.version}/repository/components" overwrite="true">
<fileset dir="${tempdir}/${project.artifactId}-${project.version}/repository/components" />
</copy>
<!--testing -->
<!--<unzip src="target/shindig/WEB-INF/lib/shindig-common-${shindig.version}.jar" dest="${jardir}/shindig-common-${shindig.version}">
@ -206,8 +192,8 @@ d <exclude name="**/shindig.properties" /
og4j.logger.net.sf.ehcache=ERROR
</concat>
<delete file="target/${project.artifactId}-${project.version}.zip"/>
<delete dir="${tempdir}"/>
<delete file="target/${project.artifactId}-${project.version}.zip" />
<delete dir="${tempdir}" />
</tasks>
</configuration>
</execution>
@ -217,33 +203,31 @@ d <exclude name="**/shindig.properties" /
<phase>package</phase>
<configuration>
<tasks>
<mkdir dir="target/wso2carbon-core-${carbon.kernel.version}/repository/deployment/server/webapps"/>
<mkdir dir="target/wso2carbon-core-${carbon.kernel.version}/repository/deployment/server/webapps" />
<!--Make samples directory for distribution-->
<mkdir dir="target/wso2carbon-core-${carbon.kernel.version}/samples"/>
<mkdir dir="target/wso2carbon-core-${carbon.kernel.version}/samples" />
<!--Copy samples to distribution-->
<copy todir="target/wso2carbon-core-${carbon.kernel.version}/samples"
overwrite="true">
<copy todir="target/wso2carbon-core-${carbon.kernel.version}/samples" overwrite="true">
<fileset dir="../samples">
<exclude name="**/*.iml"/>
<exclude name="**/.DS_Store"/>
<exclude name="**/target/"/>
<exclude name="**/currentsensor/**"/>
<exclude name="**/digitaldisplay/**"/>
<exclude name="**/doormanager/**"/>
<exclude name="**/droneanalyzer/**"/>
<exclude name="**/firealarm/**"/>
<exclude name="**/installer/**"/>
<exclude name="**/*.iml" />
<exclude name="**/.DS_Store" />
<exclude name="**/target/" />
<exclude name="**/currentsensor/**" />
<exclude name="**/digitaldisplay/**" />
<exclude name="**/doormanager/**" />
<exclude name="**/droneanalyzer/**" />
<exclude name="**/firealarm/**" />
<exclude name="**/installer/**" />
</fileset>
</copy>
<copy todir="target/wso2carbon-core-${carbon.kernel.version}/"
overwrite="true">
<copy todir="target/wso2carbon-core-${carbon.kernel.version}/" overwrite="true">
<fileset dir="../samples/installer/">
<exclude name="**/*.iml"/>
<exclude name="**/.DS_Store"/>
<exclude name="**/target/"/>
<exclude name="**/*.iml" />
<exclude name="**/.DS_Store" />
<exclude name="**/target/" />
</fileset>
</copy>
@ -269,20 +253,20 @@ d <exclude name="**/shindig.properties" /
<phase>install</phase>
<configuration>
<tasks>
<delete dir="target/jars"/>
<delete dir="target/*.xml"/>
<delete dir="target/archive-tmp"/>
<delete dir="target/dependency-maven-plugin-markers"/>
<delete dir="target/maven-archiver"/>
<delete dir="target/wso2carbon-core-${carbon.kernel.version}"/>
<delete dir="target/wso2carbon-core-${carbon.kernel.version}"/>
<delete file="target/${project.artifactId}-${project.version}.jar"/>
<delete dir="target/sources"/>
<delete dir="target/site"/>
<delete dir="target/antrun"/>
<delete dir="src/site"/>
<delete dir="target/jars" />
<delete dir="target/*.xml" />
<delete dir="target/archive-tmp" />
<delete dir="target/dependency-maven-plugin-markers" />
<delete dir="target/maven-archiver" />
<delete dir="target/wso2carbon-core-${carbon.kernel.version}" />
<delete dir="target/wso2carbon-core-${carbon.kernel.version}" />
<delete file="target/${project.artifactId}-${project.version}.jar" />
<delete dir="target/sources" />
<delete dir="target/site" />
<delete dir="target/antrun" />
<delete dir="src/site" />
<!--<delete dir="target/shindig" />-->
<delete dir="target/jaxwebapps"/>
<delete dir="target/jaxwebapps" />
</tasks>
</configuration>
<goals>
@ -386,19 +370,6 @@ d <exclude name="**/shindig.properties" /
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<executions>
<execution>
<id>auto-clean</id>
<phase>initialize</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

@ -1,234 +1,119 @@
<html>
<head>
</head>
<body lang=EN-US link=blue vlink=purple style='tab-interval:36.0pt'>
<div class=WordSection1>
<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><b><u><span
style='font-family:Arial;mso-fareast-font-family:"Times New Roman";mso-bidi-font-family:
"Times New Roman";color:#333333'>WSO2 <span class=SpellE>IoT</span> Server
1.0.0&nbsp;Alpha&nbsp;Released</span></u></b><span style='font-family:Arial;
mso-fareast-font-family:"Times New Roman";mso-bidi-font-family:"Times New Roman";
color:#222222'><o:p></o:p></span></p>
<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
style='font-family:Arial;mso-fareast-font-family:"Times New Roman";mso-bidi-font-family:
"Times New Roman";color:#222222'>We are pleased to announce WSO2 <span
class=SpellE>IoT</span> Server 1.0.0&nbsp;alpha&nbsp;release. It can be
downloaded from<a
href="https://github.com/wso2-incubator/product-iot-server/releases/tag/IoTS-1.0.0-M3"><span
style='color:#1155CC'>https://github.com/wso2-incubator/product-iot-server/releases/tag/IoTS-1.0.0-</span></a>alpha<o:p></o:p></span></p>
<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
style='font-family:Arial;mso-fareast-font-family:"Times New Roman";mso-bidi-font-family:
"Times New Roman";color:#222222'><o:p>&nbsp;</o:p></span></p>
<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
style='font-family:Arial;mso-bidi-font-family:"Times New Roman";color:black'>WSO2
<span class=SpellE>IoT</span> Server is an extensible, open-source, multi
tenant, Internet of Things Platform for implementing server-side of <span
class=SpellE>IoT</span> Reference Architecture. It comes with a few reference
implementations for the device layer.</span><span style='font-family:Arial;
mso-bidi-font-family:"Times New Roman";color:#222222'><o:p></o:p></span></p>
<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
style='font-family:Arial;mso-bidi-font-family:"Times New Roman";color:black'><br
style='mso-special-character:line-break'>
</p>
<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
style='font-family:Arial;mso-bidi-font-family:"Times New Roman";color:black'>WSO2
<span class=SpellE>IoT</span> Server supports:</span><span style='font-family:
Arial;mso-bidi-font-family:"Times New Roman";color:#222222'><o:p></o:p></span></p>
<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
style='font-family:Arial;mso-bidi-font-family:"Times New Roman";color:#222222'><o:p>&nbsp;</o:p></span></p>
<p class=MsoNormal style='margin-left:18.0pt;text-align:justify;text-justify:
inter-ideograph;text-indent:-18.0pt;mso-list:l1 level1 lfo1;tab-stops:list 6.75pt;
vertical-align:baseline'><b><span
style='font-family:Arial;mso-bidi-font-family:"Times New Roman";color:black'>Device
Management<o:p></o:p></span></b></p>
<p class=MsoNormal style='margin-left:54.0pt;text-align:justify;text-justify:
inter-ideograph;text-indent:-18.0pt;mso-list:l1 level2 lfo1;tab-stops:list 72.0pt;
vertical-align:baseline'><span style='font-family:Arial;mso-bidi-font-family:
"Times New Roman";color:black'>Extensions for registering device types<o:p></o:p></span></p>
<p class=MsoNormal style='margin-left:54.0pt;text-align:justify;text-justify:
inter-ideograph;text-indent:-18.0pt;mso-list:l1 level2 lfo1;tab-stops:list 72.0pt;
vertical-align:baseline'><span style='font-family:Arial;mso-bidi-font-family:
"Times New Roman";color:black'>Self-service enrolment and management of
connected devices<o:p></o:p></span></p>
<p class=MsoNormal style='margin-left:54.0pt;text-align:justify;text-justify:
inter-ideograph;text-indent:-18.0pt;mso-list:l1 level2 lfo1;tab-stops:list 72.0pt;
vertical-align:baseline'><span style='font-family:Arial;mso-bidi-font-family:
"Times New Roman";color:black'>Group, manage and monitor connected devices<o:p></o:p></span></p>
<p class=MsoNormal style='margin-left:54.0pt;text-align:justify;text-justify:
inter-ideograph;text-indent:-18.0pt;mso-list:l1 level2 lfo1;tab-stops:list 72.0pt;
vertical-align:baseline'><span style='font-family:Arial;mso-bidi-font-family:
"Times New Roman";color:black'>Share device operations / data with other users<o:p></o:p></span></p>
<p class=MsoNormal style='margin-left:54.0pt;text-align:justify;text-justify:
inter-ideograph;text-indent:-18.0pt;mso-list:l1 level2 lfo1;tab-stops:list 72.0pt;
vertical-align:baseline'><span style='font-family:Arial;mso-bidi-font-family:
"Times New Roman";color:black'>Distribution and management of applications and
firmware to devices<o:p></o:p></span></p>
<p class=MsoNormal style='margin-left:54.0pt;text-align:justify;text-justify:
inter-ideograph;text-indent:-18.0pt;mso-list:l1 level2 lfo1;tab-stops:list 72.0pt;
vertical-align:baseline'><span style='font-family:Arial;mso-bidi-font-family:
"Times New Roman";color:black'>Edge computing powered by WSO2 CEP streaming
engine (Siddhi - <a href="https://github.com/wso2/siddhi"><span
style='color:#1155CC'>https://github.com/wso2/siddhi</span></a>)<o:p></o:p></span></p>
<p class=MsoNormal style='margin-left:54.0pt;text-align:justify;text-justify:
inter-ideograph;text-indent:-18.0pt;mso-list:l1 level2 lfo1;tab-stops:list 72.0pt;
vertical-align:baseline'><span style='font-family:Arial;mso-bidi-font-family:
"Times New Roman";color:black'>OOTB support for some known device types such as
Raspberry Pi, <span class=SpellE>Arduino</span> Uno, Android<o:p></o:p></span></p>
<p class=MsoNormal style='margin-left:18.0pt;text-align:justify;text-justify:
inter-ideograph;text-indent:-18.0pt;mso-list:l0 level1 lfo2;tab-stops:list 36.0pt;
vertical-align:baseline'><span class=SpellE><b><span style='font-family:
Arial;mso-bidi-font-family:"Times New Roman";color:black'>IoT</span></b></span><b><span
style='font-family:Arial;mso-bidi-font-family:"Times New Roman";color:black'>
Protocol Support<o:p></o:p></span></b></p>
<p class=MsoNormal style='margin-left:54.0pt;text-align:justify;text-justify:
inter-ideograph;text-indent:-18.0pt;mso-list:l0 level2 lfo2;tab-stops:list 72.0pt;
vertical-align:baseline'><span style='font-family:Arial;mso-bidi-font-family:
"Times New Roman";color:black'>Leverage MQTT, HTTP, <span class=SpellE>Websockets</span>
and XMPP protocols for device communications with <span class=SpellE>IoT</span>
Server<o:p></o:p></span></p>
<p class=MsoNormal style='margin-left:54.0pt;text-align:justify;text-justify:
inter-ideograph;text-indent:-18.0pt;mso-list:l0 level2 lfo2;tab-stops:list 72.0pt;
vertical-align:baseline'><span style='font-family:Arial;mso-bidi-font-family:
"Times New Roman";color:black'>Framework extension for adding more protocols
and data formats<o:p></o:p></span></p>
<p class=MsoNormal style='margin-left:18.0pt;text-align:justify;text-justify:
inter-ideograph;text-indent:-18.0pt;mso-list:l0 level1 lfo2;tab-stops:list 36.0pt;
vertical-align:baseline'><b><span style='font-family:Arial;mso-bidi-font-family:
"Times New Roman";color:black'>Analytics<o:p></o:p></span></b></p>
<p class=MsoNormal style='margin-left:54.0pt;text-align:justify;text-justify:
inter-ideograph;text-indent:-18.0pt;mso-list:l0 level2 lfo2;tab-stops:list 72.0pt;
vertical-align:baseline'><span style='font-family:Arial;mso-bidi-font-family:
"Times New Roman";color:black'>Support for batch, interactive, real-time and
predictive analytics through WSO2 DAS<o:p></o:p></span></p>
<p class=MsoNormal style='margin-left:18.0pt;text-align:justify;text-justify:
inter-ideograph;text-indent:-18.0pt;mso-list:l0 level1 lfo2;tab-stops:list 36.0pt;
vertical-align:baseline'><b><span style='font-family:Arial;mso-bidi-font-family:
"Times New Roman";color:black'>Pre-built <span class=SpellE>visualisation</span>
support for sensor readings<o:p></o:p></span></b></p>
<p class=MsoNormal style='margin-left:54.0pt;text-align:justify;text-justify:
inter-ideograph;text-indent:-18.0pt;mso-list:l0 level2 lfo2;tab-stops:list 72.0pt;
vertical-align:baseline'><span style='font-family:Arial;mso-bidi-font-family:
"Times New Roman";color:black'>View instant, <span class=SpellE>visualised</span>
statistics of individual or multiple devices<o:p></o:p></span></p>
<p class=MsoNormal style='margin-left:54.0pt;text-align:justify;text-justify:
inter-ideograph;text-indent:-18.0pt;mso-list:l0 level2 lfo2;tab-stops:list 72.0pt;
vertical-align:baseline'><span style='font-family:Arial;mso-bidi-font-family:
"Times New Roman";color:black'>Traverse through, <span class=SpellE>analyse</span>
and zoom in/out of filtered data<o:p></o:p></span></p>
<p class=MsoNormal style='margin-left:54.0pt;text-align:justify;text-justify:
inter-ideograph;text-indent:-18.0pt;mso-list:l0 level2 lfo2;tab-stops:list 72.0pt;
vertical-align:baseline'><span style='font-family:Arial;mso-bidi-font-family:
"Times New Roman";color:black'>Stats-API to write your own <span class=SpellE>visualisation</span><o:p></o:p></span></p>
<p class=MsoNormal style='margin-left:54.0pt;text-align:justify;text-justify:
inter-ideograph;text-indent:-18.0pt;mso-list:l0 level2 lfo2;tab-stops:list 72.0pt;
vertical-align:baseline'><span style='font-family:Arial;mso-bidi-font-family:
"Times New Roman";color:black'>Pre-built graphs for common sensor reading types
like temperature, velocity<o:p></o:p></span></p>
<p class=MsoNormal style='margin-left:18.0pt;text-align:justify;text-justify:
inter-ideograph;text-indent:-18.0pt;mso-list:l0 level1 lfo2;tab-stops:list 36.0pt;
vertical-align:baseline'><b><span style='font-family:Arial;mso-bidi-font-family:
"Times New Roman";color:black'>API Management for App Development<o:p></o:p></span></b></p>
<p class=MsoNormal style='margin-left:54.0pt;text-align:justify;text-justify:
inter-ideograph;text-indent:-18.0pt;mso-list:l0 level2 lfo2;tab-stops:list 72.0pt;
vertical-align:baseline'><span style='font-family:Arial;mso-bidi-font-family:
"Times New Roman";color:black'>Devices are represented as REST APIs<o:p></o:p></span></p>
<p class=MsoNormal style='margin-left:54.0pt;text-align:justify;text-justify:
inter-ideograph;text-indent:-18.0pt;mso-list:l0 level2 lfo2;tab-stops:list 72.0pt;
vertical-align:baseline'><span style='font-family:Arial;mso-bidi-font-family:
"Times New Roman";color:black'>Develop applications using Device APIs<o:p></o:p></span></p>
<p class=MsoNormal style='margin-left:18.0pt;text-align:justify;text-justify:
inter-ideograph;text-indent:-18.0pt;mso-list:l0 level1 lfo2;tab-stops:list 36.0pt;
vertical-align:baseline'><b><span style='font-family:Arial;mso-bidi-font-family:
"Times New Roman";color:black'>Identity and Access Management<o:p></o:p></span></b></p>
<p class=MsoNormal style='margin-left:54.0pt;text-align:justify;text-justify:
inter-ideograph;text-indent:-18.0pt;mso-list:l0 level2 lfo2;tab-stops:list 72.0pt;
vertical-align:baseline'><span style='font-family:Arial;mso-bidi-font-family:
"Times New Roman";color:black'>Identity Management for devices<o:p></o:p></span></p>
<p class=MsoNormal style='margin-left:54.0pt;text-align:justify;text-justify:
inter-ideograph;text-indent:-18.0pt;mso-list:l0 level2 lfo2;tab-stops:list 72.0pt;
vertical-align:baseline'><span style='font-family:Arial;mso-bidi-font-family:
"Times New Roman";color:black'>Token based access control for devices &amp;
operations (protect back end services via exposing device type APIs)<o:p></o:p></span></p>
<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:54.0pt;text-align:justify;text-justify:inter-ideograph;text-indent:
-18.0pt;mso-list:l0 level2 lfo2;tab-stops:list 72.0pt;vertical-align:baseline'><span style='font-family:Arial;mso-fareast-font-family:
"Times New Roman";mso-bidi-font-family:"Times New Roman";color:black'>Support
for SCEP protocol (encryption and authenticity)<o:p></o:p></span></p>
<p class=MsoNormal><span style='font-family:Arial;mso-fareast-font-family:"Times New Roman";
mso-bidi-font-family:"Times New Roman";color:black'><br>
</span><span style='font-family:Arial;mso-fareast-font-family:"Times New Roman";
mso-bidi-font-family:"Times New Roman";color:#333333'>List of known issues</span><span
style='font-family:Arial;mso-fareast-font-family:"Times New Roman";mso-bidi-font-family:
"Times New Roman";color:#222222'><br style='mso-special-character:line-break'>
<o:p></o:p></span></p>
<p class=MsoNormal><span style='font-family:Symbol;mso-ascii-font-family:Arial;
mso-fareast-font-family:"Times New Roman";mso-bidi-font-family:"Times New Roman";
color:#222222'>á</span><span style='font-family:Arial;mso-fareast-font-family:
"Times New Roman";mso-bidi-font-family:"Times New Roman";color:#222222'><span
style="mso-spacerun:yes">&nbsp; </span><a
href="https://wso2.org/jira/issues/?filter=13055"><span style='color:#1155CC'>https://wso2.org/jira/issues/?filter=13055</span></a><o:p></o:p></span></p>
<p class=MsoNormal><span style='font-family:Arial;mso-fareast-font-family:"Times New Roman";
mso-bidi-font-family:"Times New Roman";color:#222222'><o:p>&nbsp;</o:p></span></p>
<p class=MsoNormal><span style='font-family:Arial;mso-fareast-font-family:"Times New Roman";
mso-bidi-font-family:"Times New Roman";color:#222222'><o:p>&nbsp;</o:p></span></p>
<p class=MsoNormal><span style='font-family:Arial;mso-fareast-font-family:"Times New Roman";
mso-bidi-font-family:"Times New Roman";color:black'>Thanks and Regards,</span><span
style='font-family:Arial;mso-fareast-font-family:"Times New Roman";mso-bidi-font-family:
"Times New Roman";color:#222222'><o:p></o:p></span></p>
<p class=MsoNormal><span style='font-family:Arial;mso-fareast-font-family:"Times New Roman";
mso-bidi-font-family:"Times New Roman";color:#222222'><o:p>&nbsp;</o:p></span></p>
<p class=MsoNormal><b><span style='font-family:Arial;mso-fareast-font-family:
"Times New Roman";mso-bidi-font-family:"Times New Roman";color:black'>~ EMM / <span
class=SpellE>IoTS</span> Team ~</span></b><span style='font-family:Arial;
mso-fareast-font-family:"Times New Roman";mso-bidi-font-family:"Times New Roman";
color:#222222'><o:p></o:p></span></p>
<p class=MsoNormal><o:p>&nbsp;</o:p></p>
</div>
</body>
</html>
Release Notes - WSO2 IOT Server - Version 1.0.0 - Alpha
<h2> Bug
</h2>
<ul>
<li>[<a href='https://wso2.org/jira/browse/IOTS-17'>IOTS-17</a>] - MQTT endpoints are not secured for agent communication
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-19'>IOTS-19</a>] - XMPP sessions not closed before server shutdown
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-21'>IOTS-21</a>] - Jaggery API calls are not secured
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-34'>IOTS-34</a>] - Backend Service Invoker Fails Intermittently with Unexpected token: &lt;
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-37'>IOTS-37</a>] - Could not generate a new access token (using refresh token) by using the current token endpoint
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-47'>IOTS-47</a>] - Update the release note in the release packs as it is about EMM
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-50'>IOTS-50</a>] - users whos iot-admin role is removed is shown all options for enrol devices as users with iot-admin role
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-55'>IOTS-55</a>] - Considerable delay in server startup
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-57'>IOTS-57</a>] - Error when starting the IOT pack after pointing to the mysql database
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-64'>IOTS-64</a>] - The wso2carbon log file is growing rapidly
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-68'>IOTS-68</a>] - when a tenant is created with the same user name as super tenant seems the super tenant data are shown
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-69'>IOTS-69</a>] - until device admin was disabled the camera policy was in effect preventing the use of camera on android device
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-75'>IOTS-75</a>] - view API throws a Caused by: java.lang.NullPointerException: Tenant domain has not been set in CarbonContext
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-81'>IOTS-81</a>] - IOT devices are allways in active status
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-92'>IOTS-92</a>] - Error in executing task: Table Not Found: X1234_DeviceBatterySummaryData java.lang.RuntimeException: Table Not Found: X1234_DeviceBatterySummaryData is thown when pointing to mysql
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-93'>IOTS-93</a>] - XMPP server details are hardcoded in virtual fire alarm and devicemgt-config.xml file
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-94'>IOTS-94</a>] - Virtual firealarms that were downloaded before xmpp was enabled can not connect to xmpp protocol after enabling.
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-100'>IOTS-100</a>] - When integrating ActiveMQ as an external message broker IOTS fails to start
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-102'>IOTS-102</a>] - Device analytic line graph does not get generated when the device type has a capital letter
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-104'>IOTS-104</a>] - Remove the device type configs that is used for UI from conf directory
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-105'>IOTS-105</a>] - clean unnecessary jaggery apis
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-106'>IOTS-106</a>] - A emm console url is shown in carbon log at server startup
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-110'>IOTS-110</a>] - No email confirmation is sent to user when administrator creates a user
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-112'>IOTS-112</a>] - A prefix as &quot; Device &quot; is set to the devices that is been created
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-114'>IOTS-114</a>] - Change Role permissions: the user is unable to deselect a child node
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-117'>IOTS-117</a>] - Edit/ create Role: Domain needs to be marked as a mandatory field
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-122'>IOTS-122</a>] - Tenant - admin cannot enroll to virtual fire alarm, raspberry pi &amp; arduino
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-124'>IOTS-124</a>] - Group: View analytics loads an error
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-127'>IOTS-127</a>] - Admin cannot reset user passwords
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-129'>IOTS-129</a>] - If devicemgt-user role is deleted users cannot register
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-130'>IOTS-130</a>] - The line graph is not generated correctly for virtual firealarm
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-131'>IOTS-131</a>] - Publishing stats via MQTT protocol to iot server fails
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-134'>IOTS-134</a>] - Server startup fails when configured to use MySQL
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-136'>IOTS-136</a>] - User signup for tenant is not supported
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-150'>IOTS-150</a>] - Arduino sample is not getting proper responses
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-151'>IOTS-151</a>] - Server startup fails when configured to use Oracle
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-152'>IOTS-152</a>] - Platform Configuration display android, iOS and windows Configuration
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-153'>IOTS-153</a>] - Error is thrown when accessing device API details page
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-154'>IOTS-154</a>] - Typo /enrollmentdevicesg/download for raspberypi (g)
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-155'>IOTS-155</a>] - When browsing analytics error 500 shown to user from a group which has no devices assigned
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-156'>IOTS-156</a>] - 404 page when cancel clicked in &quot;Add New Group&quot; page
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-157'>IOTS-157</a>] - Signed up users shown an error page when navigated to policy page
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-158'>IOTS-158</a>] - Signed up users cannot create policies
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-159'>IOTS-159</a>] - Meaningful message to be shown when On / Off issued to virtual fire alarm
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-161'>IOTS-161</a>] - Remove the phrase &quot;Below QR code can also be used to enroll a device&quot;
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-163'>IOTS-163</a>] - Android sensor: only admin can login to the app
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-164'>IOTS-164</a>] - When an existing user name is used by admin no proper validation message shown
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-165'>IOTS-165</a>] - Server startup throws &quot;The following exception occurred when fetching http://www.google-analytics.com/urchin&quot;
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-166'>IOTS-166</a>] - Connected cup device analytics is failing to load
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-167'>IOTS-167</a>] - Considerable delay is taken to initialize transports for device types
</li>
</ul>
<h2> Improvement
</h2>
<ul>
<li>[<a href='https://wso2.org/jira/browse/IOTS-87'>IOTS-87</a>] - not able to compare two event streams in current IOT server
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-145'>IOTS-145</a>] - Remove the second confirmation message to remove a user or role
</li>
<li>[<a href='https://wso2.org/jira/browse/IOTS-149'>IOTS-149</a>] - Remove Windows device type from IOTS
</li>
</ul>

@ -17,11 +17,11 @@
#
product.name=WSO2 IoT Server
product.version=1.0.0-SNAPSHOT
product.version=1.0.0-ALPHA
product.key=IOT
hotdeployment=true
hotupdate=true
carbon.version=4.4.2
carbon.version=4.4.3
default.server.role=IoTServer
cep.server.role=ComplexEventProcessor
das.server.role=DataAnalyticsServer

@ -17,9 +17,7 @@
~ under the License.
-->
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.wso2.iot</groupId>
@ -38,7 +36,7 @@
<dependency>
<groupId>org.wso2.iot</groupId>
<artifactId>org.wso2.iot.admin.styles</artifactId>
<version>2.0.4-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</dependency>
</dependencies>
@ -70,8 +68,8 @@
<bundles>
<bundleDef>org.wso2.iot:org.wso2.iot.admin.styles</bundleDef>
</bundles>
<importBundles/>
<importFeatures/>
<importBundles />
<importFeatures />
</configuration>
</execution>
</executions>

@ -17,9 +17,7 @@
~ under the License.
-->
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.wso2.iot</groupId>

@ -16,9 +16,7 @@
~ under the License.
-->
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.wso2.iot</groupId>
@ -30,7 +28,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>org.wso2.iot.admin.styles</artifactId>
<packaging>bundle</packaging>
<version>2.0.4-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<name>WSO2 IoT Server - UI styles</name>
<url>http://wso2.org</url>

@ -18,9 +18,7 @@
~ under the License.
-->
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.wso2.iot</groupId>
<artifactId>wso2iot-parent</artifactId>
@ -399,12 +397,12 @@
</featureArtifactDef>
<!-- End of Governance Features -->
<!--- Notification Support: Mail -->
<!-- Notification Support: Mail -->
<featureArtifactDef>
org.apache.axis2.transport:org.apache.axis2.transport.mail.feature:${axis2-transports.wso2.version}
</featureArtifactDef>
<!--- IoT Server Features -->
<!-- IoT Server Features -->
<featureArtifactDef>
org.wso2.iot:org.wso2.iot.styles.feature:${carbon.iot.device.mgt.version}
</featureArtifactDef>
@ -540,7 +538,7 @@
</featureArtifactDef>
<!-- End of API Management Features -->
<!--- TCP Transport -->
<!-- TCP Transport -->
<featureArtifactDef>
org.apache.axis2.transport:org.apache.axis2.transport.tcp.feature:${axis2-transports.wso2.version}
</featureArtifactDef>
@ -1515,9 +1513,8 @@
<phase>package</phase>
<configuration>
<tasks>
<replace token="false" value="true"
dir="target/wso2carbon-core-${carbon.kernel.version}/repository/components">
<include name="**/bundles.info"/>
<replace token="false" value="true" dir="target/wso2carbon-core-${carbon.kernel.version}/repository/components">
<include name="**/bundles.info" />
</replace>
</tasks>
</configuration>

@ -370,13 +370,13 @@
<properties>
<carbon.kernel.version>4.4.3</carbon.kernel.version>
<carbon.device.mgt.version>1.1.0-SNAPSHOT</carbon.device.mgt.version>
<carbon.device.mgt.jar.version>1.1.0.SNAPSHOT</carbon.device.mgt.jar.version>
<carbon.device.mgt.version>1.1.0</carbon.device.mgt.version>
<carbon.device.mgt.jar.version>1.1.0</carbon.device.mgt.jar.version>
<paho.mqtt.version>1.0.2</paho.mqtt.version>
<commons-json.version>3.0.0.wso2v1</commons-json.version>
<eclipse.osgi.version>3.8.1.v20120830-144521</eclipse.osgi.version>
<carbon.device.mgt.plugin.version>2.1.0-SNAPSHOT</carbon.device.mgt.plugin.version>
<carbon.iot.device.mgt.jar.version>2.1.0.SNAPSHOT</carbon.iot.device.mgt.jar.version>
<carbon.device.mgt.plugin.version>2.1.0</carbon.device.mgt.plugin.version>
<carbon.iot.device.mgt.jar.version>2.1.0</carbon.iot.device.mgt.jar.version>
<javax.ws.rs.version>1.1.1</javax.ws.rs.version>
<!--XMPP/MQTT Version-->

@ -16,8 +16,7 @@
~ specific language governing permissions and limitations
~ under the License.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.wso2.iot</groupId>
<artifactId>wso2cdmf-tools</artifactId>
@ -25,7 +24,6 @@
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.wso2.cdmf.devicetype</groupId>
<artifactId>cdmf-devicetype-archetype</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>WSO2 CDMF Device Type Archetype</name>
@ -63,4 +61,4 @@
<archetype.packaging.version>2.4</archetype.packaging.version>
<archetype.plugin.version>2.4</archetype.plugin.version>
</properties>
</project>
</project>

@ -17,9 +17,7 @@
~ under the License.
-->
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.wso2.iot</groupId>
<artifactId>wso2iot-parent</artifactId>

@ -17,9 +17,7 @@
~ under the License.
-->
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.wso2.iot</groupId>
@ -1117,14 +1115,14 @@
<carbon.governance.version>4.5.8</carbon.governance.version>
<!-- Carbon Device Management -->
<carbon.device.mgt.version>1.1.0-SNAPSHOT</carbon.device.mgt.version>
<carbon.device.mgt.version>1.1.0</carbon.device.mgt.version>
<carbon.device.mgt.version.range>[0.8.0, 2.0.0)</carbon.device.mgt.version.range>
<!-- IOT Device Management -->
<carbon.iot.device.mgt.version>1.0.0-SNAPSHOT</carbon.iot.device.mgt.version>
<!-- Carbon Device Management Plugins-->
<carbon.device.mgt.plugin.version>2.1.0-SNAPSHOT</carbon.device.mgt.plugin.version>
<carbon.device.mgt.plugin.version>2.1.0</carbon.device.mgt.plugin.version>
<!-- API Management -->
<carbon.api.mgt.version>5.0.4</carbon.api.mgt.version>
@ -1214,9 +1212,9 @@
</properties>
<scm>
<url>https://github.com/wso2/product-mdm.git</url>
<developerConnection>scm:git:https://github.com/wso2/product-mdm.git</developerConnection>
<connection>scm:git:https://github.com/wso2/product-mdm.git</connection>
<url>https://github.com/wso2/product-iots.git</url>
<developerConnection>scm:git:https://github.com/wso2/product-iots.git</developerConnection>
<connection>scm:git:https://github.com/wso2/product-iots.git</connection>
<tag>HEAD</tag>
</scm>

Loading…
Cancel
Save