diff options
author | Brett Porter <brett@apache.org> | 2009-11-25 00:47:58 +0000 |
---|---|---|
committer | Brett Porter <brett@apache.org> | 2009-11-25 00:47:58 +0000 |
commit | 9c623e7fb269e48e2b21fab06995bc717aece437 (patch) | |
tree | 17a724fa54e0ce1f1db9c4a263f825af327d4d6c /archiva-modules/plugins | |
parent | d9e22fa7781c37b8df8a0a3e358ec0b1ace43451 (diff) | |
download | archiva-9c623e7fb269e48e2b21fab06995bc717aece437.tar.gz archiva-9c623e7fb269e48e2b21fab06995bc717aece437.zip |
[MRM-1282] commit missing test files
git-svn-id: https://svn.apache.org/repos/asf/archiva/branches/MRM-1025@883937 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'archiva-modules/plugins')
-rw-r--r-- | archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/apache/4/apache-4.pom | 113 |
1 files changed, 113 insertions, 0 deletions
diff --git a/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/apache/4/apache-4.pom b/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/apache/4/apache-4.pom new file mode 100644 index 000000000..8d202b8b1 --- /dev/null +++ b/archiva-modules/plugins/maven2-repository/src/test/repositories/test/org/apache/apache/4/apache-4.pom @@ -0,0 +1,113 @@ +<?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> + + <!-- Shared parent. Doesn't define a lot of things about Apache like general mailing lists, but does + define the settings common to all projects at Apache --> + <groupId>org.apache</groupId> + <artifactId>apache</artifactId> + <version>4</version> + <packaging>pom</packaging> + <name>The Apache Software Foundation</name> + <description> + The Apache Software Foundation provides support for the Apache community of open-source software projects. + The Apache projects are characterized by a collaborative, consensus based development process, an open and + pragmatic software license, and a desire to create high quality software that leads the way in its field. + We consider ourselves not simply a group of projects sharing a server, but rather a community of developers + and users. + </description> + <licenses> + <license> + <name>The Apache Software License, Version 2.0</name> + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> + <distribution>repo</distribution> + </license> + </licenses> + <organization> + <name>The Apache Software Foundation</name> + <url>http://www.apache.org/</url> + </organization> + <url>http://www.apache.org/</url> + <repositories> + <repository> + <id>apache.snapshots</id> + <name>Apache Snapshot Repository</name> + <url>http://people.apache.org/repo/m2-snapshot-repository</url> + <releases> + <enabled>false</enabled> + </releases> + </repository> + </repositories> + <distributionManagement> + <!-- Site omitted - each project must provide their own --> + <repository> + <id>apache.releases</id> + <name>Apache Release Distribution Repository</name> + <url>scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository</url> + </repository> + <snapshotRepository> + <id>apache.snapshots</id> + <name>Apache Development Snapshot Repository</name> + <url>scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url> + </snapshotRepository> + </distributionManagement> + <mailingLists> + <mailingList> + <name>Apache Announce List</name> + <subscribe>announce-subscribe@apache.org</subscribe> + <unsubscribe>announce-unsubscribe@apache.org</unsubscribe> + <post>announce@apache.org</post> + <archive>http://mail-archives.apache.org/mod_mbox/www-announce/</archive> + </mailingList> + </mailingLists> + <properties> + <organization.logo>http://www.apache.org/images/asf_logo_wide.gif</organization.logo> + </properties> + <!-- + <build> + <plugins> + <plugin> + <artifactId>maven-remote-resources-plugin</artifactId> + <configuration> + <artifacts> + <artifact>org.apache:apache-distribution-resources:1.0-SNAPSHOT</artifact> + </artifacts> + </configuration> + <executions> + <execution> + <goals> + <goal>process</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + --> + <scm> + <connection>scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/apache-4</connection> + <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-4</developerConnection> + <url>http://svn.apache.org/viewvc/maven/pom/tags/apache-4</url> + </scm> +</project> + |