1 <?xml version="1.0" encoding="UTF-8"?> 2 3 <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"> 4 <modelVersion>4.0.0</modelVersion> 5 6 <parent> 7 <groupId>com.jakewharton</groupId> 8 <artifactId>butterknife-parent</artifactId> 9 <version>7.0.1</version> 10 </parent> 11 12 <artifactId>butterknife</artifactId> 13 <name>Butter Knife</name> 14 15 <dependencies> 16 <dependency> 17 <groupId>junit</groupId> 18 <artifactId>junit</artifactId> 19 <scope>test</scope> 20 </dependency> 21 <dependency> 22 <groupId>org.easytesting</groupId> 23 <artifactId>fest-assert-core</artifactId> 24 <scope>test</scope> 25 </dependency> 26 <dependency> 27 <groupId>com.squareup</groupId> 28 <artifactId>fest-android</artifactId> 29 <scope>test</scope> 30 </dependency> 31 <dependency> 32 <groupId>org.robolectric</groupId> 33 <artifactId>robolectric</artifactId> 34 <scope>test</scope> 35 </dependency> 36 <dependency> 37 <groupId>com.google.testing.compile</groupId> 38 <artifactId>compile-testing</artifactId> 39 <scope>test</scope> 40 </dependency> 41 42 <dependency> 43 <groupId>com.google.android</groupId> 44 <artifactId>android</artifactId> 45 <scope>provided</scope> 46 </dependency> 47 </dependencies> 48 49 <build> 50 <plugins> 51 <plugin> 52 <groupId>org.apache.maven.plugins</groupId> 53 <artifactId>maven-compiler-plugin</artifactId> 54 <configuration> 55 <compilerArgument>-proc:none</compilerArgument> 56 </configuration> 57 </plugin> 58 59 <plugin> 60 <groupId>org.apache.maven.plugins</groupId> 61 <artifactId>maven-javadoc-plugin</artifactId> 62 <configuration> 63 <excludePackageNames>butterknife.internal:butterknife.internal.*</excludePackageNames> 64 </configuration> 65 </plugin> 66 </plugins> 67 </build> 68 </project> 69