2008-11-20 23:52:08 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
2008-12-14 19:20:25 -05: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>
|
2009-01-30 20:06:48 -05:00
|
|
|
<version>3.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>
|
2009-01-30 20:06:48 -05:00
|
|
|
<version>3.0-SNAPSHOT</version>
|
2009-04-22 19:04:06 -04:00
|
|
|
|
|
|
|
<name>Maven Model Builder</name>
|
|
|
|
|
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-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>
|
2008-11-20 23:52:08 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.4</version>
|
|
|
|
<scope>test</scope>
|
2008-12-14 19:20:25 -05:00
|
|
|
</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>
|