Changeset 350 in tmcsimulator for branches/ExtendLDS/nbproject
- Timestamp:
- 03/31/2019 10:18:07 AM (7 years ago)
- Location:
- branches/ExtendLDS/nbproject
- Files:
-
- 3 edited
-
build-impl.xml (modified) (13 diffs)
-
genfiles.properties (modified) (1 diff)
-
private/private.properties (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/ExtendLDS/nbproject/build-impl.xml
r169 r350 72 72 <!-- The two properties below are usually overridden --> 73 73 <!-- by the active platform. Just a fallback. --> 74 <property name="default.javac.source" value="1. 4"/>75 <property name="default.javac.target" value="1. 4"/>74 <property name="default.javac.source" value="1.6"/> 75 <property name="default.javac.target" value="1.6"/> 76 76 </target> 77 77 <target depends="-pre-init,-init-private,-init-libraries,-init-user" name="-init-project"> … … 102 102 <isset property="javac.profile"/> 103 103 <length length="0" string="${javac.profile}" when="greater"/> 104 <matches pattern=" 1\.[89](\..*)?" string="${javac.source}"/>104 <matches pattern="((1\.[89])|9)(\..*)?" string="${javac.source}"/> 105 105 </and> 106 106 </condition> … … 182 182 <property name="source.encoding" value="${file.encoding}"/> 183 183 <property name="runtime.encoding" value="${source.encoding}"/> 184 <property name="manifest.encoding" value="${source.encoding}"/> 184 185 <condition property="javadoc.encoding.used" value="${javadoc.encoding}"> 185 186 <and> … … 217 218 </and> 218 219 </condition> 219 <property name="javac.fork" value="${jdkBug6558476}"/> 220 <condition else="false" property="javac.fork"> 221 <or> 222 <istrue value="${jdkBug6558476}"/> 223 <istrue value="${javac.external.vm}"/> 224 </or> 225 </condition> 220 226 <property name="jar.index" value="false"/> 221 227 <property name="jar.index.metainf" value="${jar.index}"/> … … 243 249 <istrue value="${junit+testng.available}"/> 244 250 </condition> 251 <property name="java.failonerror" value="true"/> 245 252 </target> 246 253 <target name="-post-init"> … … 719 726 <property environment="env"/> 720 727 <resolve name="profiler.current.path" value="${profiler.info.pathvar}"/> 721 <java classname="@{classname}" dir="${profiler.info.dir}" f ork="true" jvm="${profiler.info.jvm}">728 <java classname="@{classname}" dir="${profiler.info.dir}" failonerror="${java.failonerror}" fork="true" jvm="${profiler.info.jvm}"> 722 729 <jvmarg line="${endorsed.classpath.cmd.line.arg}"/> 723 730 <jvmarg value="${profiler.info.jvmargs.agent}"/> … … 794 801 <element name="customize" optional="true"/> 795 802 <sequential> 796 <java classname="@{classname}" dir="${work.dir}" f ork="true">803 <java classname="@{classname}" dir="${work.dir}" failonerror="${java.failonerror}" fork="true"> 797 804 <jvmarg line="${endorsed.classpath.cmd.line.arg}"/> 798 805 <jvmarg line="${debug-args-line}"/> … … 821 828 <element name="customize" optional="true"/> 822 829 <sequential> 823 <java classname="@{classname}" dir="${work.dir}" f ork="true">830 <java classname="@{classname}" dir="${work.dir}" failonerror="${java.failonerror}" fork="true"> 824 831 <jvmarg line="${endorsed.classpath.cmd.line.arg}"/> 825 832 <jvmarg value="-Dfile.encoding=${runtime.encoding}"/> … … 860 867 </pathconvert> 861 868 <taskdef classname="org.netbeans.modules.java.j2seproject.copylibstask.CopyLibs" classpath="${libs.CopyLibs.classpath}" name="copylibs"/> 862 <copylibs compress="${jar.compress}" excludeFromCopy="${copylibs.excludes}" index="${jar.index}" indexMetaInf="${jar.index.metainf}" jarfile="${dist.jar}" manifest="@{manifest}" rebase="${copylibs.rebase}" runtimeclasspath="${run.classpath.without.build.classes.dir}">869 <copylibs compress="${jar.compress}" excludeFromCopy="${copylibs.excludes}" index="${jar.index}" indexMetaInf="${jar.index.metainf}" jarfile="${dist.jar}" manifest="@{manifest}" manifestencoding="UTF-8" rebase="${copylibs.rebase}" runtimeclasspath="${run.classpath.without.build.classes.dir}"> 863 870 <fileset dir="${build.classes.dir}" excludes="${dist.archive.excludes}"/> 864 871 <manifest> … … 872 879 <target name="-init-presetdef-jar"> 873 880 <presetdef name="jar" uri="http://www.netbeans.org/ns/j2se-project/1"> 874 <jar compress="${jar.compress}" index="${jar.index}" jarfile="${dist.jar}" >881 <jar compress="${jar.compress}" index="${jar.index}" jarfile="${dist.jar}" manifestencoding="UTF-8"> 875 882 <j2seproject1:fileset dir="${build.classes.dir}" excludes="${dist.archive.excludes}"/> 876 883 </jar> … … 995 1002 <target depends="init" if="do.archive+manifest.available" name="-do-jar-copy-manifest"> 996 1003 <tempfile deleteonexit="true" destdir="${build.dir}" property="tmp.manifest.file"/> 997 <copy file="${manifest.file}" tofile="${tmp.manifest.file}"/>1004 <copy encoding="${manifest.encoding}" file="${manifest.file}" outputencoding="UTF-8" tofile="${tmp.manifest.file}"/> 998 1005 </target> 999 1006 <target depends="init,-do-jar-create-manifest,-do-jar-copy-manifest" if="do.archive+main.class.available" name="-do-jar-set-mainclass"> 1000 <manifest file="${tmp.manifest.file}" mode="update">1007 <manifest encoding="UTF-8" file="${tmp.manifest.file}" mode="update"> 1001 1008 <attribute name="Main-Class" value="${main.class}"/> 1002 1009 </manifest> 1003 1010 </target> 1004 1011 <target depends="init,-do-jar-create-manifest,-do-jar-copy-manifest" if="do.archive+profile.available" name="-do-jar-set-profile"> 1005 <manifest file="${tmp.manifest.file}" mode="update">1012 <manifest encoding="UTF-8" file="${tmp.manifest.file}" mode="update"> 1006 1013 <attribute name="Profile" value="${javac.profile}"/> 1007 1014 </manifest> … … 1011 1018 <mkdir dir="${build.classes.dir}/META-INF"/> 1012 1019 <copy failonerror="false" file="${application.splash}" todir="${build.classes.dir}/META-INF"/> 1013 <manifest file="${tmp.manifest.file}" mode="update">1020 <manifest encoding="UTF-8" file="${tmp.manifest.file}" mode="update"> 1014 1021 <attribute name="SplashScreen-Image" value="META-INF/${splashscreen.basename}"/> 1015 1022 </manifest> … … 1206 1213 <fail unless="run.class">Must select one file in the IDE or set run.class</fail> 1207 1214 <startprofiler/> 1208 <antcal target="run-test-with-main"/>1215 <antcall target="run-test-with-main"/> 1209 1216 </target> 1210 1217 <target depends="-profile-check,-profile-applet-pre72" if="profiler.configured" name="profile-applet" unless="profiler.info.jvmargs.agent"> -
branches/ExtendLDS/nbproject/genfiles.properties
r169 r350 5 5 # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. 6 6 nbproject/build-impl.xml.data.CRC32=62085c2a 7 nbproject/build-impl.xml.script.CRC32= 61c942f98 nbproject/build-impl.xml.stylesheet.CRC32=8 76e7a8f@1.75.2.487 nbproject/build-impl.xml.script.CRC32=3f9ca593 8 nbproject/build-impl.xml.stylesheet.CRC32=830a3534@1.80.1.48 -
branches/ExtendLDS/nbproject/private/private.properties
r169 r350 1 1 compile.on.save=true 2 user.properties.file=/ Users/jtorres/Library/Application Support/NetBeans/8.0.2/build.properties2 user.properties.file=/home/jdalbey/.netbeans/8.2/build.properties
Note: See TracChangeset
for help on using the changeset viewer.
