mirror of https://github.com/apache/archiva.git
[MRM-1282] commit missing test files
git-svn-id: https://svn.apache.org/repos/asf/archiva/branches/MRM-1025@883938 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9c623e7fb2
commit
7d2c217bdb
|
@ -0,0 +1,46 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
~ Copyright 2005-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/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.archiva</groupId>
|
||||
<artifactId>archiva-modules</artifactId>
|
||||
<version>1.2.1</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>archiva-base</artifactId>
|
||||
<name>Archiva Base</name>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<modules>
|
||||
<module>archiva-checksum</module>
|
||||
<module>archiva-common</module>
|
||||
<module>archiva-policies</module>
|
||||
<module>archiva-configuration</module>
|
||||
<module>archiva-consumers</module>
|
||||
<module>archiva-indexer</module>
|
||||
<module>archiva-model</module>
|
||||
<module>archiva-dependency-graph</module>
|
||||
<module>archiva-repository-layer</module>
|
||||
<module>archiva-xml-tools</module>
|
||||
<module>archiva-proxy</module>
|
||||
<module>archiva-transaction</module>
|
||||
<module>archiva-artifact-converter</module>
|
||||
<module>archiva-converter</module>
|
||||
</modules>
|
||||
</project>
|
|
@ -0,0 +1,78 @@
|
|||
<?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">
|
||||
<parent>
|
||||
<groupId>org.apache.archiva</groupId>
|
||||
<artifactId>archiva-base</artifactId>
|
||||
<version>1.2.1</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>archiva-common</artifactId>
|
||||
<name>Archiva Base :: Common</name>
|
||||
<dependencies>
|
||||
<!-- TO OTHER DEVELOPERS:
|
||||
This module should depend on NO OTHER ARCHIVA MODULES.
|
||||
If you feel tempted to add one, discuss it first in the
|
||||
archiva-dev@maven.apache.org mailing-list.
|
||||
joakime@apache.org
|
||||
-->
|
||||
<dependency>
|
||||
<groupId>commons-lang</groupId>
|
||||
<artifactId>commons-lang</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-io</groupId>
|
||||
<artifactId>commons-io</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.slf4j</groupId>
|
||||
<artifactId>slf4j-api</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-component-api</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-spring</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>xalan</groupId>
|
||||
<artifactId>xalan</artifactId>
|
||||
<version>2.7.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>dom4j</groupId>
|
||||
<artifactId>dom4j</artifactId>
|
||||
<version>1.6.1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-component-metadata</artifactId>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
|
@ -0,0 +1,207 @@
|
|||
<?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">
|
||||
<parent>
|
||||
<artifactId>archiva</artifactId>
|
||||
<groupId>org.apache.archiva</groupId>
|
||||
<version>1.2.1</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>archiva-modules</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
<name>Archiva :: Modules</name>
|
||||
<url>http://archiva.apache.org/ref/${project.version}</url>
|
||||
<modules>
|
||||
<module>archiva-base</module>
|
||||
<module>archiva-database</module>
|
||||
<module>archiva-reporting</module>
|
||||
<module>archiva-scheduled</module>
|
||||
<module>archiva-web</module>
|
||||
</modules>
|
||||
<reporting>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>cobertura-maven-plugin</artifactId>
|
||||
<version>2.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||
<version>2.1</version>
|
||||
<configuration>
|
||||
<includeTestSourceDirectory>true</includeTestSourceDirectory>
|
||||
<configLocation>config/maven_checks.xml</configLocation>
|
||||
<!-- TODO: enable when archiva-build-resources is active (released?)
|
||||
<configLocation>checkstyle.xml</configLocation>
|
||||
<headerLocation>header.txt</headerLocation>
|
||||
-->
|
||||
</configuration>
|
||||
</plugin>
|
||||
<!-- TODO: OOME
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>findbugs-maven-plugin</artifactId>
|
||||
<version>1.1.1</version>
|
||||
</plugin>
|
||||
-->
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>changelog-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>taglist-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-jxr-plugin</artifactId>
|
||||
<configuration>
|
||||
<aggregate>true</aggregate>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-surefire-report-plugin</artifactId>
|
||||
<version>2.4.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>2.4</version>
|
||||
<configuration>
|
||||
<source>1.5</source>
|
||||
<aggregate>true</aggregate>
|
||||
<doclet>gr.spinellis.umlgraph.doclet.UmlGraphDoc</doclet>
|
||||
<docletArtifact>
|
||||
<groupId>gr.spinellis</groupId>
|
||||
<artifactId>UmlGraph</artifactId>
|
||||
<version>4.6</version>
|
||||
</docletArtifact>
|
||||
<additionalparam>
|
||||
-inferrel -inferdep -quiet -hide java.*
|
||||
-collpackages java.util.* -qualify
|
||||
-postfixpackage -nodefontsize 9
|
||||
-nodefontpackagesize 7
|
||||
</additionalparam>
|
||||
<links>
|
||||
<link>http://java.sun.com/j2se/1.4.2/docs/api</link>
|
||||
<link>http://java.sun.com/j2ee/1.4/docs/api</link>
|
||||
<link>http://java.sun.com/j2se/1.5.0/docs/api</link>
|
||||
<link>http://commons.apache.org/collections/apidocs-COLLECTIONS_3_0/</link>
|
||||
<link>http://commons.apache.org/dbcp/apidocs/</link>
|
||||
<link>http://commons.apache.org/fileupload/apidocs/</link>
|
||||
<link>http://commons.apache.org/httpclient/apidocs/</link>
|
||||
<link>http://commons.apache.org/logging/apidocs/</link>
|
||||
<link>http://commons.apache.org/pool/apidocs/</link>
|
||||
<link>http://junit.sourceforge.net/javadoc/</link>
|
||||
<link>http://logging.apache.org/log4j/1.2/apidocs/</link>
|
||||
<link>http://jakarta.apache.org/regexp/apidocs/</link>
|
||||
<link>http://velocity.apache.org/engine/releases/velocity-1.5/apidocs/</link>
|
||||
</links>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-pmd-plugin</artifactId>
|
||||
<!-- TODO: choose appropriate rulesets -->
|
||||
<configuration>
|
||||
<targetJdk>1.5</targetJdk>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>clirr-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</reporting>
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>ci</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-pmd-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<!-- TODO: after rules are set
|
||||
<goal>check</goal>
|
||||
-->
|
||||
<goal>cpd-check</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<!-- TODO: reformat first, and correct the checks (some are not consistent with the Maven style)
|
||||
<goal>check</goal>
|
||||
-->
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>cobertura-maven-plugin</artifactId>
|
||||
<version>2.2</version>
|
||||
<configuration>
|
||||
<check>
|
||||
<!-- TODO: raise to 85/100 -->
|
||||
<totalLineRate>77</totalLineRate>
|
||||
<totalBranchRate>95</totalBranchRate>
|
||||
</check>
|
||||
<instrumentation>
|
||||
<excludes>
|
||||
<exclude>**/*$*</exclude>
|
||||
</excludes>
|
||||
</instrumentation>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>clean</id>
|
||||
<goals>
|
||||
<goal>clean</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>check</id>
|
||||
<goals>
|
||||
<goal>check</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
<distributionManagement>
|
||||
<site>
|
||||
<id>apache.website</id>
|
||||
<url>${siteBaseDeployment}/ref/${project.version}</url>
|
||||
</site>
|
||||
</distributionManagement>
|
||||
</project>
|
|
@ -0,0 +1,456 @@
|
|||
<?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</groupId>
|
||||
<artifactId>apache</artifactId>
|
||||
<version>4</version>
|
||||
</parent>
|
||||
|
||||
<groupId>org.apache.archiva</groupId>
|
||||
<artifactId>archiva-parent</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
<name>Archiva Common Parent Project</name>
|
||||
<version>3</version>
|
||||
<inceptionYear>2006</inceptionYear>
|
||||
<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>users-subscribe@archiva.apache.org</subscribe>
|
||||
<unsubscribe>users-unsubscribe@archiva.apache.org</unsubscribe>
|
||||
<post>users@archiva.apache.org</post>
|
||||
<archive>http://mail-archives.apache.org/mod_mbox/archiva-users/</archive>
|
||||
<otherArchives>
|
||||
<otherArchive>http://www.mail-archive.com/users@archiva.apache.org</otherArchive>
|
||||
<otherArchive>http://www.nabble.com/archiva-users-f16426.html</otherArchive>
|
||||
<otherArchive>http://markmail.org/list/org.apache.archiva.users</otherArchive>
|
||||
</otherArchives>
|
||||
</mailingList>
|
||||
<mailingList>
|
||||
<name>Archiva Developer List</name>
|
||||
<subscribe>dev-subscribe@archiva.apache.org</subscribe>
|
||||
<unsubscribe>dev-unsubscribe@archiva.apache.org</unsubscribe>
|
||||
<post>dev@archiva.apache.org</post>
|
||||
<archive>http://mail-archives.apache.org/mod_mbox/archiva-dev</archive>
|
||||
<otherArchives>
|
||||
<otherArchive>http://www.mail-archive.com/dev@archiva.apache.org</otherArchive>
|
||||
<otherArchive>http://www.nabble.com/archiva-dev-f16427.html</otherArchive>
|
||||
<otherArchive>http://markmail.org/list/org.apache.archiva.dev</otherArchive>
|
||||
</otherArchives>
|
||||
</mailingList>
|
||||
<mailingList>
|
||||
<name>Archiva Commits List</name>
|
||||
<subscribe>commits-subscribe@archiva.apache.org</subscribe>
|
||||
<unsubscribe>commits-unsubscribe@archiva.apache.org</unsubscribe>
|
||||
<archive>http://mail-archives.apache.org/mod_mbox/archiva-commits</archive>
|
||||
<otherArchives>
|
||||
<otherArchive>http://www.mail-archive.com/commits@archiva.apache.org</otherArchive>
|
||||
<otherArchive>http://markmail.org/list/org.apache.archiva.commits</otherArchive>
|
||||
</otherArchives>
|
||||
</mailingList>
|
||||
<mailingList>
|
||||
<name>Archiva Issues List</name>
|
||||
<subscribe>issues-subscribe@archiva.apache.org</subscribe>
|
||||
<unsubscribe>issues-unsubscribe@archiva.apache.org</unsubscribe>
|
||||
<archive>http://mail-archives.apache.org/mod_mbox/archiva-issues</archive>
|
||||
<otherArchives>
|
||||
<otherArchive>http://www.mail-archive.com/issues@archiva.apache.org</otherArchive>
|
||||
<otherArchive>http://www.nabble.com/Archiva---Issues-f29617.html</otherArchive>
|
||||
</otherArchives>
|
||||
</mailingList>
|
||||
</mailingLists>
|
||||
<scm>
|
||||
<connection>scm:svn:http://svn.apache.org/repos/asf/archiva/tags/archiva-parent-3</connection>
|
||||
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/archiva/tags/archiva-parent-3</developerConnection>
|
||||
<url>http://svn.apache.org/viewcvs.cgi/archiva/tags/archiva-parent-3</url>
|
||||
</scm>
|
||||
<properties>
|
||||
<siteBaseDeployment>scp://people.apache.org/www/archiva.apache.org</siteBaseDeployment>
|
||||
</properties>
|
||||
<ciManagement>
|
||||
<system>continuum</system>
|
||||
<url>http://vmbuild.apache.org/continuum</url>
|
||||
</ciManagement>
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>release</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<configuration>
|
||||
<passphrase>${gpg.passphrase}</passphrase>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>sign</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-sources</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-javadocs</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<configuration>
|
||||
<altDeploymentRepository>${deploy.altRepository}</altDeploymentRepository>
|
||||
<updateReleaseInfo>true</updateReleaseInfo>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<!-- We want to package up license resources in the JARs produced -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-remote-resources-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>process</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<resourceBundles>
|
||||
<resourceBundle>org.apache:apache-jar-resource-bundle:1.3</resourceBundle>
|
||||
</resourceBundles>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<!-- set versions of common plugins for reproducibility, ordered alphabetically -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-clean-plugin</artifactId>
|
||||
<version>2.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<version>1.0-alpha-4</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>2.3</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<version>2.0-beta-7</version>
|
||||
<configuration>
|
||||
<tagBase>https://svn.apache.org/repos/asf/archiva/tags/</tagBase>
|
||||
<useReleaseProfile>false</useReleaseProfile>
|
||||
<arguments>-Prelease</arguments>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-site-plugin</artifactId>
|
||||
<version>2.0-beta-5</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<version>2.0.3</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
|
||||
<!-- Developers listed by PMC Chair, PMC, Committers, Contributers, all alphabetical-->
|
||||
<developers>
|
||||
<developer>
|
||||
<id>oching</id>
|
||||
<name>Maria Odea B. Ching</name>
|
||||
<email>oching@apache.org</email>
|
||||
<roles>
|
||||
<role>PMC Chair</role>
|
||||
</roles>
|
||||
<timezone>+8</timezone>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>aheritier</id>
|
||||
<name>Arnaud Heritier</name>
|
||||
<email>aheritier@apache.org</email>
|
||||
<organization>OCTO Technology</organization>
|
||||
<organizationUrl>http://www.octo.com</organizationUrl>
|
||||
<roles>
|
||||
<role>PMC Member</role>
|
||||
</roles>
|
||||
<timezone>+1</timezone>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>bellingard</id>
|
||||
<name>Fabrice Bellingard</name>
|
||||
<roles>
|
||||
<role>PMC Member</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>brett</id>
|
||||
<name>Brett Porter</name>
|
||||
<email>brett@apache.org</email>
|
||||
<organization>ASF</organization>
|
||||
<roles>
|
||||
<role>PMC Member</role>
|
||||
</roles>
|
||||
<timezone>+10</timezone>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>carlos</id>
|
||||
<name>Carlos Sanchez</name>
|
||||
<email>carlos@apache.org</email>
|
||||
<organization>ASF</organization>
|
||||
<roles>
|
||||
<role>PMC Member</role>
|
||||
</roles>
|
||||
<timezone>+1</timezone>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>epunzalan</id>
|
||||
<name>Edwin Punzalan</name>
|
||||
<email>epunzalan@apache.org</email>
|
||||
<roles>
|
||||
<role>PMC Member</role>
|
||||
</roles>
|
||||
<timezone>-8</timezone>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>evenisse</id>
|
||||
<name>Emmanuel Venisse</name>
|
||||
<email>evenisse@apache.org</email>
|
||||
<organization>ASF</organization>
|
||||
<roles>
|
||||
<role>PMC Member</role>
|
||||
</roles>
|
||||
<timezone>+1</timezone>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>joakime</id>
|
||||
<name>Joakim Erdfelt</name>
|
||||
<email>joakime@apache.org</email>
|
||||
<organization>ASF</organization>
|
||||
<roles>
|
||||
<role>PMC Member</role>
|
||||
</roles>
|
||||
<timezone>-5</timezone>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>jtolentino</id>
|
||||
<name>Ernesto Tolentino Jr.</name>
|
||||
<email>jtolentino@apache.org</email>
|
||||
<organization>ASF</organization>
|
||||
<roles>
|
||||
<role>PMC Member</role>
|
||||
</roles>
|
||||
<timezone>+8</timezone>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>jmcconnell</id>
|
||||
<name>Jesse McConnell</name>
|
||||
<email>jmcconnell@apache.org</email>
|
||||
<organization>ASF</organization>
|
||||
<roles>
|
||||
<role>PMC Member</role>
|
||||
</roles>
|
||||
<timezone>-6</timezone>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>nicolas</id>
|
||||
<name>Nicolas De Loof</name>
|
||||
<email>nicolas@apache.org</email>
|
||||
<organization>Capgemini</organization>
|
||||
<roles>
|
||||
<role>PMC Member</role>
|
||||
</roles>
|
||||
<timezone>+1</timezone>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>wsmoak</id>
|
||||
<name>Wendy Smoak</name>
|
||||
<email>wsmoak@apache.org</email>
|
||||
<roles>
|
||||
<role>PMC Member</role>
|
||||
</roles>
|
||||
<timezone>-7</timezone>
|
||||
</developer>
|
||||
<!--Committers-->
|
||||
<developer>
|
||||
<id>dennisl</id>
|
||||
<name>Dennis Lundberg</name>
|
||||
<email>dennisl@apache.org</email>
|
||||
<organization>ASF</organization>
|
||||
<roles>
|
||||
<role>Committer</role>
|
||||
</roles>
|
||||
<timezone>+1</timezone>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>jdumay</id>
|
||||
<name>James William Dumay</name>
|
||||
<email>james@atlassian.com</email>
|
||||
<organization>Atlassian</organization>
|
||||
<roles>
|
||||
<roles>Committer</roles>
|
||||
</roles>
|
||||
<timezone>+11</timezone>
|
||||
</developer>
|
||||
<!-- Emeritus Committers -->
|
||||
<developer>
|
||||
<id>jvanzyl</id>
|
||||
<name>Jason van Zyl</name>
|
||||
<roles>
|
||||
<role>Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>bayard</id>
|
||||
<name>Henri Yandell</name>
|
||||
<roles>
|
||||
<role>Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>kenney</id>
|
||||
<name>Kenney Westerhof</name>
|
||||
<roles>
|
||||
<role>Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
</developers>
|
||||
|
||||
<contributors>
|
||||
<contributor>
|
||||
<name>Steffen Grunwald</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Stefan Prange</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>John Michael Luy</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Martin Höller</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Stephen Gargan</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Dario Oliveros</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>james ahlborn</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Jim Jackson</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Daniel Harvey</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Aleksandr Tarutin</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Teodoro Cue Jr.</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Jan Ancajas</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Jens Mühlenhoff</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Dawn Angelito</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Nap Ramirez</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Henry Isidro</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Antoine Veret</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Christian Gruber</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Allan Ramirez</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Pete Marvin King</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Joel Sudiacal</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Milos Kleint</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Nick Gonzalez</name>
|
||||
</contributor>
|
||||
</contributors>
|
||||
|
||||
</project>
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue