<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright (c) 2015, WSO2 Inc. (http:www.wso2.org) All Rights Reserved. ~ ~ WSO2 Inc. licenses this file to you under the Apache License, ~ Version 2.0 (the "License"); you may not use this file except ~ in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, ~ software distributed under the License is distributed on an ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ~ KIND, either express or implied. See the License for the ~ specific language governing permissions and limitations ~ under the License. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.wso2.iot.agents</groupId> <artifactId>org.wso2.carbon.device.mgt.iot.androidsense.agent</artifactId> <version>1.0.0</version> <name>Android Sense</name> <description>Android Sense</description> <packaging>pom</packaging> <build> <plugins> <plugin> <artifactId>exec-maven-plugin</artifactId> <groupId>org.codehaus.mojo</groupId> <executions> <execution> <id>Gradle Build</id> <phase>generate-sources</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>./gradlew</executable> <arguments> <argument>assembleRelease</argument> </arguments> </configuration> </execution> </executions> </plugin> </plugins> </build> <repositories> <repository> <id>wso2-nexus</id> <name>WSO2 internal Repository</name> <url>http://maven.wso2.org/nexus/content/groups/wso2-public/</url> <releases> <enabled>true</enabled> <updatePolicy>daily</updatePolicy> <checksumPolicy>ignore</checksumPolicy> </releases> </repository> <repository> <id>wso2.releases</id> <name>WSO2 internal Repository</name> <url>http://maven.wso2.org/nexus/content/repositories/releases/</url> <releases> <enabled>true</enabled> <updatePolicy>daily</updatePolicy> <checksumPolicy>ignore</checksumPolicy> </releases> </repository> </repositories> <dependencies> <!--Dependency on Sidhdhi - required for PolicyMgt--> <dependency> <groupId>org.wso2.siddhi</groupId> <artifactId>siddhi-query-compiler</artifactId> <version>${sidhdhi.version}</version> </dependency> <dependency> <groupId>org.wso2.siddhi</groupId> <artifactId>siddhi-query-api</artifactId> <version>${sidhdhi.version}</version> </dependency> <dependency> <groupId>org.wso2.siddhi</groupId> <artifactId>siddhi-core</artifactId> <version>${sidhdhi.version}</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>${apache-httpclient.version}</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>${gson.version}</version> </dependency> </dependencies> <properties> <!-- Java Version Compatibility --> <wso2.maven.compiler.source>1.7</wso2.maven.compiler.source> <wso2.maven.compiler.target>1.7</wso2.maven.compiler.target> <!--Apache HTTP Components--> <apache-httpclient.version>4.5</apache-httpclient.version> <!-- Sidhdhi Version --> <sidhdhi.version>3.0.5</sidhdhi.version> <gson.version>2.3.1</gson.version> </properties> </project>