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