blob: 8072c69c9989e94e359d5630201ed0bde590c910 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<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">
<parent>
<artifactId>velocity-master</artifactId>
<groupId>org.apache.velocity</groupId>
<version>2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity-tools-parent</artifactId>
<name>VelocityTools</name>
<version>3.0-SNAPSHOT</version>
<packaging>pom</packaging>
<url>http://velocity.apache.org/tools/devel/</url>
<description>
VelocityTools is an integrated collection of Velocity subprojects
with the common goal of creating tools and infrastructure to speed and ease
development of both web and non-web applications using the Velocity template
engine.
</description>
<inceptionYear>2002</inceptionYear>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.version>4.12</junit.version>
<slf4j.version>1.7.21</slf4j.version>
<surefire.plugin.version>2.19.1</surefire.plugin.version>
<servlet.api.version>3.0.1</servlet.api.version>
</properties>
<build>
<defaultGoal>install</defaultGoal>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<useReleaseProfile>false</useReleaseProfile>
<autoVersionSubmodules>true</autoVersionSubmodules>
<goals>deploy</goals>
<arguments>-Papache-release</arguments>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<debug>false</debug>
<optimize>true</optimize>
<showDeprecation>true</showDeprecation>
<showWarning>true</showWarning>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire.plugin.version}</version>
<configuration>
<includes>
<include>**/Test*.java</include>
<include>**/*Test.java</include>
<include>**/*TestCase.java</include>
<include>**/*Tests.java</include>
</includes>
<systemProperties>
<property>
<name>org.slf4j.simpleLogger.defaultLogLevel</name>
<value>trace</value>
</property>
<property>
<name>org.slf4j.simpleLogger.logFile</name>
<value>${project.build.directory}/velocity-tools.log</value>
</property>
</systemProperties>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<configuration>
<aggregate>true</aggregate>
<excludePackageNames>org.apache.velocity.tools.examples</excludePackageNames>
<links>
</links>
</configuration>
</plugin>
</plugins>
</build>
<issueManagement>
<system>JIRA</system>
<url>http://issues.apache.org/jira/browse/VELTOOLS</url>
</issueManagement>
<scm>
<connection>scm:svn:http://svn.apache.org/repos/asf/velocity/tools/trunk</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/velocity/tools/trunk</developerConnection>
<url>http://svn.apache.org/viewvc/velocity/tools/trunk</url>
</scm>
<modules>
<module>velocity-tools-generic</module>
<module>velocity-tools-xml</module>
<module>velocity-tools-view</module>
<module>velocity-tools-view-jsp</module>
<module>velocity-tools-uberjar</module>
<module>velocity-tools-examples</module>
<module>velocity-tools-assembly</module>
</modules>
<!-- This project is an effort by many people. If you feel that your name
should be in here and has been omitted in error, please open an issue with
the Velocity Tools Issue tracker. -->
<contributors>
<contributor>
<name>Chris Townsen</name>
</contributor>
<contributor>
<name>Craig R. McClanahan</name>
</contributor>
<contributor>
<name>Dave Bryson</name>
</contributor>
<contributor>
<name>David Graham</name>
</contributor>
<contributor>
<name>David Winterfeldt</name>
</contributor>
<contributor>
<name>Denis Bredelet</name>
</contributor>
<contributor>
<name>Dmitri Colebatch</name>
</contributor>
<contributor>
<name>Gabriel Sidler</name>
</contributor>
<contributor>
<name>Kent Johnson</name>
</contributor>
<contributor>
<name>Leon Messerschmidt</name>
</contributor>
<contributor>
<name>Mike Kienenberger</name>
</contributor>
<contributor>
<name>Oliver O'Halloran</name>
</contributor>
<contributor>
<name>S. Brett Sutton</name>
</contributor>
<contributor>
<name>Shinobu Kawai</name>
</contributor>
<contributor>
<name>Spencer Davis</name>
</contributor>
<contributor>
<name>Ted Husted</name>
</contributor>
<contributor>
<name>Tim Colson</name>
</contributor>
</contributors>
</project>