1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 3 <modelVersion>4.0.0</modelVersion> 4 <groupId>org.mockito</groupId> 5 <artifactId>mockito-core</artifactId> 6 <version>1.10.19</version> 7 <dependencies> 8 <dependency> 9 <groupId>org.hamcrest</groupId> 10 <artifactId>hamcrest-core</artifactId> 11 <version>1.1</version> 12 <scope>runtime</scope> 13 </dependency> 14 <dependency> 15 <groupId>org.objenesis</groupId> 16 <artifactId>objenesis</artifactId> 17 <version>2.1</version> 18 <scope>runtime</scope> 19 </dependency> 20 </dependencies> 21 <name>Mockito</name> 22 <packaging>jar</packaging> 23 <url>http://www.mockito.org</url> 24 <description>Mock objects library for java</description> 25 <licenses> 26 <license> 27 <name>The MIT License</name> 28 <url>http://github.com/mockito/mockito/blob/master/LICENSE</url> 29 <distribution>repo</distribution> 30 </license> 31 </licenses> 32 <scm> 33 <url>http://github.com/mockito/mockito</url> 34 </scm> 35 <developers> 36 <developer> 37 <id>szczepiq</id> 38 <name>Szczepan Faber</name> 39 </developer> 40 </developers> 41 </project> 42