1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 4 <modelVersion>4.0.0</modelVersion> 5 <groupId>org.robolectric</groupId> 6 <artifactId>robolectric-utils</artifactId> 7 <version>3.1.1</version> 8 <name>robolectric-utils</name> 9 <description>An alternative Android testing framework.</description> 10 <url>http://robolectric.org</url> 11 <licenses> 12 <license> 13 <name>The MIT License</name> 14 <url>https://opensource.org/licenses/MIT</url> 15 </license> 16 </licenses> 17 <developers> 18 <developer> 19 <name>Christian Williams</name> 20 <email>christianw (a] google.com</email> 21 <organization>org.apache.maven.model.Organization@33c4859b</organization> 22 <organizationUrl>http://google.com</organizationUrl> 23 </developer> 24 <developer> 25 <name>Jonathan Gerrish</name> 26 <email>jongerrish (a] google.com</email> 27 <organization>org.apache.maven.model.Organization@63d8fb7e</organization> 28 <organizationUrl>http://google.com</organizationUrl> 29 </developer> 30 </developers> 31 <scm> 32 <connection>scm:git:git://github.com/robolectric/robolectric.git</connection> 33 <developerConnection>scm:git:https://github.com/robolectric/robolectric.git</developerConnection> 34 <url>git (a] github.com:robolectric/robolectric.git</url> 35 </scm> 36 <dependencies> 37 <dependency> 38 <groupId>org.ow2.asm</groupId> 39 <artifactId>asm</artifactId> 40 <version>5.0.1</version> 41 <scope>compile</scope> 42 </dependency> 43 <dependency> 44 <groupId>org.ow2.asm</groupId> 45 <artifactId>asm-commons</artifactId> 46 <version>5.0.1</version> 47 <scope>compile</scope> 48 </dependency> 49 <dependency> 50 <groupId>org.robolectric</groupId> 51 <artifactId>robolectric-annotations</artifactId> 52 <version>3.1.1</version> 53 <scope>compile</scope> 54 </dependency> 55 <dependency> 56 <groupId>com.google.android.apps.common.testing.accessibility.framework</groupId> 57 <artifactId>accessibility-test-framework</artifactId> 58 <version>2.1</version> 59 <scope>compile</scope> 60 </dependency> 61 <dependency> 62 <groupId>org.assertj</groupId> 63 <artifactId>assertj-core</artifactId> 64 <version>2.0.0</version> 65 <scope>test</scope> 66 </dependency> 67 <dependency> 68 <groupId>org.mockito</groupId> 69 <artifactId>mockito-core</artifactId> 70 <version>1.9.5</version> 71 <scope>test</scope> 72 </dependency> 73 </dependencies> 74 </project> 75