blob: f93190a4a832325ce169741c4bd34075786731d9 [file] [log] [blame]
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.commons</groupId>
<artifactId>commons-parent</artifactId>
<version>12</version>
</parent>
<groupId>org.apache.commons</groupId>
<artifactId>commons-build-plugin</artifactId>
<packaging>maven-plugin</packaging>
<version>1.2</version>
<name>commons-build-plugin Maven Mojo</name>
<description>
Maven Ant mojo for Commons Build tasks.
</description>
<url>http://commons.apache.org/commons-build-plugin/</url>
<issueManagement>
<system>jira</system>
<url>http://issues.apache.org/jira/browse/COMMONSSITE</url>
</issueManagement>
<inceptionYear>2008</inceptionYear>
<scm>
<connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/commons-build-plugin/trunk/</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/commons-build-plugin/trunk/</developerConnection>
<url>http://svn.apache.org/viewvc/commons/proper/commons-build-plugin/trunk/</url>
</scm>
<developers>
<developer>
<name>Niall Pemberton</name>
<id>niallp</id>
<email>niallp AT apache.org</email>
</developer>
<developer>
<name>Dennis Lundberg</name>
<id>dennisl</id>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-script-ant</artifactId>
<version>2.0.8</version>
<!-- We need to exclude this artifact's dependency on Ant, -->
<!-- because it has a different groupId that the version of Ant -->
<!-- we want to use. -->
<exclusions>
<exclusion>
<groupId>ant</groupId>
<artifactId>ant</artifactId>
</exclusion>
<exclusion>
<groupId>ant</groupId>
<artifactId>ant-launcher</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Ant 1.7.0+ required for the "loadresource" Task -->
<!-- Ant 1.7.1 required for COMMONSSITE-35 -->
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.7.1</version>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant-launcher</artifactId>
<version>1.7.1</version>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<targetPath>resources</targetPath>
</resource>
<resource>
<directory>${basedir}</directory>
<targetPath>META-INF</targetPath>
<includes>
<include>NOTICE.txt</include>
<include>LICENSE.txt</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-plugin-plugin</artifactId>
<!-- Add the Ant plugin tools to the plugin -->
<dependencies>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-tools-ant</artifactId>
<version>2.4.3</version>
</dependency>
</dependencies>
<configuration>
<goalPrefix>commons</goalPrefix>
</configuration>
<executions>
<execution>
<phase>pre-site</phase>
<goals>
<goal>xdoc</goal>
</goals>
<configuration>
<outputDirectory>target/plugin-generated-xdocs</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/src.xml</descriptor>
</descriptors>
<tarLongFileMode>gnu</tarLongFileMode>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.0.1</version>
<configuration>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>dependencies</report>
<report>issue-tracking</report>
<report>mailing-list</report>
<report>license</report>
<report>project-team</report>
<report>scm</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<!-- exclude surefire report -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<reportSets><reportSet /></reportSets>
</plugin>
<!-- exclude jdepend report -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jdepend-maven-plugin</artifactId>
<reportSets><reportSet /></reportSets>
</plugin>
</plugins>
</reporting>
<properties>
<maven.compile.source />
<maven.compile.target />
<commons.manifestfile />
<commons.jira.id>COMMONSSITE</commons.jira.id>
<commons.jira.pid>12310466&amp;amp;component=12312401</commons.jira.pid>
<commons.release.version>1.2</commons.release.version>
</properties>
</project>