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

(-)a/apisupport.harness/release/README (+3 lines)
Lines 688-693 Link Here
688
688
689
javac.target - default ${javac.source}; controls version of generated bytecode
689
javac.target - default ${javac.source}; controls version of generated bytecode
690
690
691
javac.fork - default "false"; one can request the complication to be done
692
in a separate process. Useful for large code bases.
693
691
javadoc.apichanges - optional location of an API changes list. Currently for
694
javadoc.apichanges - optional location of an API changes list. Currently for
692
netbeans.org modules only.
695
netbeans.org modules only.
693
696
(-)a/j2ee.dd/nbproject/project.properties (+1 lines)
Lines 41-46 Link Here
41
# made subject to such option by the copyright holder.
41
# made subject to such option by the copyright holder.
42
42
43
javac.source=1.6
43
javac.source=1.6
44
javac.fork=true
44
spec.version.base=1.39.0
45
spec.version.base=1.39.0
45
is.autoload=true
46
is.autoload=true
46
47
(-)a/nbbuild/antsrc/org/netbeans/nbbuild/CustomJavac.java (-1 / +1 lines)
Lines 80-86 Link Here
80
80
81
    private String maybeFork;
81
    private String maybeFork;
82
    @Override public void setFork(boolean f) {
82
    @Override public void setFork(boolean f) {
83
        throw new UnsupportedOperationException();
83
        super.setFork(f);
84
    }
84
    }
85
    @Override public void setExecutable(String forkExec) {
85
    @Override public void setExecutable(String forkExec) {
86
        maybeFork = forkExec;
86
        maybeFork = forkExec;
(-)a/nbbuild/templates/common.xml (-1 / +4 lines)
Lines 213-220 Link Here
213
        <depend srcdir="${src.dir}" destdir="${build.classes.dir}" cache="${build.dir}/depcache">
213
        <depend srcdir="${src.dir}" destdir="${build.classes.dir}" cache="${build.dir}/depcache">
214
            <classpath refid="cp"/>
214
            <classpath refid="cp"/>
215
        </depend>
215
        </depend>
216
        <property name="javac.fork" value="false"/>
216
        <nb-javac srcdir="${src.dir}" destdir="${build.classes.dir}" debug="${build.compiler.debug}" debuglevel="${build.compiler.debuglevel}" encoding="UTF-8"
217
        <nb-javac srcdir="${src.dir}" destdir="${build.classes.dir}" debug="${build.compiler.debug}" debuglevel="${build.compiler.debuglevel}" encoding="UTF-8"
217
                  deprecation="${build.compiler.deprecation}" optimize="${build.compiler.optimize}" source="${javac.source}" target="${javac.target}" includeantruntime="false">
218
                  deprecation="${build.compiler.deprecation}" optimize="${build.compiler.optimize}" source="${javac.source}" target="${javac.target}" includeantruntime="false"
219
                  fork="${javac.fork}"
220
        >
218
            <classpath refid="cp"/>
221
            <classpath refid="cp"/>
219
            <compilerarg line="${javac.compilerargs}"/>
222
            <compilerarg line="${javac.compilerargs}"/>
220
            <processorpath refid="processor.cp"/>
223
            <processorpath refid="processor.cp"/>

Return to bug 245636