Changeset 79 in tmcsimulator for trunk/IDE_metadata
- Timestamp:
- 10/05/2017 12:51:23 PM (9 years ago)
- Location:
- trunk/IDE_metadata/NetBeans/TMCSim/nbproject
- Files:
-
- 1 added
- 4 edited
-
build-impl.xml (modified) (24 diffs)
-
configs/ATMSDriver.properties (added)
-
genfiles.properties (modified) (1 diff)
-
project.properties (modified) (1 diff)
-
project.xml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/IDE_metadata/NetBeans/TMCSim/nbproject/build-impl.xml
r12 r79 55 55 </target> 56 56 <target depends="-pre-init,-init-private,-init-user,-init-project,-init-macrodef-property" name="-do-init"> 57 <j2seproject1:property name="platform.home" value="platforms.${platform.active}.home"/> 58 <j2seproject1:property name="platform.bootcp" value="platforms.${platform.active}.bootclasspath"/> 59 <j2seproject1:property name="platform.compiler" value="platforms.${platform.active}.compile"/> 60 <j2seproject1:property name="platform.javac.tmp" value="platforms.${platform.active}.javac"/> 61 <condition property="platform.javac" value="${platform.home}/bin/javac"> 62 <equals arg1="${platform.javac.tmp}" arg2="$${platforms.${platform.active}.javac}"/> 63 </condition> 64 <property name="platform.javac" value="${platform.javac.tmp}"/> 65 <j2seproject1:property name="platform.java.tmp" value="platforms.${platform.active}.java"/> 66 <condition property="platform.java" value="${platform.home}/bin/java"> 67 <equals arg1="${platform.java.tmp}" arg2="$${platforms.${platform.active}.java}"/> 68 </condition> 69 <property name="platform.java" value="${platform.java.tmp}"/> 70 <j2seproject1:property name="platform.javadoc.tmp" value="platforms.${platform.active}.javadoc"/> 71 <condition property="platform.javadoc" value="${platform.home}/bin/javadoc"> 72 <equals arg1="${platform.javadoc.tmp}" arg2="$${platforms.${platform.active}.javadoc}"/> 73 </condition> 74 <property name="platform.javadoc" value="${platform.javadoc.tmp}"/> 75 <condition property="platform.invalid" value="true"> 76 <or> 77 <contains string="${platform.javac}" substring="$${platforms."/> 78 <contains string="${platform.java}" substring="$${platforms."/> 79 <contains string="${platform.javadoc}" substring="$${platforms."/> 80 </or> 81 </condition> 82 <fail unless="platform.home">Must set platform.home</fail> 83 <fail unless="platform.bootcp">Must set platform.bootcp</fail> 84 <fail unless="platform.java">Must set platform.java</fail> 85 <fail unless="platform.javac">Must set platform.javac</fail> 86 <fail if="platform.invalid"> 87 The J2SE Platform is not correctly set up. 88 Your active platform is: ${platform.active}, but the corresponding property "platforms.${platform.active}.home" is not found in the project's properties files. 89 Either open the project in the IDE and setup the Platform with the same name or add it manually. 90 For example like this: 91 ant -Duser.properties.file=<path_to_property_file> jar (where you put the property "platforms.${platform.active}.home" in a .properties file) 92 or ant -Dplatforms.${platform.active}.home=<path_to_JDK_home> jar (where no properties file is used) 93 </fail> 57 <property name="platform.java" value="${java.home}/bin/java"/> 94 58 <available file="${manifest.file}" property="manifest.available"/> 95 59 <condition property="splashscreen.available"> … … 109 73 </and> 110 74 </condition> 111 <condition property="manifest.available+main.class"> 112 <and> 113 <isset property="manifest.available"/> 114 <isset property="main.class.available"/> 75 <condition property="profile.available"> 76 <and> 77 <isset property="javac.profile"/> 78 <length length="0" string="${javac.profile}" when="greater"/> 79 <matches pattern="1\.[89](\..*)?" string="${javac.source}"/> 115 80 </and> 116 81 </condition> 117 82 <condition property="do.archive"> 118 <not> 119 <istrue value="${jar.archive.disabled}"/> 120 </not> 83 <or> 84 <not> 85 <istrue value="${jar.archive.disabled}"/> 86 </not> 87 <istrue value="${not.archive.disabled}"/> 88 </or> 121 89 </condition> 122 90 <condition property="do.mkdist"> … … 129 97 </and> 130 98 </condition> 131 <condition property="manifest.available+main.class+mkdist.available">132 <and>133 <istrue value="${manifest.available+main.class}"/>134 <isset property="do.mkdist"/>135 </and>136 </condition>137 99 <condition property="do.archive+manifest.available"> 138 100 <and> … … 153 115 </and> 154 116 </condition> 155 <condition property="do.archive+ manifest.available+main.class">156 <and> 157 <is true value="${manifest.available+main.class}"/>117 <condition property="do.archive+profile.available"> 118 <and> 119 <isset property="profile.available"/> 158 120 <istrue value="${do.archive}"/> 159 121 </and> 160 </condition>161 <condition property="manifest.available-mkdist.available">162 <or>163 <istrue value="${manifest.available}"/>164 <isset property="do.mkdist"/>165 </or>166 </condition>167 <condition property="manifest.available+main.class-mkdist.available">168 <or>169 <istrue value="${manifest.available+main.class}"/>170 <isset property="do.mkdist"/>171 </or>172 122 </condition> 173 123 <condition property="have.tests"> … … 224 174 <path id="endorsed.classpath.path" path="${endorsed.classpath}"/> 225 175 <condition else="" property="endorsed.classpath.cmd.line.arg" value="-Xbootclasspath/p:'${toString:endorsed.classpath.path}'"> 226 <length length="0" string="${endorsed.classpath}" when="greater"/> 227 </condition> 176 <and> 177 <isset property="endorsed.classpath"/> 178 <not> 179 <equals arg1="${endorsed.classpath}" arg2="" trim="true"/> 180 </not> 181 </and> 182 </condition> 183 <condition else="" property="javac.profile.cmd.line.arg" value="-profile ${javac.profile}"> 184 <isset property="profile.available"/> 185 </condition> 186 <condition else="false" property="jdkBug6558476"> 187 <and> 188 <matches pattern="1\.[56]" string="${java.specification.version}"/> 189 <not> 190 <os family="unix"/> 191 </not> 192 </and> 193 </condition> 194 <property name="javac.fork" value="${jdkBug6558476}"/> 228 195 <property name="jar.index" value="false"/> 229 196 <property name="jar.index.metainf" value="${jar.index}"/> … … 294 261 <mkdir dir="${empty.dir}"/> 295 262 <mkdir dir="@{apgeneratedsrcdir}"/> 296 <javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" executable="${platform.javac}" fork="yes" includeantruntime="false" includes="@{includes}" source="${javac.source}" sourcepath="@{sourcepath}" srcdir="@{srcdir}" target="${javac.target}" tempdir="${java.io.tmpdir}">263 <javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" fork="${javac.fork}" includeantruntime="false" includes="@{includes}" source="${javac.source}" sourcepath="@{sourcepath}" srcdir="@{srcdir}" target="${javac.target}" tempdir="${java.io.tmpdir}"> 297 264 <src> 298 265 <dirset dir="@{gensrcdir}" erroronmissingdir="false"> … … 304 271 </classpath> 305 272 <compilerarg line="${endorsed.classpath.cmd.line.arg}"/> 273 <compilerarg line="${javac.profile.cmd.line.arg}"/> 306 274 <compilerarg line="${javac.compilerargs}"/> 307 275 <compilerarg value="-processorpath"/> … … 333 301 <property location="${build.dir}/empty" name="empty.dir"/> 334 302 <mkdir dir="${empty.dir}"/> 335 <javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" executable="${platform.javac}" fork="yes" includeantruntime="false" includes="@{includes}" source="${javac.source}" sourcepath="@{sourcepath}" srcdir="@{srcdir}" target="${javac.target}" tempdir="${java.io.tmpdir}">303 <javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" fork="${javac.fork}" includeantruntime="false" includes="@{includes}" source="${javac.source}" sourcepath="@{sourcepath}" srcdir="@{srcdir}" target="${javac.target}" tempdir="${java.io.tmpdir}"> 336 304 <src> 337 305 <dirset dir="@{gensrcdir}" erroronmissingdir="false"> … … 343 311 </classpath> 344 312 <compilerarg line="${endorsed.classpath.cmd.line.arg}"/> 313 <compilerarg line="${javac.profile.cmd.line.arg}"/> 345 314 <compilerarg line="${javac.compilerargs}"/> 346 315 <customize/> … … 413 382 <sequential> 414 383 <property name="junit.forkmode" value="perTest"/> 415 <junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" jvm="${platform.java}"showoutput="true" tempdir="${build.dir}">384 <junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" showoutput="true" tempdir="${build.dir}"> 416 385 <test methods="@{testmethods}" name="@{testincludes}" todir="${build.test.results.dir}"/> 417 386 <syspropertyset> … … 436 405 <sequential> 437 406 <property name="junit.forkmode" value="perTest"/> 438 <junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" jvm="${platform.java}"showoutput="true" tempdir="${build.dir}">407 <junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" showoutput="true" tempdir="${build.dir}"> 439 408 <batchtest todir="${build.test.results.dir}"> 440 409 <fileset dir="${test.src.dir}" excludes="@{excludes},${excludes}" includes="@{includes}"> … … 475 444 </union> 476 445 <taskdef classname="org.testng.TestNGAntTask" classpath="${run.test.classpath}" name="testng"/> 477 <testng classfilesetref="test.set" failureProperty="tests.failed" jvm="${platform.java}" methods="${testng.methods.arg}" mode="${testng.mode}" outputdir="${build.test.results.dir}" suitename="TMCSim" testname="TestNG tests" workingDir="${work.dir}">446 <testng classfilesetref="test.set" failureProperty="tests.failed" listeners="org.testng.reporters.VerboseReporter" methods="${testng.methods.arg}" mode="${testng.mode}" outputdir="${build.test.results.dir}" suitename="TMCSim" testname="TestNG tests" workingDir="${work.dir}"> 478 447 <xmlfileset dir="${build.test.classes.dir}" includes="@{testincludes}"/> 479 448 <propertyset> … … 555 524 <sequential> 556 525 <property name="junit.forkmode" value="perTest"/> 557 <junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" jvm="${platform.java}"showoutput="true" tempdir="${build.dir}">526 <junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" showoutput="true" tempdir="${build.dir}"> 558 527 <test methods="@{testmethods}" name="@{testincludes}" todir="${build.test.results.dir}"/> 559 528 <syspropertyset> … … 580 549 <sequential> 581 550 <property name="junit.forkmode" value="perTest"/> 582 <junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" jvm="${platform.java}"showoutput="true" tempdir="${build.dir}">551 <junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" showoutput="true" tempdir="${build.dir}"> 583 552 <batchtest todir="${build.test.results.dir}"> 584 553 <fileset dir="${test.src.dir}" excludes="@{excludes},${excludes}" includes="@{includes}"> … … 760 729 <path path="@{classpath}"/> 761 730 </classpath> 762 <bootclasspath>763 <path path="${platform.bootcp}"/>764 </bootclasspath>765 731 </nbjpdastart> 766 732 </sequential> … … 778 744 </target> 779 745 <target name="-init-debug-args"> 780 <exec executable="${platform.java}" outputproperty="version-output"> 781 <arg value="-version"/> 782 </exec> 746 <property name="version-output" value="java version "${ant.java.version}"/> 783 747 <condition property="have-jdk-older-than-1.4"> 784 748 <or> … … 805 769 <element name="customize" optional="true"/> 806 770 <sequential> 807 <java classname="@{classname}" dir="${work.dir}" fork="true" jvm="${platform.java}">771 <java classname="@{classname}" dir="${work.dir}" fork="true"> 808 772 <jvmarg line="${endorsed.classpath.cmd.line.arg}"/> 809 773 <jvmarg line="${debug-args-line}"/> … … 832 796 <element name="customize" optional="true"/> 833 797 <sequential> 834 <java classname="@{classname}" dir="${work.dir}" fork="true" jvm="${platform.java}">798 <java classname="@{classname}" dir="${work.dir}" fork="true"> 835 799 <jvmarg line="${endorsed.classpath.cmd.line.arg}"/> 836 800 <jvmarg value="-Dfile.encoding=${runtime.encoding}"/> … … 871 835 </pathconvert> 872 836 <taskdef classname="org.netbeans.modules.java.j2seproject.copylibstask.CopyLibs" classpath="${libs.CopyLibs.classpath}" name="copylibs"/> 873 <copylibs compress="${jar.compress}" index="${jar.index}" indexMetaInf="${jar.index.metainf}" jarfile="${dist.jar}" manifest="@{manifest}" rebase="${copylibs.rebase}" runtimeclasspath="${run.classpath.without.build.classes.dir}">874 <fileset dir="${build.classes.dir}" />837 <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}"> 838 <fileset dir="${build.classes.dir}" excludes="${dist.archive.excludes}"/> 875 839 <manifest> 876 840 <attribute name="Class-Path" value="${jar.classpath}"/> … … 884 848 <presetdef name="jar" uri="http://www.netbeans.org/ns/j2se-project/1"> 885 849 <jar compress="${jar.compress}" index="${jar.index}" jarfile="${dist.jar}"> 886 <j2seproject1:fileset dir="${build.classes.dir}" />850 <j2seproject1:fileset dir="${build.classes.dir}" excludes="${dist.archive.excludes}"/> 887 851 </jar> 888 852 </presetdef> … … 1000 964 <!-- You can override this target in the ../build.xml file. --> 1001 965 </target> 1002 <target depends="init,compile,-pre-pre-jar,-pre-jar" if="do.archive" name="-do-jar-without-manifest" unless="manifest.available-mkdist.available"> 1003 <j2seproject1:jar/> 1004 </target> 1005 <target depends="init,compile,-pre-pre-jar,-pre-jar" if="do.archive+manifest.available" name="-do-jar-with-manifest" unless="manifest.available+main.class-mkdist.available"> 1006 <j2seproject1:jar manifest="${manifest.file}"/> 1007 </target> 1008 <target depends="init,compile,-pre-pre-jar,-pre-jar" if="do.archive+manifest.available+main.class" name="-do-jar-with-mainclass" unless="manifest.available+main.class+mkdist.available"> 1009 <j2seproject1:jar manifest="${manifest.file}"> 1010 <j2seproject1:manifest> 1011 <j2seproject1:attribute name="Main-Class" value="${main.class}"/> 1012 </j2seproject1:manifest> 1013 </j2seproject1:jar> 966 <target depends="init" if="do.archive" name="-do-jar-create-manifest" unless="manifest.available"> 967 <tempfile deleteonexit="true" destdir="${build.dir}" property="tmp.manifest.file"/> 968 <touch file="${tmp.manifest.file}" verbose="false"/> 969 </target> 970 <target depends="init" if="do.archive+manifest.available" name="-do-jar-copy-manifest"> 971 <tempfile deleteonexit="true" destdir="${build.dir}" property="tmp.manifest.file"/> 972 <copy file="${manifest.file}" tofile="${tmp.manifest.file}"/> 973 </target> 974 <target depends="init,-do-jar-create-manifest,-do-jar-copy-manifest" if="do.archive+main.class.available" name="-do-jar-set-mainclass"> 975 <manifest file="${tmp.manifest.file}" mode="update"> 976 <attribute name="Main-Class" value="${main.class}"/> 977 </manifest> 978 </target> 979 <target depends="init,-do-jar-create-manifest,-do-jar-copy-manifest" if="do.archive+profile.available" name="-do-jar-set-profile"> 980 <manifest file="${tmp.manifest.file}" mode="update"> 981 <attribute name="Profile" value="${javac.profile}"/> 982 </manifest> 983 </target> 984 <target depends="init,-do-jar-create-manifest,-do-jar-copy-manifest" if="do.archive+splashscreen.available" name="-do-jar-set-splashscreen"> 985 <basename file="${application.splash}" property="splashscreen.basename"/> 986 <mkdir dir="${build.classes.dir}/META-INF"/> 987 <copy failonerror="false" file="${application.splash}" todir="${build.classes.dir}/META-INF"/> 988 <manifest file="${tmp.manifest.file}" mode="update"> 989 <attribute name="SplashScreen-Image" value="META-INF/${splashscreen.basename}"/> 990 </manifest> 991 </target> 992 <target depends="init,-init-macrodef-copylibs,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen" if="do.mkdist" name="-do-jar-copylibs"> 993 <j2seproject3:copylibs manifest="${tmp.manifest.file}"/> 1014 994 <echo level="info">To run this application from the command line without Ant, try:</echo> 995 <property location="${dist.jar}" name="dist.jar.resolved"/> 996 <echo level="info">java -jar "${dist.jar.resolved}"</echo> 997 </target> 998 <target depends="init,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen" if="do.archive" name="-do-jar-jar" unless="do.mkdist"> 999 <j2seproject1:jar manifest="${tmp.manifest.file}"/> 1015 1000 <property location="${build.classes.dir}" name="build.classes.dir.resolved"/> 1016 1001 <property location="${dist.jar}" name="dist.jar.resolved"/> … … 1019 1004 <map from="${build.classes.dir.resolved}" to="${dist.jar.resolved}"/> 1020 1005 </pathconvert> 1021 <echo level="info">${platform.java} -cp "${run.classpath.with.dist.jar}" ${main.class}</echo> 1022 </target> 1023 <target depends="init" if="do.archive" name="-do-jar-with-libraries-create-manifest" unless="manifest.available"> 1024 <tempfile deleteonexit="true" destdir="${build.dir}" property="tmp.manifest.file"/> 1025 <touch file="${tmp.manifest.file}" verbose="false"/> 1026 </target> 1027 <target depends="init" if="do.archive+manifest.available" name="-do-jar-with-libraries-copy-manifest"> 1028 <tempfile deleteonexit="true" destdir="${build.dir}" property="tmp.manifest.file"/> 1029 <copy file="${manifest.file}" tofile="${tmp.manifest.file}"/> 1030 </target> 1031 <target depends="init,-do-jar-with-libraries-create-manifest,-do-jar-with-libraries-copy-manifest" if="do.archive+main.class.available" name="-do-jar-with-libraries-set-main"> 1032 <manifest file="${tmp.manifest.file}" mode="update"> 1033 <attribute name="Main-Class" value="${main.class}"/> 1034 </manifest> 1035 </target> 1036 <target depends="init,-do-jar-with-libraries-create-manifest,-do-jar-with-libraries-copy-manifest" if="do.archive+splashscreen.available" name="-do-jar-with-libraries-set-splashscreen"> 1037 <basename file="${application.splash}" property="splashscreen.basename"/> 1038 <mkdir dir="${build.classes.dir}/META-INF"/> 1039 <copy failonerror="false" file="${application.splash}" todir="${build.classes.dir}/META-INF"/> 1040 <manifest file="${tmp.manifest.file}" mode="update"> 1041 <attribute name="SplashScreen-Image" value="META-INF/${splashscreen.basename}"/> 1042 </manifest> 1043 </target> 1044 <target depends="init,-init-macrodef-copylibs,compile,-pre-pre-jar,-pre-jar,-do-jar-with-libraries-create-manifest,-do-jar-with-libraries-copy-manifest,-do-jar-with-libraries-set-main,-do-jar-with-libraries-set-splashscreen" if="do.mkdist" name="-do-jar-with-libraries-pack"> 1045 <j2seproject3:copylibs manifest="${tmp.manifest.file}"/> 1046 <echo level="info">To run this application from the command line without Ant, try:</echo> 1047 <property location="${dist.jar}" name="dist.jar.resolved"/> 1048 <echo level="info">${platform.java} -jar "${dist.jar.resolved}"</echo> 1049 </target> 1050 <target depends="-do-jar-with-libraries-pack" if="do.archive" name="-do-jar-with-libraries-delete-manifest"> 1006 <condition else="" property="jar.usage.message" value="To run this application from the command line without Ant, try:${line.separator}${platform.java} -cp ${run.classpath.with.dist.jar} ${main.class}"> 1007 <isset property="main.class.available"/> 1008 </condition> 1009 <condition else="debug" property="jar.usage.level" value="info"> 1010 <isset property="main.class.available"/> 1011 </condition> 1012 <echo level="${jar.usage.level}" message="${jar.usage.message}"/> 1013 </target> 1014 <target depends="-do-jar-copylibs" if="do.archive" name="-do-jar-delete-manifest"> 1051 1015 <delete> 1052 1016 <fileset file="${tmp.manifest.file}"/> 1053 1017 </delete> 1054 1018 </target> 1055 <target depends="init,compile,-pre-pre-jar,-pre-jar,-do-jar-with-libraries-create-manifest,-do-jar-with-libraries-copy-manifest,-do-jar-with-libraries-set-main,-do-jar-with-libraries-set-splashscreen,-do-jar-with-libraries-pack,-do-jar-with-libraries-delete-manifest" name="-do-jar-with-libraries"/> 1019 <target depends="init,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen,-do-jar-jar,-do-jar-delete-manifest" name="-do-jar-without-libraries"/> 1020 <target depends="init,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen,-do-jar-copylibs,-do-jar-delete-manifest" name="-do-jar-with-libraries"/> 1056 1021 <target name="-post-jar"> 1057 1022 <!-- Empty placeholder for easier customization. --> 1058 1023 <!-- You can override this target in the ../build.xml file. --> 1059 1024 </target> 1060 <target depends="init,compile,-pre-jar,-do-jar-with-manifest,-do-jar-without-manifest,-do-jar-with-mainclass,-do-jar-with-libraries,-post-jar" description="Build JAR." name="jar"/> 1025 <target depends="init,compile,-pre-jar,-do-jar-without-libraries,-do-jar-with-libraries,-post-jar" name="-do-jar"/> 1026 <target depends="init,compile,-pre-jar,-do-jar,-post-jar" description="Build JAR." name="jar"/> 1061 1027 <!-- 1062 1028 ================= … … 1237 1203 </and> 1238 1204 </condition> 1239 <javadoc additionalparam="${javadoc.additionalparam}" author="${javadoc.author}" charset="UTF-8" destdir="${dist.javadoc.dir}" docencoding="UTF-8" encoding="${javadoc.encoding.used}" executable="${platform.javadoc}" failonerror="true" noindex="${javadoc.noindex}" nonavbar="${javadoc.nonavbar}" notree="${javadoc.notree}" private="${javadoc.private}" source="${javac.source}" splitindex="${javadoc.splitindex}" use="${javadoc.use}" useexternalfile="true" version="${javadoc.version}" windowtitle="${javadoc.windowtitle}"> 1205 <condition else="" property="bug5101868workaround" value="*.java"> 1206 <matches pattern="1\.[56](\..*)?" string="${java.version}"/> 1207 </condition> 1208 <javadoc additionalparam="-J-Dfile.encoding=${file.encoding} ${javadoc.additionalparam}" author="${javadoc.author}" charset="UTF-8" destdir="${dist.javadoc.dir}" docencoding="UTF-8" encoding="${javadoc.encoding.used}" failonerror="true" noindex="${javadoc.noindex}" nonavbar="${javadoc.nonavbar}" notree="${javadoc.notree}" private="${javadoc.private}" source="${javac.source}" splitindex="${javadoc.splitindex}" use="${javadoc.use}" useexternalfile="true" version="${javadoc.version}" windowtitle="${javadoc.windowtitle}"> 1240 1209 <classpath> 1241 1210 <path path="${javac.classpath}"/> 1242 1211 </classpath> 1243 <fileset dir="${src.dir}" excludes=" *.java,${excludes}" includes="${includes}">1212 <fileset dir="${src.dir}" excludes="${bug5101868workaround},${excludes}" includes="${includes}"> 1244 1213 <filename name="**/*.java"/> 1245 1214 </fileset> … … 1315 1284 </target> 1316 1285 <target depends="init,compile-test,-pre-test-run" if="have.tests" name="-do-test-run"> 1317 <j2seproject3:test testincludes="**/*Test.java"/>1286 <j2seproject3:test includes="${includes}" testincludes="**/*Test.java"/> 1318 1287 </target> 1319 1288 <target depends="init,compile-test,-pre-test-run,-do-test-run" if="have.tests" name="-post-test-run"> -
trunk/IDE_metadata/NetBeans/TMCSim/nbproject/genfiles.properties
r12 r79 4 4 # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. 5 5 # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. 6 nbproject/build-impl.xml.data.CRC32= e14f63c17 nbproject/build-impl.xml.script.CRC32=5 3f7f34a8 nbproject/build-impl.xml.stylesheet.CRC32= c6d2a60f@1.56.1.466 nbproject/build-impl.xml.data.CRC32=6c7221c6 7 nbproject/build-impl.xml.script.CRC32=5cb245d6 8 nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 -
trunk/IDE_metadata/NetBeans/TMCSim/nbproject/project.properties
r59 r79 72 72 meta.inf.dir=${src.dir}/META-INF 73 73 mkdist.disabled=false 74 platform.active= JDK_1.774 platform.active=default_platform 75 75 run.classpath=\ 76 76 ${javac.classpath}:\ -
trunk/IDE_metadata/NetBeans/TMCSim/nbproject/project.xml
r12 r79 5 5 <data xmlns="http://www.netbeans.org/ns/j2se-project/3"> 6 6 <name>TMCSim</name> 7 <explicit-platform explicit-source-supported="true"/>8 7 <source-roots> 9 8 <root id="src.dir"/>
Note: See TracChangeset
for help on using the changeset viewer.
