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