git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@422837 13f79535-47bb-0310-9956-ffa450edef68
96 lines
3.7 KiB
XML
96 lines
3.7 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<!--
|
|
/*
|
|
* Copyright 2001-2006 The Apache Software Foundation.
|
|
*
|
|
* Licensed 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/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
|
|
|
|
<pomVersion>3</pomVersion>
|
|
<extend>../plugins-common/project.xml</extend>
|
|
|
|
<groupId>maven</groupId>
|
|
<artifactId>plugins-parent</artifactId>
|
|
<name>Maven Plugins Parent Project</name>
|
|
|
|
<url>http://maven.apache.org/maven-1.x/plugins/${pom.artifactId.substring(6,pom.artifactId.length()-7)}/</url>
|
|
<issueTrackingUrl>http://jira.codehaus.org/browse/MP${pom.artifactId.substring(6,pom.artifactId.length()-7).toUpperCase()}</issueTrackingUrl>
|
|
|
|
<siteDirectory>/www/maven.apache.org/maven-1.x/plugins/${pom.artifactId.substring(6,pom.artifactId.length()-7)}/</siteDirectory>
|
|
|
|
<repository>
|
|
<connection>scm:svn:http://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk/${pom.artifactId.substring(6,pom.artifactId.length()-7)}/</connection>
|
|
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk/${pom.artifactId.substring(6,pom.artifactId.length()-7)}/</developerConnection>
|
|
<url>http://svn.apache.org/viewcvs.cgi/maven/maven-1/plugins/trunk/${pom.artifactId.substring(6,pom.artifactId.length()-7)}/</url>
|
|
</repository>
|
|
|
|
<build>
|
|
<defaultGoal>plugin:plugin</defaultGoal>
|
|
<sourceDirectory>src/main</sourceDirectory>
|
|
<unitTestSourceDirectory>src/test</unitTestSourceDirectory>
|
|
<nagEmailAddress>${maven.ci.nagEmailAddress}</nagEmailAddress>
|
|
|
|
<unitTest>
|
|
<includes>
|
|
<include>**/*Test.java</include>
|
|
</includes>
|
|
</unitTest>
|
|
|
|
<resources>
|
|
<resource>
|
|
<directory>../plugins-parent/</directory>
|
|
<targetPath>META-INF</targetPath>
|
|
<includes>
|
|
<include>NOTICE.txt</include>
|
|
</includes>
|
|
</resource>
|
|
<resource>
|
|
<directory>src/plugin-resources</directory>
|
|
<targetPath>plugin-resources</targetPath>
|
|
</resource>
|
|
<resource>
|
|
<directory>.</directory>
|
|
<includes>
|
|
<include>plugin.jelly</include>
|
|
<include>plugin.properties</include>
|
|
<include>project.properties</include>
|
|
<include>build.properties</include>
|
|
<include>project.xml</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
|
|
<reports>
|
|
<report>maven-changes-plugin</report>
|
|
<report>maven-changelog-plugin</report>
|
|
<report>maven-file-activity-plugin</report>
|
|
<report>maven-developer-activity-plugin</report>
|
|
<report>maven-tasklist-plugin</report>
|
|
<report>maven-javadoc-plugin</report>
|
|
<report>maven-jxr-plugin</report>
|
|
<report>maven-jira-plugin</report>
|
|
<report>maven-jdepend-plugin</report>
|
|
<report>maven-checkstyle-plugin</report>
|
|
<report>maven-junit-report-plugin</report>
|
|
<report>maven-pmd-plugin</report>
|
|
<report>maven-simian-plugin</report>
|
|
<report>maven-faq-plugin</report>
|
|
<report>maven-linkcheck-plugin</report>
|
|
<report>maven-license-plugin</report>
|
|
</reports>
|
|
|
|
</project>
|