easyconf-0.9.5 is referencing missing artifacts
-----------------------------------------------

                 Key: MEV-603
                 URL: http://jira.codehaus.org/browse/MEV-603
             Project: Maven Evangelism
          Issue Type: Bug
          Components: Dependencies
            Reporter: Aleksandr Tarutin


Missing dependencies from POM:

<dependency>
  <groupId>xdoclet</groupId>
  <artifactId>xdoclet</artifactId>
  <version>1.2.1</version>
</dependency>

<dependency>
  <groupId>xdoclet</groupId>
  <artifactId>xdoclet-web-module</artifactId>
  <version>1.2.1</version>
</dependency>

<dependency>
  <groupId>xpp3</groupId>
  <artifactId>xpp3_min</artifactId>
  <version>1.1.3.4.I</version>
</dependency>

As a workaround, it is possible to add the following dependencies to the 
project's POM:

<!-- xdoclet-1.2.1 referenced by easyconf-0.9.5 is missing -->
<dependency>
        <groupId>xdoclet</groupId>
        <artifactId>xdoclet</artifactId>
        <version>1.2.3</version>
    </dependency>
    <!-- xdoclet-web-module-1.2.1 referenced by easyconf-0.9.5 is missing -->
    <dependency>
        <groupId>xdoclet</groupId>
        <artifactId>xdoclet-web-module</artifactId>
        <version>1.2.3</version>
    </dependency>
    <!-- xpp3_min-1.1.3.4.I referenced by easyconf-0.9.5 is missing -->
    <dependency>
        <groupId>xpp3</groupId>
        <artifactId>xpp3_min</artifactId>
        <version>1.1.3.4.O</version>
    </dependency>

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to