Home | History | Annotate | Download | only in 4.3.1
      1 <?xml version="1.0" encoding="UTF-8"?>
      2 <!--
      3    ====================================================================
      4    Licensed to the Apache Software Foundation (ASF) under one
      5    or more contributor license agreements.  See the NOTICE file
      6    distributed with this work for additional information
      7    regarding copyright ownership.  The ASF licenses this file
      8    to you under the Apache License, Version 2.0 (the
      9    "License"); you may not use this file except in compliance
     10    with the License.  You may obtain a copy of the License at
     11 
     12      http://www.apache.org/licenses/LICENSE-2.0
     13 
     14    Unless required by applicable law or agreed to in writing,
     15    software distributed under the License is distributed on an
     16    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
     17    KIND, either express or implied.  See the License for the
     18    specific language governing permissions and limitations
     19    under the License.
     20    ====================================================================
     21 
     22    This software consists of voluntary contributions made by many
     23    individuals on behalf of the Apache Software Foundation.  For more
     24    information on the Apache Software Foundation, please see
     25    <http://www.apache.org />.
     26  --><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">
     27   <modelVersion>4.0.0</modelVersion>
     28   <parent>
     29     <groupId>org.apache.httpcomponents</groupId>
     30     <artifactId>httpcomponents-core</artifactId>
     31     <version>4.3.1</version>
     32   </parent>
     33   <artifactId>httpcore</artifactId>
     34   <name>Apache HttpCore</name>
     35   <inceptionYear>2005</inceptionYear>
     36   <description>
     37    HttpComponents Core (blocking I/O)
     38   </description>
     39   <url>http://hc.apache.org/httpcomponents-core-ga</url>
     40   <packaging>jar</packaging>
     41 
     42   <dependencies>
     43     <dependency>
     44       <groupId>junit</groupId>
     45       <artifactId>junit</artifactId>
     46       <scope>test</scope>
     47     </dependency>
     48     <dependency>
     49       <groupId>org.mockito</groupId>
     50       <artifactId>mockito-core</artifactId>
     51       <scope>test</scope>
     52     </dependency>
     53     <dependency>
     54       <groupId>commons-logging</groupId>
     55       <artifactId>commons-logging</artifactId>
     56       <scope>test</scope>
     57     </dependency>
     58   </dependencies>
     59 
     60   <build>
     61     <resources>
     62       <resource>
     63         <directory>src/main/resources</directory>
     64         <filtering>true</filtering>
     65         <includes>
     66             <include>**/*.properties</include>
     67         </includes>
     68       </resource>
     69     </resources>
     70     <plugins>
     71       <plugin>
     72         <groupId>org.codehaus.mojo</groupId>
     73         <artifactId>build-helper-maven-plugin</artifactId>
     74         <version>1.8</version>
     75         <executions>
     76           <execution>
     77           <id>add-source</id>
     78           <phase>generate-sources</phase>
     79           <goals>
     80             <goal>add-source</goal>
     81           </goals>
     82           <configuration>
     83             <sources>
     84               <source>src/main/java-deprecated</source>
     85             </sources>
     86             </configuration>
     87           </execution>
     88         </executions>
     89       </plugin>
     90     </plugins>
     91   </build>
     92 
     93   <reporting>
     94     <plugins>
     95 
     96       <plugin>
     97         <artifactId>maven-javadoc-plugin</artifactId>
     98         <version>${hc.javadoc.version}</version>
     99         <configuration>
    100           <!-- reduce console output. Can override with -Dquiet=false -->
    101           <quiet>true</quiet>
    102           <source>${maven.compiler.source}</source>
    103           <links>
    104             <link>http://download.oracle.com/javase/1.5.0/docs/api/</link>
    105           </links>
    106         </configuration>
    107         <reportSets>
    108           <reportSet>
    109             <reports>
    110               <report>javadoc</report>
    111             </reports>
    112           </reportSet>
    113         </reportSets>
    114       </plugin>
    115 
    116       <plugin>
    117         <artifactId>maven-project-info-reports-plugin</artifactId>
    118         <version>${hc.project-info.version}</version>
    119         <inherited>false</inherited>
    120         <reportSets>
    121           <reportSet>
    122             <reports>
    123               <report>dependencies</report>
    124               <report>dependency-info</report>
    125               <report>summary</report>
    126             </reports>
    127           </reportSet>
    128         </reportSets>
    129       </plugin>
    130 
    131       <plugin>
    132         <artifactId>maven-jxr-plugin</artifactId>
    133         <version>${hc.jxr.version}</version>
    134       </plugin>
    135 
    136       <plugin>
    137         <artifactId>maven-surefire-report-plugin</artifactId>
    138         <version>${hc.surefire-report.version}</version>
    139       </plugin>
    140 
    141     </plugins>
    142   </reporting>
    143 
    144 </project>
    145