2006-07-07 08:23:28 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<!--
|
2007-02-28 17:54:19 -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.
|
|
|
|
-->
|
2006-07-07 08:23:28 -04:00
|
|
|
|
2007-06-02 11:35:57 -04: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/maven-v4_0_0.xsd">
|
2005-04-20 21:06:52 -04:00
|
|
|
<parent>
|
|
|
|
<artifactId>maven</artifactId>
|
2005-09-15 22:50:12 -04:00
|
|
|
<groupId>org.apache.maven</groupId>
|
2005-12-12 13:22:06 -05:00
|
|
|
<version>2.1-SNAPSHOT</version>
|
2005-04-20 21:06:52 -04:00
|
|
|
</parent>
|
2005-09-15 22:50:12 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2005-04-20 21:06:52 -04:00
|
|
|
<artifactId>maven-project</artifactId>
|
|
|
|
<name>Maven Project Builder</name>
|
2005-09-15 22:50:12 -04:00
|
|
|
<description>This library is used to not only read Maven project object model files, but to assemble inheritence
|
|
|
|
and to retrieve remote models as required.</description>
|
2005-04-20 21:06:52 -04:00
|
|
|
<dependencies>
|
2008-02-29 17:58:00 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-workspace</artifactId>
|
|
|
|
<version>2.1-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2005-08-16 12:31:02 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-profile</artifactId>
|
2005-12-12 13:22:06 -05:00
|
|
|
<version>2.1-SNAPSHOT</version>
|
2005-08-16 12:31:02 -04:00
|
|
|
</dependency>
|
2005-04-22 07:01:33 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
2005-09-15 22:50:12 -04:00
|
|
|
<artifactId>maven-model</artifactId>
|
2005-12-12 13:22:06 -05:00
|
|
|
<version>2.1-SNAPSHOT</version>
|
2005-04-22 07:01:33 -04:00
|
|
|
</dependency>
|
2005-10-14 03:15:39 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-utils</artifactId>
|
2005-04-22 07:01:33 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2007-08-17 02:01:00 -04:00
|
|
|
<groupId>org.apache.maven.artifact</groupId>
|
2005-09-15 22:50:12 -04:00
|
|
|
<artifactId>maven-artifact</artifactId>
|
2005-04-22 07:01:33 -04:00
|
|
|
</dependency>
|
2005-06-21 02:49:49 -04:00
|
|
|
<dependency>
|
2005-10-02 20:54:01 -04:00
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
2005-09-15 22:50:12 -04:00
|
|
|
<artifactId>plexus-container-default</artifactId>
|
2005-06-21 02:49:49 -04:00
|
|
|
</dependency>
|
2007-11-15 00:37:55 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>aspectj</groupId>
|
|
|
|
<artifactId>aspectjrt</artifactId>
|
|
|
|
<version>1.5.3</version>
|
|
|
|
</dependency>
|
2007-04-24 13:42:59 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
<artifactId>wagon-file</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2005-04-20 21:06:52 -04:00
|
|
|
</dependencies>
|
2007-11-15 00:37:55 -05:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>aspectj-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>compile-aspects</id>
|
|
|
|
<phase>compile</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>compile</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2005-12-12 13:22:06 -05:00
|
|
|
</project>
|