Home | History | Annotate | Download | only in 1.7
      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 <project xmlns="http://maven.apache.org/POM/4.0.0"
     23          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     24          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
     25 
     26   <modelVersion>4.0.0</modelVersion>
     27 
     28   <parent>
     29     <groupId>org.apache</groupId>
     30     <artifactId>apache</artifactId>
     31     <version>4</version>
     32   </parent>
     33 
     34   <groupId>org.apache.velocity</groupId>
     35   <artifactId>velocity</artifactId>
     36   <version>1.7</version>
     37 
     38   <name>Apache Velocity</name>
     39   <url>http://velocity.apache.org/engine/devel/</url>
     40   <description>Apache Velocity is a general purpose template engine.</description>
     41   <inceptionYear>2000</inceptionYear>
     42   <packaging>jar</packaging>
     43   
     44   <prerequisites>
     45       <maven>2.0.9</maven>
     46   </prerequisites>
     47 
     48   <build>
     49     <defaultGoal>install</defaultGoal>
     50     <sourceDirectory>src/java</sourceDirectory>
     51     <testSourceDirectory>src/test</testSourceDirectory>
     52     <plugins>
     53       <plugin>
     54         <groupId>org.apache.maven.plugins</groupId>
     55         <artifactId>maven-site-plugin</artifactId>
     56         <configuration>
     57           <inputEncoding>UTF-8</inputEncoding>
     58           <outputEncoding>UTF-8</outputEncoding>
     59           <xdocDirectory>${basedir}/xdocs/docs</xdocDirectory>
     60         </configuration>
     61       </plugin>
     62     </plugins>
     63     <resources>
     64       <resource>
     65         <directory>src/java</directory>
     66         <excludes>
     67           <exclude>**/*.java</exclude>
     68         </excludes>
     69       </resource>
     70     </resources>
     71   </build>
     72 
     73   <distributionManagement>
     74     <site>
     75       <id>velocity.apache.org</id>
     76       <url>scpexe://people.apache.org/www/velocity.apache.org/engine/releases/velocity-1.7</url>
     77     </site>
     78     <repository>
     79       <id>apache.releases</id>
     80       <name>Apache Release Distribution Repository</name>
     81       <url>scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository</url>
     82     </repository>
     83     <snapshotRepository>
     84       <id>apache.snapshots</id>
     85       <name>Apache Development Snapshot Repository</name>
     86       <url>scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url>
     87     </snapshotRepository>
     88   </distributionManagement>
     89 
     90   <developers>
     91     <developer>
     92       <name>Will Glass-Husain</name>
     93       <id>wglass</id>
     94       <email>wglass (a] forio.com</email>
     95       <organization>Forio Business Simulations</organization>
     96       <roles>
     97         <role>Java Developer</role>
     98       </roles>
     99     </developer>
    100 
    101    <developer>
    102       <name>Geir Magnusson Jr.</name>
    103       <id>geirm</id>
    104       <email>geirm (a] optonline.net</email>
    105       <organization>Independent (DVSL Maven)</organization>
    106       <roles>
    107         <role>Java Developer</role>
    108       </roles>
    109     </developer>
    110 
    111     <developer>
    112       <name>Daniel Rall</name>
    113       <id>dlr</id>
    114       <email>dlr (a] finemaltcoding.com</email>
    115       <organization>CollabNet, Inc.</organization>
    116       <roles>
    117         <role>Java Developer</role>
    118       </roles>
    119     </developer>
    120 
    121     <developer>
    122       <name>Henning P. Schmiedehausen</name>
    123       <id>henning</id>
    124       <email>hps (a] intermeta.de</email>
    125       <organization>INTERMETA - Gesellschaft fr Mehrwertdienste mbH</organization>
    126       <roles>
    127         <role>Java Developer</role>
    128       </roles>
    129       <timezone>2</timezone>
    130     </developer>
    131 
    132     <developer>
    133       <name>Nathan Bubna</name>
    134       <id>nbubna</id>
    135       <email>nathan (a] esha.com</email>
    136       <organization>ESHA Research</organization>
    137       <roles>
    138         <role>Java Developer</role>
    139       </roles>
    140     </developer>
    141 
    142   </developers>
    143 
    144   <dependencies>
    145     <dependency>
    146       <groupId>commons-collections</groupId>
    147       <artifactId>commons-collections</artifactId>
    148       <version>3.2.1</version>
    149     </dependency>
    150     <dependency>
    151       <groupId>commons-lang</groupId>
    152       <artifactId>commons-lang</artifactId>
    153       <version>2.4</version>
    154     </dependency>
    155     <dependency>
    156       <groupId>oro</groupId>
    157       <artifactId>oro</artifactId>
    158       <version>2.0.8</version>
    159       <optional>true</optional>
    160     </dependency>
    161     <dependency>
    162       <groupId>jdom</groupId>
    163       <artifactId>jdom</artifactId>
    164       <version>1.0</version>
    165       <scope>provided</scope>
    166     </dependency>
    167     <dependency>
    168       <groupId>commons-logging</groupId>
    169       <artifactId>commons-logging</artifactId>
    170       <version>1.1</version>
    171       <scope>provided</scope>
    172       <exclusions>
    173         <exclusion>
    174           <groupId>avalon-framework</groupId>
    175           <artifactId>avalon-framework</artifactId>
    176         </exclusion>
    177         <exclusion>
    178           <groupId>log4j</groupId>
    179           <artifactId>log4j</artifactId>
    180         </exclusion>
    181         <exclusion>
    182           <groupId>javax.servlet</groupId>
    183           <artifactId>servlet-api</artifactId>
    184         </exclusion>
    185       </exclusions>
    186     </dependency>
    187     <dependency>
    188       <groupId>log4j</groupId>
    189       <artifactId>log4j</artifactId>
    190       <version>1.2.12</version>
    191       <scope>provided</scope>
    192     </dependency>
    193     <dependency>
    194       <groupId>javax.servlet</groupId>
    195       <artifactId>servlet-api</artifactId>
    196       <version>2.3</version>
    197       <scope>provided</scope>
    198     </dependency>
    199     <dependency>
    200       <groupId>logkit</groupId>
    201       <artifactId>logkit</artifactId>
    202       <version>2.0</version>
    203       <scope>provided</scope>
    204     </dependency>
    205     <dependency>
    206       <groupId>ant</groupId>
    207       <artifactId>ant</artifactId>
    208       <version>1.6</version>
    209       <scope>provided</scope>
    210     </dependency>
    211     <dependency>
    212       <groupId>werken-xpath</groupId>
    213       <artifactId>werken-xpath</artifactId>
    214       <version>0.9.4</version>
    215       <scope>provided</scope>
    216     </dependency>
    217     <dependency>
    218       <groupId>junit</groupId>
    219       <artifactId>junit</artifactId>
    220       <version>3.8.1</version>
    221       <scope>test</scope>
    222     </dependency>
    223     <dependency>
    224       <groupId>hsqldb</groupId>
    225       <artifactId>hsqldb</artifactId>
    226       <version>1.7.1</version>
    227       <scope>test</scope>
    228     </dependency>
    229   </dependencies>
    230 
    231   <reporting>
    232     <plugins>
    233       <plugin>
    234         <groupId>org.apache.maven.plugins</groupId>
    235         <artifactId>maven-project-info-reports-plugin</artifactId>
    236         <version>2.1</version>
    237         <reportSets>
    238           <reportSet>
    239             <reports>
    240               <report>dependencies</report>
    241               <report>issue-tracking</report>
    242               <report>license</report>
    243               <report>summary</report>
    244               <report>scm</report>
    245             </reports>
    246           </reportSet>
    247         </reportSets>
    248       </plugin>
    249       <plugin>
    250         <groupId>org.apache.maven.plugins</groupId>
    251         <artifactId>maven-changes-plugin</artifactId>
    252         <version>2.0</version>
    253         <reportSets>
    254           <reportSet>
    255             <reports>
    256               <report>changes-report</report>
    257               <report>jira-report</report>
    258             </reports>
    259           </reportSet>
    260         </reportSets>
    261         <configuration>
    262             <issueLinkTemplate>${jira.browse.url}/%ISSUE%</issueLinkTemplate>
    263           <!-- Apache JIRA, Component Engine -->
    264           <component>12311337</component>
    265           <!-- FixFor 1.6 -->
    266           <filter>fixfor=12310290&amp;sorter/field=issuekey&amp;sorter/order=ASC</filter>
    267           <maxEntries>100</maxEntries>
    268           <teamlist>http://velocity.apache.org/who-we-are.html</teamlist>
    269         </configuration>
    270       </plugin>
    271       <plugin>
    272         <groupId>org.codehaus.mojo</groupId>
    273         <artifactId>taglist-maven-plugin</artifactId>
    274         <version>2.2</version>
    275         <configuration>
    276           <tag>TODO</tag>
    277           <tag>FIXME</tag>
    278         </configuration>
    279       </plugin>
    280       <plugin>
    281         <groupId>org.apache.maven.plugins</groupId>
    282         <artifactId>maven-jxr-plugin</artifactId>
    283         <version>2.1</version>
    284       </plugin>
    285       <plugin>
    286         <groupId>org.apache.maven.plugins</groupId>
    287         <artifactId>maven-javadoc-plugin</artifactId>
    288         <version>2.5</version>
    289         <configuration>
    290           <links>
    291             <link>http://java.sun.com/j2se/1.4.2/docs/api</link>
    292             <link>http://jakarta.apache.org/oro/api</link>
    293             <link>http://jakarta.apache.org/commons/lang/api-release</link>
    294             <link>http://jakarta.apache.org/commons/collections/api-release</link>
    295 
    296             <link>http://www.jdom.org/docs/apidocs</link>
    297             <link>http://logging.apache.org/log4j/docs/api</link>
    298             <link>http://excalibur.apache.org/apidocs</link>
    299             <link>http://tomcat.apache.org/tomcat-4.1-doc/servletapi</link>
    300           </links>
    301         </configuration>
    302       </plugin>
    303       <plugin>
    304         <groupId>org.apache.maven.plugins</groupId>
    305         <artifactId>maven-changelog-plugin</artifactId>
    306         <version>2.1</version>
    307       </plugin>
    308       <plugin>
    309         <groupId>org.codehaus.mojo</groupId>
    310         <artifactId>findbugs-maven-plugin</artifactId>
    311         <version>1.2</version>
    312         <configuration>
    313           <xmlOutput>true</xmlOutput>
    314           <threshold>Low</threshold>
    315           <effort>Max</effort>
    316           <excludeFilterFile>build/findbugs-exclude.xml</excludeFilterFile>
    317           <findbugsXmlOutputDirectory>xdocs</findbugsXmlOutputDirectory> 
    318         </configuration>
    319       </plugin>
    320       <plugin>      
    321         <groupId>org.apache.maven.plugins</groupId>
    322         <artifactId>maven-compiler-plugin</artifactId>
    323         <configuration>
    324           <source>1.4</source>
    325           <target>1.4</target>
    326         </configuration>
    327       </plugin>
    328     </plugins>
    329   </reporting>
    330 
    331   <scm>
    332     <connection>scm:svn:http://svn.apache.org/repos/asf/velocity/engine/trunk</connection>
    333     <developerConnection>scm:svn:https://svn.apache.org/repos/asf/velocity/engine/trunk</developerConnection>
    334     <tag>HEAD</tag>
    335     <url>http://svn.apache.org/viewvc/velocity/engine/trunk</url>
    336   </scm>
    337 
    338     <properties>
    339         <jira.browse.url>https://issues.apache.org/jira/browse</jira.browse.url>
    340     </properties>
    341 
    342   <issueManagement>
    343     <system>JIRA</system>
    344     <url>${jira.browse.url}/VELOCITY</url>
    345   </issueManagement>
    346 </project>
    347