You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@archiva.apache.org by jo...@apache.org on 2007/02/16 18:34:03 UTC

svn commit: r508507 - in /maven/archiva/branches/archiva-MRM-239/archiva-common: ./ src/ src/main/ src/main/java/ src/main/java/org/ src/main/java/org/apache/ src/main/java/org/apache/maven/ src/main/java/org/apache/maven/archiva/ src/main/java/org/apa...

Author: joakime
Date: Fri Feb 16 09:34:02 2007
New Revision: 508507

URL: http://svn.apache.org/viewvc?view=rev&rev=508507
Log:
Refactoring of common classes and apis out of other modules

Added:
    maven/archiva/branches/archiva-MRM-239/archiva-common/   (with props)
    maven/archiva/branches/archiva-MRM-239/archiva-common/pom.xml   (with props)
    maven/archiva/branches/archiva-MRM-239/archiva-common/src/
    maven/archiva/branches/archiva-MRM-239/archiva-common/src/main/
    maven/archiva/branches/archiva-MRM-239/archiva-common/src/main/java/
    maven/archiva/branches/archiva-MRM-239/archiva-common/src/main/java/org/
    maven/archiva/branches/archiva-MRM-239/archiva-common/src/main/java/org/apache/
    maven/archiva/branches/archiva-MRM-239/archiva-common/src/main/java/org/apache/maven/
    maven/archiva/branches/archiva-MRM-239/archiva-common/src/main/java/org/apache/maven/archiva/
    maven/archiva/branches/archiva-MRM-239/archiva-common/src/main/java/org/apache/maven/archiva/common/
    maven/archiva/branches/archiva-MRM-239/archiva-common/src/main/java/org/apache/maven/archiva/common/artifact/
    maven/archiva/branches/archiva-MRM-239/archiva-common/src/main/java/org/apache/maven/archiva/common/consumers/
    maven/archiva/branches/archiva-MRM-239/archiva-common/src/test/
    maven/archiva/branches/archiva-MRM-239/archiva-common/src/test/java/

Propchange: maven/archiva/branches/archiva-MRM-239/archiva-common/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Feb 16 09:34:02 2007
@@ -0,0 +1,14 @@
+target
+*~
+.*.swp
+*.log
+*.patch
+*.diff
+*.ipr
+*.iws
+*.iml
+.classpath
+.project
+.settings
+.wtpmodules
+cobertura.ser

Added: maven/archiva/branches/archiva-MRM-239/archiva-common/pom.xml
URL: http://svn.apache.org/viewvc/maven/archiva/branches/archiva-MRM-239/archiva-common/pom.xml?view=auto&rev=508507
==============================================================================
--- maven/archiva/branches/archiva-MRM-239/archiva-common/pom.xml (added)
+++ maven/archiva/branches/archiva-MRM-239/archiva-common/pom.xml Fri Feb 16 09:34:02 2007
@@ -0,0 +1,77 @@
+<?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.maven.archiva</groupId>
+    <version>1.0-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>archiva-common</artifactId>
+  <name>Archiva 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>org.codehaus.plexus</groupId>
+      <artifactId>plexus-component-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+    </dependency>
+    <!-- needed for PlexusTestCase -->
+    <dependency>
+      <groupId>org.codehaus.plexus</groupId>
+      <artifactId>plexus-container-default</artifactId>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.codehaus.plexus</groupId>
+        <artifactId>plexus-maven-plugin</artifactId>
+        <!--
+        <executions>
+          <execution>
+            <id>merge</id>
+            <goals>
+              <goal>merge-descriptors</goal>
+            </goals>
+            <configuration>
+              <descriptors>
+                <descriptor>${basedir}/src/main/resources/META-INF/plexus/components.xml</descriptor>
+                <descriptor>${project.build.directory}/generated-resources/plexus/META-INF/plexus/components.xml</descriptor>
+              </descriptors>
+            </configuration>
+          </execution>
+        </executions>
+         -->
+      </plugin>
+    </plugins>
+  </build>
+</project>

Propchange: maven/archiva/branches/archiva-MRM-239/archiva-common/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archiva/branches/archiva-MRM-239/archiva-common/pom.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Propchange: maven/archiva/branches/archiva-MRM-239/archiva-common/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml