This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 67373 - Does not stop on a breakpoint
Summary: Does not stop on a breakpoint
Status: VERIFIED FIXED
Alias: None
Product: debugger
Classification: Unclassified
Component: Ant (show other bugs)
Version: 5.x
Hardware: PC Windows ME/2000
: P3 blocker (vote)
Assignee: Martin Entlicher
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-10-23 21:04 UTC by Tim Lebedkov
Modified: 2005-12-03 23:32 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Tim Lebedkov 2005-10-23 21:04:34 UTC
-open tasklist/usertasks/build.xml
-install a breakpoint on copy in the target release:

    <target name="release" depends="init">
        <mkdir dir="${cluster}/modules/ext"/>
        <copy todir="${cluster}/modules/ext">
            <fileset dir="../external/">
                <include name="jcalendar*.jar"/>
                <include name="ical4j.jar"/>
            </fileset>
        </copy>
    </target>
    
-debug the "nbm" target
=> debugger stops on the import statement and after "continue" does not reach
the breakpoint.
Comment 1 pzajac 2005-10-24 07:24:02 UTC

*** This issue has been marked as a duplicate of 66929 ***
Comment 2 pzajac 2005-10-24 09:27:03 UTC
a mistake, this issue is not duplicate
Comment 3 Jan Chalupa 2005-10-24 14:19:38 UTC
This is an Ant debugger issue, if I'm not mistaken...
Comment 4 Martin Entlicher 2005-11-01 09:38:32 UTC
Working on that...
Comment 5 Martin Entlicher 2005-11-01 09:56:54 UTC
The main problem was that the imported targets are referred by the project name.
Fixed in trunk:

/cvs/ant/debugger/src/org/netbeans/modules/ant/debugger/AntDebugger.java,v  <--
 AntDebugger.java
new revision: 1.5; previous revision: 1.4
Comment 6 Tim Lebedkov 2005-12-03 23:32:31 UTC
verified in beta 2