sphere-example-basic
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.sdklite</groupId>
<artifactId>sphere-example-basic</artifactId>
<version>1.0.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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>
<parent>
<artifactId>sphere-example</artifactId>
<groupId>com.sdklite</groupId>
<version>1.0.0</version>
</parent>
<groupId>com.sdklite</groupId>
<artifactId>sphere-example-basic</artifactId>
<version>1.0.0</version>
<packaging>apk</packaging>
<name>Sphere Basic Example Module</name>
<description>THe sphere basic example</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<platform.version>4.1.1.4</platform.version>
<android.plugin.version>4.3.0</android.plugin.version>
</properties>
<dependencies>
<dependency>
<groupId>com.sdklite</groupId>
<artifactId>sphere-logging-spi</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.sdklite</groupId>
<artifactId>sphere-logging-binding-logcat</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.sdklite</groupId>
<artifactId>sphere-restful</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.sdklite</groupId>
<artifactId>sphere-hybrid-spi</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.google.android</groupId>
<artifactId>android</artifactId>
<version>${platform.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<finalName>${project.artifactId}</finalName>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.simpligility.maven.plugins</groupId>
<artifactId>android-maven-plugin</artifactId>
<version>${android.plugin.version}</version>
<extensions>true</extensions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>com.simpligility.maven.plugins</groupId>
<artifactId>android-maven-plugin</artifactId>
<configuration>
<sdk>
<platform>16</platform>
</sdk>
</configuration>
</plugin>
</plugins>
</build>
</project>