diff options
author | Martin Stockhammer <martin_s@apache.org> | 2019-01-31 22:49:06 +0100 |
---|---|---|
committer | Martin Stockhammer <martin_s@apache.org> | 2019-01-31 22:49:06 +0100 |
commit | 21220fcd57d228a7a87694998e354493e92eb978 (patch) | |
tree | 19b73236d4208233b687254b14629ec56bb17931 /archiva-modules/archiva-base/archiva-maven2-common/pom.xml | |
parent | 847727d57d17b35b108063b45999cff6d506da10 (diff) | |
download | archiva-21220fcd57d228a7a87694998e354493e92eb978.tar.gz archiva-21220fcd57d228a7a87694998e354493e92eb978.zip |
Starting refactoring of proxy handling.
Diffstat (limited to 'archiva-modules/archiva-base/archiva-maven2-common/pom.xml')
-rw-r--r-- | archiva-modules/archiva-base/archiva-maven2-common/pom.xml | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/archiva-modules/archiva-base/archiva-maven2-common/pom.xml b/archiva-modules/archiva-base/archiva-maven2-common/pom.xml new file mode 100644 index 000000000..098121044 --- /dev/null +++ b/archiva-modules/archiva-base/archiva-maven2-common/pom.xml @@ -0,0 +1,55 @@ +<?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/xsd/maven-4.0.0.xsd"> + <parent> + <artifactId>archiva-base</artifactId> + <groupId>org.apache.archiva</groupId> + <version>3.0.0-SNAPSHOT</version> + </parent> + <modelVersion>4.0.0</modelVersion> + + <artifactId>archiva-maven2-common</artifactId> + <name>Archiva Base :: Maven2 Common</name> + + <dependencies> + <dependency> + <groupId>org.apache.archiva</groupId> + <artifactId>archiva-proxy-api</artifactId> + </dependency> + <dependency> + <groupId>org.apache.maven.wagon</groupId> + <artifactId>wagon-provider-api</artifactId> + </dependency> + <dependency> + <groupId>org.apache.maven.wagon</groupId> + <artifactId>wagon-file</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>commons-lang</groupId> + <artifactId>commons-lang</artifactId> + </dependency> + </dependencies> + + +</project>
\ No newline at end of file |