appstoresstats-android
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>es.arcadiaconsulting.appstorestats</groupId> <artifactId>appstoresstats-android</artifactId> <version>1.0.12</version> </dependency>
<?xml version="1.0"?> <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> <parent> <groupId>es.arcadiaconsulting.appstorestats</groupId> <artifactId>appstorestats-parent</artifactId> <version>1.0.12</version> </parent> <artifactId>appstoresstats-android</artifactId> <name>Java API for accessing App Stores statistics - Android Play Store</name> <dependencies> <dependency> <groupId>es.arcadiaconsulting.appstorestats</groupId> <artifactId>appstoresstats-common</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>net.sf.opencsv</groupId> <artifactId>opencsv</artifactId> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <type>jar</type> </dependency> <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> <type>jar</type> </dependency> <dependency> <groupId>org.apache.servicemix.bundles</groupId> <artifactId>org.apache.servicemix.bundles.smack</artifactId> <type>jar</type> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>1.9.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> <version>1.8.3</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.18.1</version> <configuration> <systemPropertyVariables> <STATS_USER_EMAIL>${appstoresstats.user.mail}</STATS_USER_EMAIL> <STATS_USER_PASSWORD>${appstoresstats.user.password}</STATS_USER_PASSWORD> </systemPropertyVariables> </configuration> </plugin> </plugins> </build> </project>