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

Summary: Does not stop on a breakpoint
Product: debugger Reporter: Tim Lebedkov <lebedkov>
Component: AntAssignee: Martin Entlicher <mentlicher>
Status: VERIFIED FIXED    
Severity: blocker CC: jchalupa
Priority: P3    
Version: 5.x   
Hardware: PC   
OS: Windows ME/2000   
Issue Type: DEFECT Exception Reporter:

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