aboutsummaryrefslogtreecommitdiffstats
path: root/archiva-configuration/pom.xml
diff options
context:
space:
mode:
authorJoakim Erdfelt <joakime@apache.org>2007-03-22 21:10:28 +0000
committerJoakim Erdfelt <joakime@apache.org>2007-03-22 21:10:28 +0000
commitb2332f00ba4bcdc76aebaf03d93916faf132cbd8 (patch)
tree998a8a35fd8a1d0c686a3d7a31fa04f0abbc3dc3 /archiva-configuration/pom.xml
parent8be908c993e6ec8f3427c2cfe5b293cba9b6b764 (diff)
downloadarchiva-b2332f00ba4bcdc76aebaf03d93916faf132cbd8.tar.gz
archiva-b2332f00ba4bcdc76aebaf03d93916faf132cbd8.zip
More directory moves
git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/branches/archiva-jpox-database-refactor@521470 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'archiva-configuration/pom.xml')
-rw-r--r--archiva-configuration/pom.xml109
1 files changed, 0 insertions, 109 deletions
diff --git a/archiva-configuration/pom.xml b/archiva-configuration/pom.xml
deleted file mode 100644
index 4a502130b..000000000
--- a/archiva-configuration/pom.xml
+++ /dev/null
@@ -1,109 +0,0 @@
-<?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-configuration</artifactId>
- <name>Archiva Configuration</name>
- <dependencies>
- <dependency>
- <groupId>org.codehaus.plexus</groupId>
- <artifactId>plexus-component-api</artifactId>
- </dependency>
- <dependency>
- <groupId>org.codehaus.plexus</groupId>
- <artifactId>plexus-utils</artifactId>
- </dependency>
- <dependency>
- <groupId>commons-lang</groupId>
- <artifactId>commons-lang</artifactId>
- </dependency>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- </dependency>
- <dependency>
- <groupId>org.codehaus.plexus.registry</groupId>
- <artifactId>plexus-registry-api</artifactId>
- <version>1.0-alpha-2-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.codehaus.plexus.registry</groupId>
- <artifactId>plexus-registry-commons</artifactId>
- <version>1.0-alpha-2-SNAPSHOT</version>
- <scope>test</scope>
- </dependency>
- <!-- Test Deps -->
- <dependency>
- <groupId>easymock</groupId>
- <artifactId>easymock</artifactId>
- <version>1.2_Java1.3</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.codehaus.plexus</groupId>
- <artifactId>plexus-container-default</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.codehaus.modello</groupId>
- <artifactId>modello-maven-plugin</artifactId>
- <version>1.0-alpha-15-SNAPSHOT</version>
- <executions>
- <execution>
- <goals>
- <goal>java</goal>
- <goal>registry-reader</goal>
- <goal>registry-writer</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <version>1.0.0</version>
- <model>src/main/mdo/configuration.mdo</model>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>cobertura-maven-plugin</artifactId>
- <configuration>
- <instrumentation>
- <!-- exclude generated -->
- <excludes>
- <exclude>org/apache/maven/archiva/configuration/io/**</exclude>
- <exclude>org/apache/maven/archiva/configuration/*RepositoryConfiguration.*</exclude>
- <exclude>org/apache/maven/archiva/configuration/Configuration.*</exclude>
- <exclude>org/apache/maven/archiva/configuration/Proxy.*</exclude>
- </excludes>
- </instrumentation>
- </configuration>
- </plugin>
- </plugins>
- </build>
-</project>