2015-08-11 19:36:48 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2015-08-12 20:20:42 +00:00
|
|
|
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>
|
2015-08-13 09:21:38 +00:00
|
|
|
<artifactId>org.wso2.carbon.device.mgt.iot.sample.raspberrypi</artifactId>
|
2015-08-12 20:20:42 +00:00
|
|
|
<groupId>org.wso2.carbon.device.mgt.iot.server.sample</groupId>
|
|
|
|
|
<version>${carbon.iot.device.mgt.version}</version>
|
2015-08-13 09:21:38 +00:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
2015-08-12 20:20:42 +00:00
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2015-08-11 19:36:48 +00:00
|
|
|
|
2015-08-12 20:20:42 +00:00
|
|
|
<artifactId>org.wso2.carbon.device.mgt.iot.sample.raspberrypi.service.impl</artifactId>
|
|
|
|
|
<version>${carbon.iot.device.mgt.version}</version>
|
2015-08-11 19:36:48 +00:00
|
|
|
|
2015-08-12 20:20:42 +00:00
|
|
|
<packaging>war</packaging>
|
|
|
|
|
<name>WSO2 Carbon - IoT Server API - RaspberryPi API</name>
|
2015-08-11 19:36:48 +00:00
|
|
|
|
2015-08-12 20:20:42 +00:00
|
|
|
<dependencies>
|
|
|
|
|
<!-- CDM -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.wso2.carbon.devicemgt</groupId>
|
|
|
|
|
<artifactId>org.wso2.carbon.device.mgt.common</artifactId>
|
2015-08-13 21:08:10 +00:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.wso2.carbon.devicemgt</groupId>
|
|
|
|
|
<artifactId>org.wso2.carbon.device.mgt.core</artifactId>
|
2015-08-12 20:20:42 +00:00
|
|
|
</dependency>
|
2015-08-11 19:36:48 +00:00
|
|
|
|
2015-08-12 20:20:42 +00:00
|
|
|
<!--CXF -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-rt-frontend-jaxws</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-rt-transports-http</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--MQTT -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.eclipse.paho</groupId>
|
|
|
|
|
<artifactId>mqtt-client</artifactId>
|
|
|
|
|
</dependency>
|
2015-08-11 19:36:48 +00:00
|
|
|
|
2015-08-12 20:20:42 +00:00
|
|
|
<!--IOT -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
<artifactId>httpasyncclient</artifactId>
|
|
|
|
|
<version>4.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.wso2.carbon.device.mgt.iot</groupId>
|
|
|
|
|
<artifactId>org.wso2.carbon.device.mgt.iot.common</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.wso2.carbon.device.mgt.iot.server.sample</groupId>
|
|
|
|
|
<artifactId>org.wso2.carbon.device.mgt.iot.sample.raspberrypi.plugin.impl</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--JAX-RS -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
|
<artifactId>jackson-core-asl</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
|
<artifactId>jackson-jaxrs</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax</groupId>
|
|
|
|
|
<artifactId>javaee-web-api</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.ws.rs</groupId>
|
|
|
|
|
<artifactId>jsr311-api</artifactId>
|
2015-08-13 21:08:10 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
2015-08-13 22:43:30 +00:00
|
|
|
|
2015-08-12 20:20:42 +00:00
|
|
|
</dependencies>
|
2015-08-11 19:36:48 +00:00
|
|
|
|
|
|
|
|
|
2015-08-12 20:20:42 +00:00
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
|
<source>${wso2.maven.compiler.source}</source>
|
|
|
|
|
<target>${wso2.maven.compiler.target}</target>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<warName>raspberrypi</warName>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2015-08-11 19:36:48 +00:00
|
|
|
|
|
|
|
|
</project>
|