aboutsummaryrefslogtreecommitdiffstats
path: root/archiva-modules/archiva-base/archiva-artifact-converter/pom.xml
diff options
context:
space:
mode:
authorBrett Porter <brett@apache.org>2014-07-30 11:37:49 +1000
committerBrett Porter <brett@apache.org>2014-07-30 11:46:30 +1000
commit8007a47a3aaa83dfa62fdc0e35d9841e3dd16e42 (patch)
treea1dbbfd520d9f1d8d9ccbf0ca4aa057fd38d952c /archiva-modules/archiva-base/archiva-artifact-converter/pom.xml
parent48f57dcf51dd6b102fc1b0853ec53d8617967fad (diff)
downloadarchiva-8007a47a3aaa83dfa62fdc0e35d9841e3dd16e42.tar.gz
archiva-8007a47a3aaa83dfa62fdc0e35d9841e3dd16e42.zip
merge artifact-converter into converter
Large amount of duplicated information and an unnecessary split package caused duplicates in the produced bundle
Diffstat (limited to 'archiva-modules/archiva-base/archiva-artifact-converter/pom.xml')
-rw-r--r--archiva-modules/archiva-base/archiva-artifact-converter/pom.xml137
1 files changed, 0 insertions, 137 deletions
diff --git a/archiva-modules/archiva-base/archiva-artifact-converter/pom.xml b/archiva-modules/archiva-base/archiva-artifact-converter/pom.xml
deleted file mode 100644
index 2aeae8608..000000000
--- a/archiva-modules/archiva-base/archiva-artifact-converter/pom.xml
+++ /dev/null
@@ -1,137 +0,0 @@
-<?xml version="1.0"?>
-<!--
- ~ 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.archiva</groupId>
- <artifactId>archiva-base</artifactId>
- <version>2.1.1-SNAPSHOT</version>
- </parent>
- <artifactId>archiva-artifact-converter</artifactId>
- <packaging>bundle</packaging>
- <name>Archiva Base :: Artifact Converter</name>
- <description>Converts between Legacy and Modern Layout Artifacts.</description>
- <dependencies>
- <dependency>
- <groupId>org.apache.maven</groupId>
- <artifactId>maven-repository-metadata</artifactId>
- </dependency>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.maven</groupId>
- <artifactId>maven-artifact</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.maven</groupId>
- <artifactId>maven-artifact-manager</artifactId>
- <!-- olamy : weird enforcer doesn't have it but failed IMHO issue in enforcer plugin !!
- <exclusions>
- <exclusion>
- <groupId>org.apache.maven.wagon</groupId>
- <artifactId>wagon-provider-api</artifactId>
- </exclusion>
- </exclusions>
- -->
- </dependency>
- <dependency>
- <groupId>org.apache.archiva</groupId>
- <artifactId>archiva-plexus-bridge</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.archiva</groupId>
- <artifactId>archiva-transaction</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-context</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.maven.shared</groupId>
- <artifactId>maven-model-converter</artifactId>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-simple</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.archiva</groupId>
- <artifactId>archiva-test-utils</artifactId>
- <version>${project.version}</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.felix</groupId>
- <artifactId>maven-bundle-plugin</artifactId>
- <configuration>
- <instructions>
- <Bundle-SymbolicName>org.apache.archiva.artifact.converter</Bundle-SymbolicName>
- <Bundle-Version>${project.version}</Bundle-Version>
- <Export-Package>
- org.apache.archiva.converter.artifact*;version=${project.version};-split-package:=merge-first
- </Export-Package>
- <Import-Package>
- javax.annotation,
- javax.inject,
- org.apache.archiva.common.plexusbridge;version=${project.version},
- org.apache.archiva.transaction;version=${project.version},
- org.apache.commons.io;version="[1.4,2)",
- org.springframework*;version="[3,4)",
- org.apache.maven.artifact*,
- org.apache.maven.model*,
- org.codehaus.plexus.digest,
- org.codehaus.plexus.util*
- </Import-Package>
- </instructions>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <systemPropertyVariables>
- <basedir>${basedir}</basedir>
- </systemPropertyVariables>
- </configuration>
- </plugin>
- </plugins>
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.apache.rat</groupId>
- <artifactId>apache-rat-plugin</artifactId>
- <configuration>
- <excludes>
- <exclude>src/test/source-repository/**</exclude>
- <exclude>src/test/expected-files/**</exclude>
- </excludes>
- </configuration>
- </plugin>
- </plugins>
- </pluginManagement>
- </build>
-</project>