blob: a5a0261e8ec39f86c9fe3b5e2eb3f5b011d0d9a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.maven</groupId>
<artifactId>maven-parent</artifactId>
<version>5</version>
<relativePath>../pom/maven/pom.xml</relativePath>
</parent>
<groupId>org.apache.maven.archiva</groupId>
<artifactId>archiva-parent</artifactId>
<packaging>pom</packaging>
<name>Archiva Common Parent Project</name>
<version>3-SNAPSHOT</version>
<inceptionYear>2006</inceptionYear>
<url>http://maven.apache.org/archiva/</url>
<description>
Archiva is an application for managing one or more remote
repositories, including administration, artifact handling,
browsing and searching.
</description>
<issueManagement>
<system>jira</system>
<url>http://jira.codehaus.org/browse/MRM</url>
</issueManagement>
<mailingLists>
<mailingList>
<name>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>Archiva Development 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>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>
<mailingList>
<name>Archiva Issues List</name>
<subscribe>archiva-issues-subscribe@maven.apache.org</subscribe>
<unsubscribe>archiva-issues-unsubscribe@maven.apache.org</unsubscribe>
<post>archiva-issues@maven.apache.org</post>
<archive>http://mail-archives.apache.org/mod_mbox/maven-archiva-issues</archive>
</mailingList>
</mailingLists>
<scm>
<connection>scm:svn:http://svn.apache.org/repos/asf/maven/archiva/parent</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/archiva/parent</developerConnection>
<url>http://svn.apache.org/viewcvs.cgi/maven/archiva/parent</url>
</scm>
<properties>
<siteBaseDeployment>scp://people.apache.org/www/maven.apache.org/archiva</siteBaseDeployment>
<!-- For testing
<siteBaseDeployment>file://localhost/www/maven.apache.org/archiva</siteBaseDeployment>
-->
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version>2.0-beta-5</version>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<tagBase>https://svn.apache.org/repos/asf/maven/archiva/tags</tagBase>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
|