1 <?xml version="1.0" encoding="UTF-8"?> 2 3 <!-- 4 Licensed to the Apache Software Foundation (ASF) under one 5 or more contributor license agreements. See the NOTICE file 6 distributed with this work for additional information 7 regarding copyright ownership. The ASF licenses this file 8 to you under the Apache License, Version 2.0 (the 9 "License"); you may not use this file except in compliance 10 with the License. You may obtain a copy of the License at 11 12 http://www.apache.org/licenses/LICENSE-2.0 13 14 Unless required by applicable law or agreed to in writing, 15 software distributed under the License is distributed on an 16 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 17 KIND, either express or implied. See the License for the 18 specific language governing permissions and limitations 19 under the License. 20 --> 21 22 <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"> 23 <modelVersion>4.0.0</modelVersion> 24 25 <!-- Shared parent. Doesn't define a lot of things about Apache like general mailing lists, but does 26 define the settings common to all projects at Apache --> 27 <groupId>org.apache</groupId> 28 <artifactId>apache</artifactId> 29 <version>4</version> 30 <packaging>pom</packaging> 31 <name>The Apache Software Foundation</name> 32 <description> 33 The Apache Software Foundation provides support for the Apache community of open-source software projects. 34 The Apache projects are characterized by a collaborative, consensus based development process, an open and 35 pragmatic software license, and a desire to create high quality software that leads the way in its field. 36 We consider ourselves not simply a group of projects sharing a server, but rather a community of developers 37 and users. 38 </description> 39 <licenses> 40 <license> 41 <name>The Apache Software License, Version 2.0</name> 42 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> 43 <distribution>repo</distribution> 44 </license> 45 </licenses> 46 <organization> 47 <name>The Apache Software Foundation</name> 48 <url>http://www.apache.org/</url> 49 </organization> 50 <url>http://www.apache.org/</url> 51 <repositories> 52 <repository> 53 <id>apache.snapshots</id> 54 <name>Apache Snapshot Repository</name> 55 <url>http://people.apache.org/repo/m2-snapshot-repository</url> 56 <releases> 57 <enabled>false</enabled> 58 </releases> 59 </repository> 60 </repositories> 61 <distributionManagement> 62 <!-- Site omitted - each project must provide their own --> 63 <repository> 64 <id>apache.releases</id> 65 <name>Apache Release Distribution Repository</name> 66 <url>scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository</url> 67 </repository> 68 <snapshotRepository> 69 <id>apache.snapshots</id> 70 <name>Apache Development Snapshot Repository</name> 71 <url>scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url> 72 </snapshotRepository> 73 </distributionManagement> 74 <mailingLists> 75 <mailingList> 76 <name>Apache Announce List</name> 77 <subscribe>announce-subscribe (a] apache.org</subscribe> 78 <unsubscribe>announce-unsubscribe (a] apache.org</unsubscribe> 79 <post>announce (a] apache.org</post> 80 <archive>http://mail-archives.apache.org/mod_mbox/www-announce/</archive> 81 </mailingList> 82 </mailingLists> 83 <properties> 84 <organization.logo>http://www.apache.org/images/asf_logo_wide.gif</organization.logo> 85 </properties> 86 <!-- 87 <build> 88 <plugins> 89 <plugin> 90 <artifactId>maven-remote-resources-plugin</artifactId> 91 <configuration> 92 <artifacts> 93 <artifact>org.apache:apache-distribution-resources:1.0-SNAPSHOT</artifact> 94 </artifacts> 95 </configuration> 96 <executions> 97 <execution> 98 <goals> 99 <goal>process</goal> 100 </goals> 101 </execution> 102 </executions> 103 </plugin> 104 </plugins> 105 </build> 106 --> 107 <scm> 108 <connection>scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/apache-4</connection> 109 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-4</developerConnection> 110 <url>http://svn.apache.org/viewvc/maven/pom/tags/apache-4</url> 111 </scm> 112 </project> 113 114