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</artifactId> 7 <version>3.1.1</version> 8 <name>robolectric</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@24d49456</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@5ae886ef</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.robolectric</groupId> 39 <artifactId>robolectric-annotations</artifactId> 40 <version>3.1.1</version> 41 <scope>compile</scope> 42 </dependency> 43 <dependency> 44 <groupId>org.robolectric</groupId> 45 <artifactId>robolectric-resources</artifactId> 46 <version>3.1.1</version> 47 <scope>compile</scope> 48 </dependency> 49 <dependency> 50 <groupId>org.robolectric</groupId> 51 <artifactId>robolectric-utils</artifactId> 52 <version>3.1.1</version> 53 <scope>compile</scope> 54 </dependency> 55 <dependency> 56 <groupId>org.ow2.asm</groupId> 57 <artifactId>asm</artifactId> 58 <version>5.0.1</version> 59 <scope>compile</scope> 60 </dependency> 61 <dependency> 62 <groupId>org.ow2.asm</groupId> 63 <artifactId>asm-util</artifactId> 64 <version>5.0.1</version> 65 <scope>compile</scope> 66 </dependency> 67 <dependency> 68 <groupId>org.ow2.asm</groupId> 69 <artifactId>asm-commons</artifactId> 70 <version>5.0.1</version> 71 <scope>compile</scope> 72 </dependency> 73 <dependency> 74 <groupId>org.ow2.asm</groupId> 75 <artifactId>asm-analysis</artifactId> 76 <version>5.0.1</version> 77 <scope>compile</scope> 78 </dependency> 79 <dependency> 80 <groupId>org.bouncycastle</groupId> 81 <artifactId>bcprov-jdk16</artifactId> 82 <version>1.46</version> 83 <scope>compile</scope> 84 </dependency> 85 <dependency> 86 <groupId>com.ximpleware</groupId> 87 <artifactId>vtd-xml</artifactId> 88 <version>2.11</version> 89 <scope>compile</scope> 90 </dependency> 91 <dependency> 92 <groupId>com.thoughtworks.xstream</groupId> 93 <artifactId>xstream</artifactId> 94 <version>1.4.8</version> 95 <scope>compile</scope> 96 </dependency> 97 <dependency> 98 <groupId>org.apache.ant</groupId> 99 <artifactId>ant</artifactId> 100 <version>1.8.0</version> 101 <scope>compile</scope> 102 </dependency> 103 <dependency> 104 <groupId>org.apache.maven</groupId> 105 <artifactId>maven-ant-tasks</artifactId> 106 <version>2.1.3</version> 107 <scope>compile</scope> 108 </dependency> 109 <dependency> 110 <groupId>org.robolectric</groupId> 111 <artifactId>shadows-core-v23</artifactId> 112 <version>3.1.1</version> 113 <scope>runtime</scope> 114 </dependency> 115 <dependency> 116 <groupId>junit</groupId> 117 <artifactId>junit</artifactId> 118 <version>4.8.2</version> 119 <scope>test</scope> 120 </dependency> 121 <dependency> 122 <groupId>org.hamcrest</groupId> 123 <artifactId>hamcrest-core</artifactId> 124 <version>1.3</version> 125 <scope>test</scope> 126 </dependency> 127 <dependency> 128 <groupId>org.assertj</groupId> 129 <artifactId>assertj-core</artifactId> 130 <version>2.0.0</version> 131 <scope>test</scope> 132 </dependency> 133 <dependency> 134 <groupId>org.mockito</groupId> 135 <artifactId>mockito-core</artifactId> 136 <version>1.8.0</version> 137 <scope>test</scope> 138 </dependency> 139 </dependencies> 140 </project> 141