2010-08-24 18:46:07 -04:00
|
|
|
<?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.
|
|
|
|
-->
|
|
|
|
|
2010-08-25 16:12:52 -04:00
|
|
|
<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">
|
2010-08-24 18:46:07 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven</artifactId>
|
2015-07-30 22:25:55 -04:00
|
|
|
<version>3.3.7-SNAPSHOT</version>
|
2010-08-24 18:46:07 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>maven-aether-provider</artifactId>
|
|
|
|
|
|
|
|
<name>Maven Aether Provider</name>
|
2013-05-29 14:47:26 -04:00
|
|
|
<description>Extensions to Aether for utilizing Maven POM and repository metadata.</description>
|
2010-08-24 18:46:07 -04:00
|
|
|
|
|
|
|
<dependencies>
|
2010-11-02 10:28:14 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-model</artifactId>
|
|
|
|
</dependency>
|
2010-08-24 18:46:07 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-model-builder</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-repository-metadata</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2011-12-30 15:43:28 -05:00
|
|
|
<groupId>org.eclipse.aether</groupId>
|
2010-08-24 18:46:07 -04:00
|
|
|
<artifactId>aether-api</artifactId>
|
|
|
|
</dependency>
|
2010-11-02 10:28:14 -04:00
|
|
|
<dependency>
|
2011-12-30 15:43:28 -05:00
|
|
|
<groupId>org.eclipse.aether</groupId>
|
2010-11-02 10:28:14 -04:00
|
|
|
<artifactId>aether-spi</artifactId>
|
|
|
|
</dependency>
|
2010-08-24 18:46:07 -04:00
|
|
|
<dependency>
|
2011-12-30 15:43:28 -05:00
|
|
|
<groupId>org.eclipse.aether</groupId>
|
2010-08-24 18:46:07 -04:00
|
|
|
<artifactId>aether-util</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2011-12-30 15:43:28 -05:00
|
|
|
<groupId>org.eclipse.aether</groupId>
|
2010-08-24 18:46:07 -04:00
|
|
|
<artifactId>aether-impl</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-component-annotations</artifactId>
|
|
|
|
</dependency>
|
2010-11-02 10:28:14 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-utils</artifactId>
|
|
|
|
</dependency>
|
2011-12-30 15:43:28 -05:00
|
|
|
<dependency>
|
2015-04-28 19:38:57 -04:00
|
|
|
<groupId>com.google.inject</groupId>
|
|
|
|
<artifactId>guice</artifactId>
|
2011-12-30 15:43:28 -05:00
|
|
|
<classifier>no_aop</classifier>
|
|
|
|
<optional>true</optional>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>aopalliance</groupId>
|
|
|
|
<artifactId>aopalliance</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2013-07-26 21:09:50 -04:00
|
|
|
<!-- Testing -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.aether</groupId>
|
2014-08-27 23:17:24 -04:00
|
|
|
<artifactId>aether-connector-basic</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.aether</groupId>
|
|
|
|
<artifactId>aether-transport-wagon</artifactId>
|
2013-07-26 21:09:50 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
<artifactId>wagon-file</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.sisu</groupId>
|
|
|
|
<artifactId>org.eclipse.sisu.plexus</artifactId>
|
|
|
|
<scope>test</scope>
|
2013-08-26 14:08:04 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
<version>1.9.5</version>
|
|
|
|
<scope>test</scope>
|
2014-11-23 07:00:59 -05:00
|
|
|
</dependency>
|
2010-08-24 18:46:07 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-component-metadata</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|
2014-08-27 23:17:24 -04:00
|
|
|
|