2008-11-20 23:52:08 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
2016-05-28 07:28:23 -04:00
|
|
|
<!--
|
|
|
|
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.
|
|
|
|
-->
|
2008-11-20 23:52:08 -05:00
|
|
|
|
2009-03-01 03:55:40 -05: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">
|
2009-04-22 19:04:06 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2008-11-20 23:52:08 -05:00
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
2009-04-22 19:04:06 -04:00
|
|
|
<artifactId>maven</artifactId>
|
2018-06-17 17:38:49 -04:00
|
|
|
<version>3.6.0-SNAPSHOT</version>
|
2008-11-20 23:52:08 -05:00
|
|
|
</parent>
|
2009-04-22 19:04:06 -04:00
|
|
|
|
|
|
|
<artifactId>maven-model-builder</artifactId>
|
|
|
|
|
|
|
|
<name>Maven Model Builder</name>
|
2011-09-03 16:02:14 -04:00
|
|
|
<description>The effective model builder, with inheritance, profile activation, interpolation, ...</description>
|
2009-04-22 19:04:06 -04:00
|
|
|
|
2008-11-20 23:52:08 -05:00
|
|
|
<dependencies>
|
2008-12-14 19:20:25 -05:00
|
|
|
<dependency>
|
2009-04-22 19:04:06 -04:00
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-utils</artifactId>
|
2008-12-14 19:20:25 -05:00
|
|
|
</dependency>
|
2009-06-01 13:49:34 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-interpolation</artifactId>
|
|
|
|
</dependency>
|
2009-02-19 16:22:46 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
2009-04-22 19:04:06 -04:00
|
|
|
<artifactId>plexus-component-annotations</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-model</artifactId>
|
|
|
|
</dependency>
|
2015-07-22 04:52:01 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-artifact</artifactId>
|
|
|
|
</dependency>
|
2014-12-23 08:09:01 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-builder-support</artifactId>
|
|
|
|
</dependency>
|
2009-05-23 15:05:00 -04:00
|
|
|
<dependency>
|
2013-03-12 21:11:34 -04:00
|
|
|
<groupId>org.eclipse.sisu</groupId>
|
|
|
|
<artifactId>org.eclipse.sisu.plexus</artifactId>
|
2009-05-23 15:05:00 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-05-16 09:27:22 -04:00
|
|
|
<!-- Testing -->
|
2014-08-26 14:11:21 -04:00
|
|
|
<dependency>
|
2015-04-28 19:38:57 -04:00
|
|
|
<groupId>com.google.inject</groupId>
|
|
|
|
<artifactId>guice</artifactId>
|
2014-08-26 14:11:21 -04:00
|
|
|
<classifier>no_aop</classifier>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2011-08-24 17:57:33 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>xmlunit</groupId>
|
|
|
|
<artifactId>xmlunit</artifactId>
|
2016-01-24 21:48:14 -05:00
|
|
|
<version>1.6</version>
|
2011-08-24 17:57:33 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2008-11-20 23:52:08 -05:00
|
|
|
</dependencies>
|
2009-02-04 10:33:47 -05:00
|
|
|
|
2009-04-22 19:04:06 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-component-metadata</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2009-03-01 03:55:40 -05:00
|
|
|
|
2008-11-20 23:52:08 -05:00
|
|
|
</project>
|