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>com.jakewharton</groupId> 6 <artifactId>butterknife</artifactId> 7 <version>8.4.0</version> 8 <packaging>aar</packaging> 9 <name>Butterknife</name> 10 <description>Field and method binding for Android views.</description> 11 <url>https://github.com/JakeWharton/butterknife/</url> 12 <licenses> 13 <license> 14 <name>The Apache Software License, Version 2.0</name> 15 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> 16 <distribution>repo</distribution> 17 </license> 18 </licenses> 19 <developers> 20 <developer> 21 <id>jakewharton</id> 22 <name>Jake Wharton</name> 23 </developer> 24 </developers> 25 <scm> 26 <connection>scm:git:git://github.com/JakeWharton/butterknife.git</connection> 27 <developerConnection>scm:git:ssh://git (a] github.com/JakeWharton/butterknife.git</developerConnection> 28 <url>https://github.com/JakeWharton/butterknife/</url> 29 </scm> 30 <dependencies> 31 <dependency> 32 <groupId>com.jakewharton</groupId> 33 <artifactId>butterknife-annotations</artifactId> 34 <version>8.4.0</version> 35 <scope>compile</scope> 36 </dependency> 37 <dependency> 38 <groupId>com.android.support</groupId> 39 <artifactId>support-annotations</artifactId> 40 <version>24.1.0</version> 41 <scope>compile</scope> 42 </dependency> 43 </dependencies> 44 </project> 45