bugClasspath Extensions - Bugs: bug #14950, undefined classpathref in...

 
 

bug #14950: undefined classpathref in mail/build.xml

Submitter:  Vadim Nasardinov <vadim>
Submitted:  Thu 10 Nov 2005 10:08:53 PM UTC
   
 
Category:  mail Severity:  3 - Normal
Item Group:  None Status:  Fixed
Privacy:  Public Assigned to:  dog
Open/Closed:  Closed
* Mandatory Fields

Add a New Comment Rich Markup
   

Sun 20 Nov 2005 09:56:14 AM UTC, comment #2: 

classpathref changed to "providers.classpath"

Chris Burdess <dog>
Group administrator
Fri 11 Nov 2005 04:30:35 PM UTC, comment #1: 

Xref for the sake of archive completeness:
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=157685#c2

Vadim Nasardinov <vadim>
Thu 10 Nov 2005 10:08:53 PM UTC, original submission:  

This is for today's CVS checkout:

|$ cvs status build.xml | grep revision
|   Working revision:    1.14
|   Repository revision: 1.14    /cvsroot/classpathx/mail/build.xml,v


The path id "nntp.classpath" is undefined:

$ cat -n build.xml | grep -B2 nntp.classpath
   210      <javadoc destdir='${doc}' use='true' author='true'
   211        windowtitle='GNU JavaMail API documentation'
   212        classpathref='nntp.classpath'>


It used to have a definition up to and including version 1.4.  It was
removed in version 1.5 where a dependency on nntplib.jar was removed
and a new dependency on inetlib.jar was introduced:


|$ cvs diff -u -r1.4 -r1.5 build.xml
|Index: build.xml
|===================================================================
|RCS file: /cvsroot/classpathx/mail/build.xml,v
|retrieving revision 1.4
|retrieving revision 1.5
|diff -u -r1.4 -r1.5
|--- build.xml   21 Sep 2003 12:01:19 -0000      1.4
|+++ build.xml   20 Oct 2003 18:49:13 -0000      1.5
|@@ -1,5 +1,5 @@
| <!--
|-$Id: build.xml,v 1.4 2003/09/21 12:01:19 dog Exp $
|+$Id: build.xml,v 1.5 2003/10/20 18:49:13 dog Exp $
| (C) Copyright 2003 Chris Burdess -email is unavailable-
|
| This file is part of GNU JavaMail.
|@@ -42,7 +42,7 @@
|        <property name='mbox.jar' location='mbox.jar'/>
|        <property name='maildir.jar' location='maildir.jar'/>
|        <property name='activation.jar' location='${lib}/activation.jar'/>
|-       <property name='nntplib.jar' location='${lib}/nntplib.jar'/>
|+       <property name='inetlib.jar' location='${lib}/inetlib.jar'/>
|        <property name='META-INF' location='${build}/META-INF'/>
|        <property name='address.map' location='${META-INF}/javamail.address.map'/>
|        <property name='providers' location='${META-INF}/javamail.providers'/>
|@@ -51,6 +51,7 @@
|        <path id='mail.classpath'>
|                <pathelement path='${classpath}'/>
|                <pathelement path='${activation.jar}'/>
|+               <pathelement path='${inetlib.jar}'/>
|        </path>
|       
|        <path id='provider.classpath'>
|@@ -58,11 +59,6 @@
|                <pathelement path='${build}'/>
|        </path>
|
|-       <path id='nntp.classpath'>
|-               <path refid='provider.classpath'/>
|-               <pathelement path='${nntplib.jar}'/>
|-       </path>
|-
|        <!-- Targets -->
|        <target name='init'>
|                <tstamp/>
|@@ -114,7 +110,7 @@
|
|        <target name='nntp' depends='gnumail' unless='disable-nntp'>
|                <javac srcdir='${src}' destdir='${build}'>
|-                       <classpath refid='nntp.classpath'/>
|+                       <classpath refid='provider.classpath'/>
|                        <include name='gnu/mail/providers/nntp/*.java'/>
|                </javac>
|                <echo file='${address.map}'>rfc822=nntp-post'


As it stands, the undefined "classpathref" prevents the "javadoc"
target from working.

Vadim Nasardinov <vadim>

 

(Note: upload size limit is set to 16384 kB, after insertion of the required escape characters.)

Attach Files:
   
   
Comment:
   

No files currently attached

 

Depends on the following items: None found

Items that depend on this one: None found

 

CC list is empty

 

There are 0 votes so far. Votes easily highlight which items people would like to see resolved in priority, independently of the priority of the item set by tracker managers.

Only logged-in users can vote.

 

Follow 3 latest changes.

Date Changed by Updated Field Previous Value => Replaced by
2005-11-20 dog Assigned toNone dog
    Open/ClosedOpen Closed
2005-11-20 dog StatusNone Fixed

Back to the top

Powered by Savane 3.13-758e.
Corresponding source code