robotium
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.jayway.android.robotium</groupId> <artifactId>robotium</artifactId> <version>5.6.3</version> </dependency>
<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>com.jayway.android.robotium</groupId> <artifactId>robotium</artifactId> <version>5.6.3</version> <packaging>pom</packaging> <name>Robotium</name> <description>User scenario testing for Android</description> <url>http://www.robotium.org/</url> <inceptionYear>2009</inceptionYear> <modules> <module>robotium-solo</module> </modules> <properties> <scm.branch>master</scm.branch> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.version>3.2.5</maven.version> <android.jar.version>4.0.1.2</android.jar.version> </properties> <scm> <url>http://github.com/jayway/robotium/tree/${scm.branch}</url> <connection>scm:git:git://github.com/jayway/robotium.git</connection> <developerConnection>scm:git:ssh://git@github.com/jayway/robotium.git</developerConnection> <tag>robotium-5.6.3</tag> </scm> <issueManagement> <system>Google Code Issue Tracking</system> <url>http://code.google.com/p/robotium/issues/list</url> </issueManagement> <ciManagement> <system>Hudson</system> <url>http://hudson.josefson.org/view/Robotium/</url> </ciManagement> <licenses> <license> <name>Apache 2.0</name> <url>LICENSE</url> </license> </licenses> <developers> <developer> <name>See homepage and mailinglist for contributors.</name> <id>robotium-project</id> <url>http://www.robotium.org/</url> <roles> <role>Developer</role> <role>Contributor</role> </roles> </developer> </developers> <mailingLists> <mailingList> <name>Robotium Developers</name> <archive>http://groups.google.com/group/robotium-developers/topics</archive> </mailingList> </mailingLists> <prerequisites> <maven>${maven.version}</maven> </prerequisites> <dependencyManagement> <dependencies> <dependency> <groupId>com.google.android</groupId> <artifactId>android</artifactId> <version>${android.jar.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.android</groupId> <artifactId>android-test</artifactId> <version>${android.jar.version}</version> <scope>provided</scope> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>2.6.1</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.2</version> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>2.5.2</version> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>2.5</version> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>2.7</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.18.1</version> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.1</version> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.5.1</version> </plugin> <plugin> <artifactId>maven-scm-plugin</artifactId> <version>1.9.2</version> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>3.4</version> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>1.4</version> </plugin> <plugin> <!-- the versions plugin can be used to check for new plugin versions like this: mvn versions:display-plugin-updates --> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.1</version> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.5.3</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-scm-plugin</artifactId> <configuration> <scmVersionType>branch</scmVersionType> <scmVersion>${scm.branch}</scmVersion> </configuration> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <arguments>-Pofficial-release</arguments> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Build-Source-Version>1.5</Build-Source-Version> <Build-Target-Version>1.5</Build-Target-Version> </manifestEntries> </archive> </configuration> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <phase>initialize</phase> </execution> </executions> <configuration> <rules> <requireMavenVersion> <version>[${maven.version},)</version> <message>Check for Maven version >=${maven.version} failed. Update your Maven install.</message> </requireMavenVersion> </rules> </configuration> </plugin> </plugins> <resources> <resource> <directory>src/main/resources</directory> </resource> <resource> <directory>src/main/java</directory> <includes> <include>**/*.js</include> </includes> </resource> </resources> </build> <distributionManagement> <repository> <id>oss.sonatype.org-jayway-staging</id> <name>OpenSource Release Staging on Sonatype.org</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>oss.sonatype.org-jayway-snapshots</id> <name>Jayway OpenSource SNAPSHOTs on Sonatype.org</name> <url>https://oss.sonatype.org/content/repositories/jayway-snapshots/</url> </snapshotRepository> </distributionManagement> <profiles> <profile> <id>official-release</id> <build> <plugins> <!-- We want to sign the artifact, the POM, and all attached artifacts --> <plugin> <artifactId>maven-gpg-plugin</artifactId> <configuration> <useAgent>true</useAgent> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <!-- We want to deploy the artifact to a staging location for perusal --> <plugin> <inherited>true</inherited> <artifactId>maven-deploy-plugin</artifactId> <configuration> <updateReleaseInfo>true</updateReleaseInfo> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <encoding>${project.build.sourceEncoding}</encoding> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>