Home | History | Annotate | Download | only in library
      1 <?xml version="1.0" encoding="UTF-8"?>
      2 <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">
      3   <modelVersion>4.0.0</modelVersion>
      4 
      5   <parent>
      6     <groupId>com.bumptech.glide</groupId>
      7     <artifactId>glide-parent</artifactId>
      8     <version>3.3.0-SNAPSHOT</version>
      9     <relativePath>../pom.xml</relativePath>
     10   </parent>
     11 
     12   <artifactId>glide</artifactId>
     13   <packaging>aar</packaging>
     14   <name>Glide</name>
     15 
     16   <dependencies>
     17     <dependency>
     18       <groupId>org.roboguice</groupId>
     19       <artifactId>roboguice</artifactId>
     20       <version>2.0</version>
     21       <scope>test</scope>
     22     </dependency>
     23     <dependency>
     24       <groupId>org.apache.httpcomponents</groupId>
     25       <artifactId>httpclient</artifactId>
     26       <version>4.0.1</version>
     27       <scope>test</scope>
     28     </dependency>
     29     <dependency>
     30       <groupId>junit</groupId>
     31       <artifactId>junit</artifactId>
     32       <version>4.11</version>
     33       <scope>test</scope>
     34     </dependency>
     35     <dependency>
     36       <groupId>com.jakewharton</groupId>
     37       <artifactId>disklrucache</artifactId>
     38       <version>2.0.2</version>
     39     </dependency>
     40     <dependency>
     41       <groupId>org.robolectric</groupId>
     42       <artifactId>robolectric</artifactId>
     43       <version>2.4-SNAPSHOT</version>
     44       <scope>test</scope>
     45     </dependency>
     46     <dependency>
     47       <groupId>org.hamcrest</groupId>
     48       <artifactId>hamcrest-core</artifactId>
     49       <version>1.2</version>
     50       <scope>test</scope>
     51     </dependency>
     52     <dependency>
     53       <groupId>org.mockito</groupId>
     54       <artifactId>mockito-all</artifactId>
     55       <version>1.9.5</version>
     56       <scope>test</scope>
     57     </dependency>
     58     <dependency>
     59       <groupId>com.bumptech.glide</groupId>
     60       <artifactId>glide-gif-decoder</artifactId>
     61       <version>3.3.0-SNAPSHOT</version>
     62     </dependency>
     63   </dependencies>
     64 </project>
     65