Home | History | Annotate | Download | only in 3.3.9
      1 <?xml version="1.0" encoding="UTF-8"?>
      2 
      3   <!--
      4     Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE
      5     file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file
      6     to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
      7     the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by
      8     applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS,
      9     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language
     10     governing permissions and limitations under the License.
     11   -->
     12 
     13 <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">
     14   <modelVersion>4.0.0</modelVersion>
     15 
     16   <parent>
     17     <groupId>org.apache.maven</groupId>
     18     <artifactId>maven</artifactId>
     19     <version>3.3.9</version>
     20   </parent>
     21 
     22   <artifactId>maven-model-builder</artifactId>
     23 
     24   <name>Maven Model Builder</name>
     25   <description>The effective model builder, with inheritance, profile activation, interpolation, ...</description>
     26 
     27   <dependencies>
     28     <dependency>
     29       <groupId>org.codehaus.plexus</groupId>
     30       <artifactId>plexus-utils</artifactId>
     31     </dependency>
     32     <dependency>
     33       <groupId>org.codehaus.plexus</groupId>
     34       <artifactId>plexus-interpolation</artifactId>
     35     </dependency>
     36     <dependency>
     37       <groupId>org.codehaus.plexus</groupId>
     38       <artifactId>plexus-component-annotations</artifactId>
     39     </dependency>
     40     <dependency>
     41       <groupId>org.apache.maven</groupId>
     42       <artifactId>maven-model</artifactId>
     43     </dependency>
     44     <dependency>
     45       <groupId>org.apache.maven</groupId>
     46       <artifactId>maven-artifact</artifactId>
     47     </dependency>
     48     <dependency>
     49       <groupId>org.apache.maven</groupId>
     50       <artifactId>maven-builder-support</artifactId>
     51     </dependency>
     52     <dependency>
     53       <groupId>com.google.guava</groupId>
     54       <artifactId>guava</artifactId>
     55     </dependency>
     56     <dependency>
     57       <groupId>org.apache.commons</groupId>
     58       <artifactId>commons-lang3</artifactId>
     59     </dependency>
     60     <dependency>
     61       <groupId>org.eclipse.sisu</groupId>
     62       <artifactId>org.eclipse.sisu.plexus</artifactId>
     63       <scope>test</scope>
     64     </dependency>
     65     <dependency>
     66       <groupId>com.google.inject</groupId>
     67       <artifactId>guice</artifactId>
     68       <classifier>no_aop</classifier>
     69       <scope>test</scope>
     70     </dependency>
     71     <dependency>
     72       <groupId>xmlunit</groupId>
     73       <artifactId>xmlunit</artifactId>
     74       <version>1.3</version>
     75       <scope>test</scope>
     76     </dependency>
     77   </dependencies>
     78 
     79   <build>
     80     <plugins>
     81       <plugin>
     82         <groupId>org.codehaus.plexus</groupId>
     83         <artifactId>plexus-component-metadata</artifactId>
     84       </plugin>
     85     </plugins>
     86   </build>
     87 
     88 </project>
     89