Home | History | Annotate | Download | only in 0.9.0.M3
      1 <?xml version="1.0" encoding="UTF-8"?>
      2 
      3 <!--
      4  ~ Copyright (c) 2010, 2012 Sonatype, Inc.
      5  ~ All rights reserved. This program and the accompanying materials
      6  ~ are made available under the terms of the Eclipse Public License v1.0
      7  ~ which accompanies this distribution, and is available at
      8  ~ http://www.eclipse.org/legal/epl-v10.html
      9  ~
     10  ~ Contributors:
     11  ~    Sonatype, Inc. - initial API and implementation
     12 -->
     13 
     14 <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">
     15   <modelVersion>4.0.0</modelVersion>
     16 
     17   <parent>
     18     <groupId>org.eclipse.aether</groupId>
     19     <artifactId>aether</artifactId>
     20     <version>0.9.0.M3</version>
     21   </parent>
     22 
     23   <artifactId>aether-util</artifactId>
     24 
     25   <name>Aether Utilities</name>
     26   <description>
     27     A collection of utility classes to ease usage of the repository system.
     28   </description>
     29 
     30   <properties>
     31     <bundle.symbolicName>org.eclipse.aether.util</bundle.symbolicName>
     32   </properties>
     33 
     34   <dependencies>
     35     <dependency>
     36       <groupId>org.eclipse.aether</groupId>
     37       <artifactId>aether-api</artifactId>
     38     </dependency>
     39     <dependency>
     40       <groupId>org.eclipse.aether</groupId>
     41       <artifactId>aether-test-util</artifactId>
     42       <scope>test</scope>
     43     </dependency>
     44     <dependency>
     45       <groupId>junit</groupId>
     46       <artifactId>junit</artifactId>
     47       <scope>test</scope>
     48     </dependency>
     49   </dependencies>
     50 
     51   <build>
     52     <plugins>
     53       <plugin>
     54         <groupId>org.codehaus.mojo</groupId>
     55         <artifactId>animal-sniffer-maven-plugin</artifactId>
     56       </plugin>
     57       <plugin>
     58         <groupId>org.codehaus.mojo</groupId>
     59         <artifactId>clirr-maven-plugin</artifactId>
     60       </plugin>
     61       <plugin>
     62         <groupId>org.apache.felix</groupId>
     63         <artifactId>maven-bundle-plugin</artifactId>
     64       </plugin>
     65     </plugins>
     66   </build>
     67 </project>
     68