mirror of https://github.com/apache/archiva.git
112 lines
4.6 KiB
XML
112 lines
4.6 KiB
XML
<!--
|
|
~ 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>
|
|
<groupId>org.apache.maven.archiva</groupId>
|
|
<artifactId>archiva-parent</artifactId>
|
|
<version>1.0-beta-3-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>archiva-site</artifactId>
|
|
<packaging>pom</packaging>
|
|
<name>Archiva Site</name>
|
|
|
|
<reporting>
|
|
<excludeDefaults>true</excludeDefaults>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
<reportSets>
|
|
<reportSet>
|
|
<reports>
|
|
<report>cim</report>
|
|
<report>issue-tracking</report>
|
|
<report>mailing-list</report>
|
|
<report>license</report>
|
|
<report>project-team</report>
|
|
<report>scm</report>
|
|
</reports>
|
|
</reportSet>
|
|
</reportSets>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
<!-- repeated here so that maven-site is not appended -->
|
|
<scm>
|
|
<connection>scm:svn:http://svn.apache.org/repos/asf/maven/archiva/trunk/</connection>
|
|
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/archiva/trunk/</developerConnection>
|
|
<url>http://svn.apache.org/viewcvs.cgi/maven/archiva/trunk/</url>
|
|
</scm>
|
|
|
|
<distributionManagement>
|
|
<site>
|
|
<id>apache.website</id>
|
|
<url>scp://people.apache.org/www/maven.apache.org/archiva</url>
|
|
</site>
|
|
</distributionManagement>
|
|
|
|
<mailingLists>
|
|
<mailingList>
|
|
<name>Maven Archiva User List</name>
|
|
<subscribe>archiva-users-subscribe@maven.apache.org</subscribe>
|
|
<unsubscribe>archiva-users-unsubscribe@maven.apache.org</unsubscribe>
|
|
<post>archiva-users@maven.apache.org</post>
|
|
<archive>http://mail-archives.apache.org/mod_mbox/maven-archiva-users</archive>
|
|
</mailingList>
|
|
<mailingList>
|
|
<name>Maven Archiva Developer List</name>
|
|
<subscribe>archiva-dev-subscribe@maven.apache.org</subscribe>
|
|
<unsubscribe>archiva-dev-unsubscribe@maven.apache.org</unsubscribe>
|
|
<post>archiva-dev@maven.apache.org</post>
|
|
<archive>http://mail-archives.apache.org/mod_mbox/maven-archiva-dev</archive>
|
|
</mailingList>
|
|
<mailingList>
|
|
<name>Maven Archiva Commits List</name>
|
|
<subscribe>archiva-commits-subscribe@maven.apache.org</subscribe>
|
|
<unsubscribe>archiva-commits-unsubscribe@maven.apache.org</unsubscribe>
|
|
<post>archiva-commits@maven.apache.org</post>
|
|
<archive>http://mail-archives.apache.org/mod_mbox/maven-archiva-commits</archive>
|
|
</mailingList>
|
|
<!-- duplication from parent pom - temporary until they inherit properly -->
|
|
<mailingList>
|
|
<name>Maven Announcements List</name>
|
|
<post>announce@maven.apache.org</post>
|
|
<subscribe>announce-subscribe@maven.apache.org</subscribe>
|
|
<unsubscribe>announce-unsubscribe@maven.apache.org</unsubscribe>
|
|
<archive>http://mail-archives.apache.org/mod_mbox/maven-announce/</archive>
|
|
</mailingList>
|
|
<mailingList>
|
|
<name>Maven Issues List</name>
|
|
<post>issues@maven.apache.org</post>
|
|
<subscribe>issues-subscribe@maven.apache.org</subscribe>
|
|
<unsubscribe>issues-unsubscribe@maven.apache.org</unsubscribe>
|
|
<archive>http://mail-archives.apache.org/mod_mbox/maven-issues/</archive>
|
|
</mailingList>
|
|
<mailingList>
|
|
<name>Maven Notifications List</name>
|
|
<post>notifications@maven.apache.org</post>
|
|
<subscribe>notifications-subscribe@maven.apache.org</subscribe>
|
|
<unsubscribe>notifications-unsubscribe@maven.apache.org</unsubscribe>
|
|
<archive>http://mail-archives.apache.org/mod_mbox/maven-notifications/</archive>
|
|
</mailingList>
|
|
</mailingLists>
|
|
</project>
|