You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hc.apache.org by bu...@apache.org on 2005/06/10 20:26:26 UTC

DO NOT REPLY [Bug 35321] New: - commons-httpclient-3.0-rc2.pom does not contain dependencies

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=35321>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=35321

           Summary: commons-httpclient-3.0-rc2.pom does not contain
                    dependencies
           Product: HttpClient
           Version: 3.0 RC2
          Platform: Other
        OS/Version: other
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Commons HttpClient
        AssignedTo: httpclient-dev@jakarta.apache.org
        ReportedBy: kevin.brown@air2web.com


The maven 2 commons-httpclient-3.0-rc2.pom does not contain dependency
information.  Specifically, the commons-logging dependency is not included.  As
a result, my project which uses commons-httpclient-3.0-rc2 is not downloading
the required transitive (I love this feature) dependency.

I do not who is responsible for maintaining these files (it looks like a lot of
them may have been generated automatically by the maven folks), but this seems,
to me, to be the most logical place to report the bug.

http://www.ibiblio.org/pub/packages/maven2/commons-httpclient/commons-httpclient/3.0-rc2/commons-httpclient-3.0-rc2.pom

current:
<project>
  <modelVersion>4.0.0</modelVersion>
  <groupId>commons-httpclient</groupId>
  <artifactId>commons-httpclient</artifactId>
  <version>3.0-rc2</version>
</project>

proposed fix:

<project>
  <modelVersion>4.0.0</modelVersion>
  <groupId>commons-httpclient</groupId>
  <artifactId>commons-httpclient</artifactId>
  <version>3.0-rc2</version>
<dependencies>
    <dependency>
            <groupId>commons-logging</groupId>
            <artifactId>commons-logging</artifactId>
            <version>1.0.4</version>
    </dependency>
  </dependencies>

</project>

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: httpclient-dev-help@jakarta.apache.org