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.

View | Details | Raw Unified | Return to bug 176221
Collapse All | Expand All

(-)a/web.project/src/org/netbeans/modules/web/project/resources/build-impl.xsl (-2 / +13 lines)
Lines 1347-1353 Link Here
1347
            
1347
            
1348
            <target name="debug">
1348
            <target name="debug">
1349
                <xsl:attribute name="description">Debug project in IDE.</xsl:attribute>
1349
                <xsl:attribute name="description">Debug project in IDE.</xsl:attribute>
1350
                <xsl:attribute name ="depends">init,compile,compile-jsps,-do-compile-single-jsp,-pre-dist,-do-tmp-dist-with-manifest,-do-tmp-dist-without-manifest</xsl:attribute>
1350
                <xsl:attribute name ="depends">init,compile,compile-jsps,-do-compile-single-jsp,-pre-dist,-do-tmp-dist-with-manifest,-do-tmp-dist-without-manifest,-init-cos</xsl:attribute>
1351
                <xsl:attribute name="if">netbeans.home</xsl:attribute>
1351
                <xsl:attribute name="if">netbeans.home</xsl:attribute>
1352
                <nbstartserver debugmode="true"/>
1352
                <nbstartserver debugmode="true"/>
1353
                <antcall target="connect-debugger"/>
1353
                <antcall target="connect-debugger"/>
Lines 1357-1363 Link Here
1357
            </target>
1357
            </target>
1358
            
1358
            
1359
            <target name="connect-debugger" if="do.debug.server" unless="is.debugged">
1359
            <target name="connect-debugger" if="do.debug.server" unless="is.debugged">
1360
                <nbjpdaconnect name="${{name}}" host="${{jpda.host}}" address="${{jpda.address}}" transport="${{jpda.transport}}">
1360
                <condition>
1361
                    <xsl:attribute name="property">dos.listening.cp</xsl:attribute>
1362
                    <xsl:attribute name="value">
1363
                        <xsl:choose>
1364
                            <xsl:when test="/p:project/p:configuration/webproject3:data/webproject3:web-services/webproject3:web-service|/p:project/p:configuration/webproject3:data/webproject3:web-service-clients/webproject3:web-service-client">${{debug.classpath}}:${{j2ee.platform.classpath}}:${{ws.debug.classpaths}}</xsl:when>
1365
                            <xsl:otherwise>${debug.classpath}:${j2ee.platform.classpath}</xsl:otherwise>
1366
                        </xsl:choose>
1367
                    </xsl:attribute>
1368
                    <xsl:attribute name="else"/>
1369
                    <istrue value="${{deploy.on.save}}" />
1370
                </condition>
1371
                <nbjpdaconnect name="${{name}}" host="${{jpda.host}}" address="${{jpda.address}}" transport="${{jpda.transport}}" listeningcp="${{dos.listening.cp}}">
1361
                    <xsl:choose>
1372
                    <xsl:choose>
1362
                        <xsl:when test="/p:project/p:configuration/webproject3:data/webproject3:web-services/webproject3:web-service|/p:project/p:configuration/webproject3:data/webproject3:web-service-clients/webproject3:web-service-client">
1373
                        <xsl:when test="/p:project/p:configuration/webproject3:data/webproject3:web-services/webproject3:web-service|/p:project/p:configuration/webproject3:data/webproject3:web-service-clients/webproject3:web-service-client">
1363
                            <classpath>
1374
                            <classpath>

Return to bug 176221