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>org.sonatype.oss</groupId> 7 <artifactId>oss-parent</artifactId> 8 <version>7</version> 9 </parent> 10 11 <groupId>com.bumptech.glide</groupId> 12 <artifactId>glide-parent</artifactId> 13 <version>3.3.0-SNAPSHOT</version> 14 <packaging>pom</packaging> 15 16 <name>Glide (Parent)</name> 17 18 <modules> 19 <module>library</module> 20 <module>third_party</module> 21 <module>samples</module> 22 </modules> 23 24 <dependencies> 25 <dependency> 26 <groupId>android.support</groupId> 27 <artifactId>compatibility-v4</artifactId> 28 <version>19.1.0</version> 29 </dependency> 30 <dependency> 31 <groupId>android</groupId> 32 <artifactId>android</artifactId> 33 <version>4.4.2_r3</version> 34 <scope>provided</scope> 35 </dependency> 36 <dependency> 37 <groupId>com.mcxiaoke.volley</groupId> 38 <artifactId>library</artifactId> 39 <version>1.0.4</version> 40 </dependency> 41 </dependencies> 42 43 <build> 44 <plugins> 45 <plugin> 46 <groupId>com.jayway.maven.plugins.android.generation2</groupId> 47 <artifactId>android-maven-plugin</artifactId> 48 <version>3.9.0-rc.2</version> 49 <configuration> 50 <sdk> 51 <platform>19</platform> 52 </sdk> 53 <undeployBeforeDeploy>true</undeployBeforeDeploy> 54 </configuration> 55 <extensions>true</extensions> 56 </plugin> 57 <plugin> 58 <artifactId>maven-compiler-plugin</artifactId> 59 <version>3.1</version> 60 <configuration> 61 <source>1.6</source> 62 <target>1.6</target> 63 </configuration> 64 </plugin> 65 </plugins> 66 </build> 67</project> 68