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

(-)a/ide/launcher/netbeans.conf (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
# Options used by NetBeans launcher by default, can be overridden by explicit
4
# Options used by NetBeans launcher by default, can be overridden by explicit
5
# command line switches:
5
# command line switches:
6
netbeans_default_options="-J-client -J-Xss2m -J-Xms32m -J-XX:PermSize=32m -J-XX:MaxPermSize=200m -J-Dnetbeans.logger.console=true -J-ea -J-Dapple.laf.useScreenMenuBar=true -J-Dsun.java2d.noddraw=true"
6
netbeans_default_options="-J-client -J-Xss2m -J-Xms32m -J-XX:PermSize=32m -J-XX:MaxPermSize=200m -J-Dnetbeans.logger.console=true -J-ea -J-Dapple.laf.useScreenMenuBar=true -J-Dsun.java2d.noddraw=true -J-Dfile.encoding=UTF-8"
7
# Note that a default -Xmx is selected for you automatically.
7
# Note that a default -Xmx is selected for you automatically.
8
# You can find this value in var/log/messages.log file in your userdir.
8
# You can find this value in var/log/messages.log file in your userdir.
9
# The automatically selected value can be overridden by specifying -J-Xmx here
9
# The automatically selected value can be overridden by specifying -J-Xmx here
(-)a/java.j2seproject/src/org/netbeans/modules/java/j2seproject/resources/build-impl.xsl (+3 lines)
Lines 475-480 Link Here
475
                            </syspropertyset>
475
                            </syspropertyset>
476
                            <formatter type="brief" usefile="false"/>
476
                            <formatter type="brief" usefile="false"/>
477
                            <formatter type="xml"/>
477
                            <formatter type="xml"/>
478
                            <jvmarg value="-Dfile.encoding=UTF-8"/>
478
                            <jvmarg line="${{run.jvmargs}}"/>
479
                            <jvmarg line="${{run.jvmargs}}"/>
479
                        </junit>
480
                        </junit>
480
                    </sequential>
481
                    </sequential>
Lines 582-587 Link Here
582
                            </xsl:if>
583
                            </xsl:if>
583
                            <jvmarg line="${{debug-args-line}}"/>
584
                            <jvmarg line="${{debug-args-line}}"/>
584
                            <jvmarg value="-Xrunjdwp:transport=${{debug-transport}},address=${{jpda.address}}"/>
585
                            <jvmarg value="-Xrunjdwp:transport=${{debug-transport}},address=${{jpda.address}}"/>
586
                            <jvmarg value="-Dfile.encoding=UTF-8"/>
585
                            <jvmarg line="${{run.jvmargs}}"/>
587
                            <jvmarg line="${{run.jvmargs}}"/>
586
                            <classpath>
588
                            <classpath>
587
                                <path path="@{{classpath}}"/>
589
                                <path path="@{{classpath}}"/>
Lines 614-619 Link Here
614
                            <xsl:if test="/p:project/p:configuration/j2seproject3:data/j2seproject3:explicit-platform">
616
                            <xsl:if test="/p:project/p:configuration/j2seproject3:data/j2seproject3:explicit-platform">
615
                                <xsl:attribute name="jvm">${platform.java}</xsl:attribute>
617
                                <xsl:attribute name="jvm">${platform.java}</xsl:attribute>
616
                            </xsl:if>
618
                            </xsl:if>
619
                            <jvmarg value="-Dfile.encoding=UTF-8"/>
617
                            <jvmarg line="${{run.jvmargs}}"/>
620
                            <jvmarg line="${{run.jvmargs}}"/>
618
                            <classpath>
621
                            <classpath>
619
                                <path path="${{run.classpath}}"/>
622
                                <path path="${{run.classpath}}"/>
(-)a/java.source.ant/src/org/netbeans/modules/java/source/ant/resources/debug-snippet.xml (+1 lines)
Lines 76-81 Link Here
76
        <java classpath="${classpath-translated}" classname="${classname}" dir="${work.dir}" jvm="${platform.java}" fork="true">
76
        <java classpath="${classpath-translated}" classname="${classname}" dir="${work.dir}" jvm="${platform.java}" fork="true">
77
            <jvmarg line="${debug-args-line}"/>
77
            <jvmarg line="${debug-args-line}"/>
78
            <jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
78
            <jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
79
            <jvmarg value="-Dfile.encoding=UTF-8"/>
79
            <jvmarg line="${run.jvmargs}" />
80
            <jvmarg line="${run.jvmargs}" />
80
            <arg line="${application.args}" />
81
            <arg line="${application.args}" />
81
            <syspropertyset>
82
            <syspropertyset>
(-)a/java.source.ant/src/org/netbeans/modules/java/source/ant/resources/junit-debug-snippet.xml (+1 lines)
Lines 88-93 Link Here
88
                    <jvmarg line="${debug-args-line}"/>
88
                    <jvmarg line="${debug-args-line}"/>
89
                    <jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
89
                    <jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
90
                    <jvmarg value="-ea"/>
90
                    <jvmarg value="-ea"/>
91
                    <jvmarg value="-Dfile.encoding=UTF-8"/>
91
                    <jvmarg line="${run.jvmargs}"/>
92
                    <jvmarg line="${run.jvmargs}"/>
92
                    <arg value="${classname}"/>
93
                    <arg value="${classname}"/>
93
                    <arg value="showoutput=true"/>
94
                    <arg value="showoutput=true"/>
(-)a/java.source.ant/src/org/netbeans/modules/java/source/ant/resources/junit-snippet.xml (+1 lines)
Lines 58-63 Link Here
58
                    <test-spec/>
58
                    <test-spec/>
59
                    <classpath path="${classpath-translated}" />
59
                    <classpath path="${classpath-translated}" />
60
                    <jvmarg value="-ea"/>
60
                    <jvmarg value="-ea"/>
61
                    <jvmarg value="-Dfile.encoding=UTF-8"/>
61
                    <jvmarg line="${run.jvmargs}"/>
62
                    <jvmarg line="${run.jvmargs}"/>
62
                    <formatter type="brief" usefile="false"/>
63
                    <formatter type="brief" usefile="false"/>
63
                    <formatter type="xml"/>
64
                    <formatter type="xml"/>
(-)a/java.source.ant/src/org/netbeans/modules/java/source/ant/resources/run-snippet.xml (+1 lines)
Lines 47-52 Link Here
47
        <property name="work.dir" value="${basedir}"/>
47
        <property name="work.dir" value="${basedir}"/>
48
        <property name="application.args" value="" />
48
        <property name="application.args" value="" />
49
        <java classpath="${classpath-translated}" classname="${classname}" dir="${work.dir}" jvm="${platform.java}" fork="true">
49
        <java classpath="${classpath-translated}" classname="${classname}" dir="${work.dir}" jvm="${platform.java}" fork="true">
50
            <jvmarg value="-Dfile.encoding=UTF-8"/>
50
            <jvmarg line="${run.jvmargs}" />
51
            <jvmarg line="${run.jvmargs}" />
51
            <arg line="${application.args}" />
52
            <arg line="${application.args}" />
52
            <syspropertyset>
53
            <syspropertyset>

Return to bug 24668