2006-07-07 08:23:28 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
~ Copyright 2005-2006 The Apache Software Foundation.
|
|
|
|
~
|
|
|
|
~ Licensed 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.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<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-10-12 02:46:29 -04:00
|
|
|
<parent>
|
|
|
|
<artifactId>maven</artifactId>
|
2005-10-14 03:15:39 -04:00
|
|
|
<groupId>org.apache.maven</groupId>
|
2005-12-12 13:22:06 -05:00
|
|
|
<version>2.1-SNAPSHOT</version>
|
2005-10-12 02:46:29 -04:00
|
|
|
</parent>
|
2005-10-14 03:15:39 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2005-10-12 02:46:29 -04:00
|
|
|
<artifactId>maven-error-diagnostics</artifactId>
|
|
|
|
<name>Maven Error Diagnostics</name>
|
2005-10-14 03:15:39 -04:00
|
|
|
<description>Provides a manager component which will process a given Throwable instance through a set of diagnostic
|
2005-10-12 02:46:29 -04:00
|
|
|
sub-components, and return a String message with user-friendly information about the error and possibly
|
2005-10-14 03:15:39 -04:00
|
|
|
how to fix it.</description>
|
2005-10-12 02:46:29 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-container-default</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2005-12-12 13:22:06 -05:00
|
|
|
</project>
|