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 16000
Collapse All | Expand All

(-)core/test/build.xml (-4 / +17 lines)
Lines 279-285 Link Here
279
    <!-- Compiles all tests -->
279
    <!-- Compiles all tests -->
280
    <target name="compile" depends="init">
280
    <target name="compile" depends="init">
281
        <ant dir="unit/src/org/netbeans/core/modules"/>
281
        <ant dir="unit/src/org/netbeans/core/modules"/>
282
        <javac srcdir="." 
282
        <javac srcdir="unit/src" 
283
               deprecation="${build.compiler.deprecation}"
283
               deprecation="${build.compiler.deprecation}"
284
               debug="${build.compiler.debug}">
284
               debug="${build.compiler.debug}">
285
            <classpath>
285
            <classpath>
Lines 290-299 Link Here
290
                <pathelement path="${junit.path}"/>
290
                <pathelement path="${junit.path}"/>
291
                <pathelement path="${xerces.path}"/>
291
                <pathelement path="${xerces.path}"/>
292
            </classpath>
292
            </classpath>
293
            <include name="**/src/**/*.java"/>
293
            <exclude name="org/netbeans/core/modules/jars/"/>
294
            <exclude name="unit/src/org/netbeans/core/modules/jars/"/>
295
            <exclude name="perf/src/**"/> 
296
        </javac>
294
        </javac>
295
        <!-- XXX uncompilable I think -jglick
296
        <javac srcdir="perf/src" 
297
               deprecation="${build.compiler.deprecation}"
298
               debug="${build.compiler.debug}">
299
            <classpath>
300
                <pathelement location="../src"/>
301
                <fileset dir="../../openide/netbeans/lib">
302
                    <include name="openide*.jar"/>
303
                </fileset>
304
                <pathelement path="${junit.path}"/>
305
                <pathelement path="${xerces.path}"/>
306
                <pathelement location="../../performance/src"/>
307
            </classpath>
308
        </javac>
309
        -->
297
    </target>
310
    </target>
298
    
311
    
299
    <!-- Creates lib/test.jar with all tests for this module,       -->
312
    <!-- Creates lib/test.jar with all tests for this module,       -->
(-)java/test/build.xml (-2 / +1 lines)
Lines 271-277 Link Here
271
    
271
    
272
    <!-- Compiles all tests -->
272
    <!-- Compiles all tests -->
273
    <target name="compile" depends="init">
273
    <target name="compile" depends="init">
274
        <javac srcdir="." 
274
        <javac srcdir="unit/src" 
275
               deprecation="${build.compiler.deprecation}"
275
               deprecation="${build.compiler.deprecation}"
276
               debug="${build.compiler.debug}">
276
               debug="${build.compiler.debug}">
277
            <classpath>
277
            <classpath>
Lines 282-288 Link Here
282
                <pathelement path="${junit.path}"/>
282
                <pathelement path="${junit.path}"/>
283
                <pathelement path="${xerces.path}"/>
283
                <pathelement path="${xerces.path}"/>
284
            </classpath>
284
            </classpath>
285
            <include name="unit/src/**/*.java"/>
286
        </javac>
285
        </javac>
287
    </target>
286
    </target>
288
    
287
    
(-)openide/test/build.xml (-4 / +21 lines)
Lines 272-278 Link Here
272
    
272
    
273
    <!-- Compiles all tests -->
273
    <!-- Compiles all tests -->
274
    <target name="compile" depends="init">
274
    <target name="compile" depends="init">
275
        <javac srcdir="." 
275
        <javac srcdir="unit/src" 
276
               deprecation="${build.compiler.deprecation}"
276
               deprecation="${build.compiler.deprecation}"
277
               debug="${build.compiler.debug}">
277
               debug="${build.compiler.debug}">
278
            <classpath>
278
            <classpath>
Lines 280-289 Link Here
280
                <pathelement path="${junit.path}"/>
280
                <pathelement path="${junit.path}"/>
281
                <pathelement path="${xerces.path}"/>
281
                <pathelement path="${xerces.path}"/>
282
            </classpath>
282
            </classpath>
283
            <include name="unit/src/**/*.java"/>
284
            <!-- only temp exclude, should be solved by classpath -->
285
            <!-- <exclude name="perf/src/**"/> -->
286
        </javac>
283
        </javac>
284
        <javac srcdir="regr/src" 
285
               deprecation="${build.compiler.deprecation}"
286
               debug="${build.compiler.debug}">
287
            <classpath>
288
                <pathelement location="../src"/>
289
                <pathelement path="${junit.path}"/>
290
                <pathelement path="${xerces.path}"/>
291
            </classpath>
292
        </javac>
293
        <!-- XXX uncompilable:
294
        <javac srcdir="perf/src" 
295
               deprecation="${build.compiler.deprecation}"
296
               debug="${build.compiler.debug}">
297
            <classpath>
298
                <pathelement location="../src"/>
299
                <pathelement path="${junit.path}"/>
300
                <pathelement path="${xerces.path}"/>
301
            </classpath>
302
        </javac>
303
        -->
287
    </target>
304
    </target>
288
    
305
    
289
    <!-- Creates lib/test.jar with all tests for this module,       -->
306
    <!-- Creates lib/test.jar with all tests for this module,       -->
(-)openidex/test/build.xml (-2 / +1 lines)
Lines 305-311 Link Here
305
    
305
    
306
    <!-- Compiles all tests -->
306
    <!-- Compiles all tests -->
307
    <target name="compile" depends="init">
307
    <target name="compile" depends="init">
308
        <javac srcdir="." 
308
        <javac srcdir="unit/src" 
309
               deprecation="${build.compiler.deprecation}"
309
               deprecation="${build.compiler.deprecation}"
310
               debug="${build.compiler.debug}">
310
               debug="${build.compiler.debug}">
311
            <classpath>
311
            <classpath>
Lines 316-322 Link Here
316
                <pathelement path="${junit.path}"/>
316
                <pathelement path="${junit.path}"/>
317
                <pathelement path="${xerces.path}"/>
317
                <pathelement path="${xerces.path}"/>
318
            </classpath>
318
            </classpath>
319
            <include name="**/src/**/*.java"/>
320
        </javac>
319
        </javac>
321
    </target>
320
    </target>
322
    
321
    

Return to bug 16000