Add jcenter repository and mockito dependency to pom.xml

This commit is contained in:
Sankaranarayanan Viswanathan
2014-10-07 23:14:03 -04:00
parent 3c7747ab97
commit d6c39d4aba

17
pom.xml
View File

@@ -23,6 +23,17 @@
<url>https://github.com/Athou/commafeed</url>
</scm>
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>jcenter</id>
<name>Bintray's jcenter Repository</name>
<url>http://jcenter.bintray.com</url>
</repository>
</repositories>
<build>
<finalName>commafeed</finalName>
<resources>
@@ -299,5 +310,11 @@
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.10.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>