diff options
author | Olivier Lamy <olamy@apache.org> | 2011-05-26 20:53:32 +0000 |
---|---|---|
committer | Olivier Lamy <olamy@apache.org> | 2011-05-26 20:53:32 +0000 |
commit | 22961f8dc45109662e5d10bb35df60ee79683eda (patch) | |
tree | 7b601e279610d840d04a99ee903e43c68e198768 /archiva-modules/archiva-base/archiva-plexus-bridge/pom.xml | |
parent | 2fdf7359b309daee887a89f26bd3f31970d9c504 (diff) | |
download | archiva-22961f8dc45109662e5d10bb35df60ee79683eda.tar.gz archiva-22961f8dc45109662e5d10bb35df60ee79683eda.zip |
[MRM-1473] remove use of plexus-spring
ok for archiva-artifact-converter
introduce a new bridge tru sisu-guice to be able to use maven apis components
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1128078 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'archiva-modules/archiva-base/archiva-plexus-bridge/pom.xml')
-rw-r--r-- | archiva-modules/archiva-base/archiva-plexus-bridge/pom.xml | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/archiva-modules/archiva-base/archiva-plexus-bridge/pom.xml b/archiva-modules/archiva-base/archiva-plexus-bridge/pom.xml new file mode 100644 index 000000000..05f226b6f --- /dev/null +++ b/archiva-modules/archiva-base/archiva-plexus-bridge/pom.xml @@ -0,0 +1,49 @@ +<?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.4-SNAPSHOT</version> + </parent> + <modelVersion>4.0.0</modelVersion> + <artifactId>archiva-plexus-bridge</artifactId> + <name>Archiva Base :: Plexus Bridge</name> + <dependencies> + + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + </dependency> + <dependency> + <groupId>org.sonatype.sisu</groupId> + <artifactId>sisu-inject-plexus</artifactId> + </dependency> + <dependency> + <groupId>org.codehaus.redback.components</groupId> + <artifactId>spring-utils</artifactId> + </dependency> + <dependency> + <groupId>javax.inject</groupId> + <artifactId>javax.inject</artifactId> + </dependency> + </dependencies> +</project> |