Home | History | Annotate | Download | only in 7.0.1
      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>org.sonatype.oss</groupId>
      8     <artifactId>oss-parent</artifactId>
      9     <version>7</version>
     10   </parent>
     11 
     12   <groupId>com.jakewharton</groupId>
     13   <artifactId>butterknife-parent</artifactId>
     14   <version>7.0.1</version>
     15   <packaging>pom</packaging>
     16 
     17   <name>Butter Knife (Parent)</name>
     18   <description>Field and method binding for Android views.</description>
     19   <url>http://github.com/JakeWharton/butterknife/</url>
     20   <inceptionYear>2013</inceptionYear>
     21 
     22   <modules>
     23     <module>butterknife</module>
     24     <module>butterknife-sample</module>
     25   </modules>
     26 
     27   <properties>
     28     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     29 
     30     <java.version>1.6</java.version>
     31     <fest.version>2.0M10</fest.version>
     32     <android.version>4.1.1.4</android.version>
     33     <android.platform>16</android.platform>
     34     <junit.version>4.10</junit.version>
     35     <robolectric.version>2.2</robolectric.version>
     36     <fest.android.version>1.0.7</fest.android.version>
     37     <compile-test.version>0.6</compile-test.version>
     38   </properties>
     39 
     40   <scm>
     41     <url>http://github.com/JakeWharton/butterknife/</url>
     42     <connection>scm:git:git://github.com/JakeWharton/butterknife.git</connection>
     43     <developerConnection>scm:git:ssh://git (a] github.com/JakeWharton/butterknife.git</developerConnection>
     44     <tag>butterknife-parent-7.0.1</tag>
     45   </scm>
     46 
     47   <issueManagement>
     48     <system>GitHub Issues</system>
     49     <url>http://github.com/JakeWharton/butterknife/issues</url>
     50   </issueManagement>
     51 
     52   <licenses>
     53     <license>
     54       <name>Apache 2.0</name>
     55       <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
     56     </license>
     57   </licenses>
     58 
     59   <dependencyManagement>
     60     <dependencies>
     61       <dependency>
     62         <groupId>com.google.android</groupId>
     63         <artifactId>android</artifactId>
     64         <version>${android.version}</version>
     65       </dependency>
     66       <dependency>
     67         <groupId>junit</groupId>
     68         <artifactId>junit</artifactId>
     69         <version>${junit.version}</version>
     70       </dependency>
     71       <dependency>
     72         <groupId>org.easytesting</groupId>
     73         <artifactId>fest-assert-core</artifactId>
     74         <version>${fest.version}</version>
     75       </dependency>
     76       <dependency>
     77         <groupId>com.squareup</groupId>
     78         <artifactId>fest-android</artifactId>
     79         <version>${fest.android.version}</version>
     80       </dependency>
     81       <dependency>
     82         <groupId>org.robolectric</groupId>
     83         <artifactId>robolectric</artifactId>
     84         <version>${robolectric.version}</version>
     85       </dependency>
     86       <dependency>
     87         <groupId>com.google.testing.compile</groupId>
     88         <artifactId>compile-testing</artifactId>
     89         <version>${compile-test.version}</version>
     90       </dependency>
     91     </dependencies>
     92   </dependencyManagement>
     93 
     94   <build>
     95     <plugins>
     96       <plugin>
     97         <groupId>org.apache.maven.plugins</groupId>
     98         <artifactId>maven-compiler-plugin</artifactId>
     99         <version>3.0</version>
    100         <configuration>
    101           <source>${java.version}</source>
    102           <target>${java.version}</target>
    103           <showWarnings>true</showWarnings>
    104         </configuration>
    105       </plugin>
    106 
    107       <plugin>
    108         <groupId>org.apache.maven.plugins</groupId>
    109         <artifactId>maven-checkstyle-plugin</artifactId>
    110         <version>2.9.1</version>
    111         <configuration>
    112           <failsOnError>true</failsOnError>
    113           <configLocation>checkstyle.xml</configLocation>
    114           <consoleOutput>true</consoleOutput>
    115         </configuration>
    116         <executions>
    117           <execution>
    118             <phase>verify</phase>
    119             <goals>
    120               <goal>checkstyle</goal>
    121             </goals>
    122           </execution>
    123         </executions>
    124       </plugin>
    125 
    126       <plugin>
    127         <groupId>org.apache.maven.plugins</groupId>
    128         <artifactId>maven-release-plugin</artifactId>
    129         <version>2.4</version>
    130         <configuration>
    131           <autoVersionSubmodules>true</autoVersionSubmodules>
    132         </configuration>
    133       </plugin>
    134     </plugins>
    135 
    136     <pluginManagement>
    137       <plugins>
    138         <plugin>
    139           <groupId>com.simpligility.maven.plugins</groupId>
    140           <artifactId>android-maven-plugin</artifactId>
    141           <version>4.1.0</version>
    142           <configuration>
    143             <sdk>
    144               <platform>${android.platform}</platform>
    145             </sdk>
    146           </configuration>
    147         </plugin>
    148 
    149         <plugin>
    150           <groupId>org.apache.maven.plugins</groupId>
    151           <artifactId>maven-javadoc-plugin</artifactId>
    152           <version>2.9</version>
    153           <configuration>
    154             <additionalparam>-Xdoclint:none</additionalparam>
    155           </configuration>
    156         </plugin>
    157       </plugins>
    158     </pluginManagement>
    159   </build>
    160 </project>
    161