Changeset 132 in tmcsimulator for trunk/IDE_metadata/NetBeans/TMCSim/nbproject
- Timestamp:
- 10/17/2017 01:20:01 PM (9 years ago)
- Location:
- trunk/IDE_metadata/NetBeans/TMCSim/nbproject
- Files:
-
- 3 edited
-
build-impl.xml (modified) (13 diffs)
-
genfiles.properties (modified) (1 diff)
-
project.properties (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/IDE_metadata/NetBeans/TMCSim/nbproject/build-impl.xml
r79 r132 47 47 <!-- The two properties below are usually overridden --> 48 48 <!-- by the active platform. Just a fallback. --> 49 <property name="default.javac.source" value="1. 4"/>50 <property name="default.javac.target" value="1. 4"/>49 <property name="default.javac.source" value="1.6"/> 50 <property name="default.javac.target" value="1.6"/> 51 51 </target> 52 52 <target depends="-pre-init,-init-private,-init-user" name="-init-project"> … … 77 77 <isset property="javac.profile"/> 78 78 <length length="0" string="${javac.profile}" when="greater"/> 79 <matches pattern=" 1\.[89](\..*)?" string="${javac.source}"/>79 <matches pattern="((1\.[89])|9)(\..*)?" string="${javac.source}"/> 80 80 </and> 81 81 </condition> … … 157 157 <property name="source.encoding" value="${file.encoding}"/> 158 158 <property name="runtime.encoding" value="${source.encoding}"/> 159 <property name="manifest.encoding" value="${source.encoding}"/> 159 160 <condition property="javadoc.encoding.used" value="${javadoc.encoding}"> 160 161 <and> … … 192 193 </and> 193 194 </condition> 194 <property name="javac.fork" value="${jdkBug6558476}"/> 195 <condition else="false" property="javac.fork"> 196 <or> 197 <istrue value="${jdkBug6558476}"/> 198 <istrue value="${javac.external.vm}"/> 199 </or> 200 </condition> 195 201 <property name="jar.index" value="false"/> 196 202 <property name="jar.index.metainf" value="${jar.index}"/> … … 218 224 <istrue value="${junit+testng.available}"/> 219 225 </condition> 226 <property name="java.failonerror" value="true"/> 220 227 </target> 221 228 <target name="-post-init"> … … 694 701 <property environment="env"/> 695 702 <resolve name="profiler.current.path" value="${profiler.info.pathvar}"/> 696 <java classname="@{classname}" dir="${profiler.info.dir}" f ork="true" jvm="${profiler.info.jvm}">703 <java classname="@{classname}" dir="${profiler.info.dir}" failonerror="${java.failonerror}" fork="true" jvm="${profiler.info.jvm}"> 697 704 <jvmarg line="${endorsed.classpath.cmd.line.arg}"/> 698 705 <jvmarg value="${profiler.info.jvmargs.agent}"/> … … 769 776 <element name="customize" optional="true"/> 770 777 <sequential> 771 <java classname="@{classname}" dir="${work.dir}" f ork="true">778 <java classname="@{classname}" dir="${work.dir}" failonerror="${java.failonerror}" fork="true"> 772 779 <jvmarg line="${endorsed.classpath.cmd.line.arg}"/> 773 780 <jvmarg line="${debug-args-line}"/> … … 796 803 <element name="customize" optional="true"/> 797 804 <sequential> 798 <java classname="@{classname}" dir="${work.dir}" f ork="true">805 <java classname="@{classname}" dir="${work.dir}" failonerror="${java.failonerror}" fork="true"> 799 806 <jvmarg line="${endorsed.classpath.cmd.line.arg}"/> 800 807 <jvmarg value="-Dfile.encoding=${runtime.encoding}"/> … … 835 842 </pathconvert> 836 843 <taskdef classname="org.netbeans.modules.java.j2seproject.copylibstask.CopyLibs" classpath="${libs.CopyLibs.classpath}" name="copylibs"/> 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}">844 <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}"> 838 845 <fileset dir="${build.classes.dir}" excludes="${dist.archive.excludes}"/> 839 846 <manifest> … … 847 854 <target name="-init-presetdef-jar"> 848 855 <presetdef name="jar" uri="http://www.netbeans.org/ns/j2se-project/1"> 849 <jar compress="${jar.compress}" index="${jar.index}" jarfile="${dist.jar}" >856 <jar compress="${jar.compress}" index="${jar.index}" jarfile="${dist.jar}" manifestencoding="UTF-8"> 850 857 <j2seproject1:fileset dir="${build.classes.dir}" excludes="${dist.archive.excludes}"/> 851 858 </jar> … … 970 977 <target depends="init" if="do.archive+manifest.available" name="-do-jar-copy-manifest"> 971 978 <tempfile deleteonexit="true" destdir="${build.dir}" property="tmp.manifest.file"/> 972 <copy file="${manifest.file}" tofile="${tmp.manifest.file}"/>979 <copy encoding="${manifest.encoding}" file="${manifest.file}" outputencoding="UTF-8" tofile="${tmp.manifest.file}"/> 973 980 </target> 974 981 <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">982 <manifest encoding="UTF-8" file="${tmp.manifest.file}" mode="update"> 976 983 <attribute name="Main-Class" value="${main.class}"/> 977 984 </manifest> 978 985 </target> 979 986 <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">987 <manifest encoding="UTF-8" file="${tmp.manifest.file}" mode="update"> 981 988 <attribute name="Profile" value="${javac.profile}"/> 982 989 </manifest> … … 986 993 <mkdir dir="${build.classes.dir}/META-INF"/> 987 994 <copy failonerror="false" file="${application.splash}" todir="${build.classes.dir}/META-INF"/> 988 <manifest file="${tmp.manifest.file}" mode="update">995 <manifest encoding="UTF-8" file="${tmp.manifest.file}" mode="update"> 989 996 <attribute name="SplashScreen-Image" value="META-INF/${splashscreen.basename}"/> 990 997 </manifest> … … 1181 1188 <fail unless="run.class">Must select one file in the IDE or set run.class</fail> 1182 1189 <startprofiler/> 1183 <antcal target="run-test-with-main"/>1190 <antcall target="run-test-with-main"/> 1184 1191 </target> 1185 1192 <target depends="-profile-check,-profile-applet-pre72" if="profiler.configured" name="profile-applet" unless="profiler.info.jvmargs.agent"> -
trunk/IDE_metadata/NetBeans/TMCSim/nbproject/genfiles.properties
r79 r132 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=6c7221c6 7 nbproject/build-impl.xml.script.CRC32= 5cb245d68 nbproject/build-impl.xml.stylesheet.CRC32=8 76e7a8f@1.75.2.487 nbproject/build-impl.xml.script.CRC32=249c9218 8 nbproject/build-impl.xml.stylesheet.CRC32=830a3534@1.80.1.48 -
trunk/IDE_metadata/NetBeans/TMCSim/nbproject/project.properties
r79 r132 1 #Wed Oct 11 09:26:31 PDT 2017 2 excludes= 3 file.reference.xercesImpl.jar=../../../lib/xercesImpl.jar 4 javac.deprecation=false 5 file.reference.jaco-mp3-player-0.9.3.jar=../../../lib/jaco-mp3-player-0.9.3.jar 6 build.test.results.dir=${build.dir}/test/results 7 javac.external.vm=false 8 run.classpath=\ 9 ${javac.classpath}:\ 10 ${build.classes.dir} 11 javadoc.nonavbar=false 12 run.test.classpath=\ 13 ${javac.test.classpath}:\ 14 ${build.test.classes.dir} 15 annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output 16 javac.processorpath=\ 17 ${javac.classpath} 18 javac.target=1.7 19 annotation.processing.processors.list= 20 javadoc.noindex=false 21 file.reference.uispec4j-jdk17.jar=../../../lib/uispec4j-jdk17.jar 22 javadoc.additionalparam= 23 includes=** 24 build.classes.dir=${build.dir}/classes 25 source.encoding=UTF-8 26 javadoc.author=true 27 test.src.dir=${file.reference.tmc-simulator-test} 28 build.dir=build 29 file.reference.mockito-1.10.19.jar=../../../lib/mockito-1.10.19.jar 30 build.test.classes.dir=${build.dir}/test/classes 31 platform.active=default_platform 32 javac.compilerargs= 33 main.class=tmcsim.cadsimulator.CADServer 34 dist.jar=${dist.dir}/TMCSim.jar 35 javac.test.processorpath=${javac.test.classpath} 36 javadoc.use=true 37 build.sysclasspath=ignore 38 debug.test.classpath=${run.test.classpath} 39 dist.dir=dist 40 build.classes.excludes=**/*.java,**/*.form 41 javadoc.splitindex=true 42 javadoc.encoding=${source.encoding} 43 javac.source=1.7 44 application.vendor=jdalbey 45 junit.selected.version=3 46 debug.classpath=${run.classpath} 47 file.reference.commons-lang-2.4.jar=../../../lib/commons-lang-2.4.jar 48 run.jvmargs=-DCONFIG_DIR\=config/testConfig 49 javac.test.classpath=\ 50 ${javac.classpath}:\ 51 ${build.classes.dir}:\ 52 ${libs.junit_4.classpath}:\ 53 ${libs.hamcrest.classpath} 54 build.generated.dir=${build.dir}/generated 55 jar.compress=false 56 javadoc.private=false 57 file.reference.tmc-simulator-test=../../../test 58 annotation.processing.run.all.processors=true 59 application.title=TMCSim 60 meta.inf.dir=${src.dir}/META-INF 61 manifest.file=manifest.mf 1 62 annotation.processing.enabled=true 2 annotation.processing.enabled.in.editor=false3 annotation.processing.processors.list=4 annotation.processing.run.all.processors=true5 annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output6 application.title=TMCSim7 application.vendor=jdalbey8 build.classes.dir=${build.dir}/classes9 build.classes.excludes=**/*.java,**/*.form10 # This directory is removed when the project is cleaned:11 build.dir=build12 build.generated.dir=${build.dir}/generated13 build.generated.sources.dir=${build.dir}/generated-sources14 # Only compile against the classpath explicitly listed here:15 build.sysclasspath=ignore16 build.test.classes.dir=${build.dir}/test/classes17 build.test.results.dir=${build.dir}/test/results18 # Uncomment to specify the preferred debugger connection transport:19 #debug.transport=dt_socket20 debug.classpath=\21 ${run.classpath}22 debug.test.classpath=\23 ${run.test.classpath}24 # This directory is removed when the project is cleaned:25 dist.dir=dist26 dist.jar=${dist.dir}/TMCSim.jar27 63 dist.javadoc.dir=${dist.dir}/javadoc 64 src.dir=${file.reference.tmc-simulator-src} 65 mkdist.disabled=false 28 66 endorsed.classpath= 29 excludes=30 file.reference.commons-lang-2.4.jar=../../../lib/commons-lang-2.4.jar31 file.reference.jaco-mp3-player-0.9.3.jar=../../../lib/jaco-mp3-player-0.9.3.jar32 file.reference.mockito-1.10.19.jar=../../../lib/mockito-1.10.19.jar33 file.reference.tmc-simulator-src=../../../src34 file.reference.tmc-simulator-test=../../../test35 file.reference.uispec4j-jdk17.jar=../../../lib/uispec4j-jdk17.jar36 file.reference.xercesImpl.jar=../../../lib/xercesImpl.jar37 includes=**38 jar.compress=false39 67 javac.classpath=\ 40 68 ${file.reference.uispec4j-jdk17.jar}:\ … … 44 72 ${file.reference.commons-lang-2.4.jar}:\ 45 73 ${libs.junit_4.classpath} 46 # Space-separated list of extra javac options 47 javac.compilerargs= 48 javac.deprecation=false 49 javac.processorpath=\ 50 ${javac.classpath} 51 javac.source=1.7 52 javac.target=1.7 53 javac.test.classpath=\ 54 ${javac.classpath}:\ 55 ${build.classes.dir}:\ 56 ${libs.junit.classpath} 57 javac.test.processorpath=\ 58 ${javac.test.classpath} 59 javadoc.additionalparam= 60 javadoc.author=true 61 javadoc.encoding=${source.encoding} 62 javadoc.noindex=false 63 javadoc.nonavbar=false 64 javadoc.notree=false 65 javadoc.private=false 66 javadoc.splitindex=true 67 javadoc.use=true 74 annotation.processing.enabled.in.editor=false 75 build.generated.sources.dir=${build.dir}/generated-sources 68 76 javadoc.version=true 69 77 javadoc.windowtitle= 70 main.class=tmcsim.cadsimulator.CADSimulator 71 manifest.file=manifest.mf 72 meta.inf.dir=${src.dir}/META-INF 73 mkdist.disabled=false 74 platform.active=default_platform 75 run.classpath=\ 76 ${javac.classpath}:\ 77 ${build.classes.dir} 78 # Space-separated list of JVM arguments used when running the project. 79 # You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. 80 # To set system properties for unit tests define test-sys-prop.name=value: 81 run.jvmargs=-DCONFIG_DIR=config/testConfig 82 run.test.classpath=\ 83 ${javac.test.classpath}:\ 84 ${build.test.classes.dir} 85 source.encoding=UTF-8 86 src.dir=${file.reference.tmc-simulator-src} 87 test.src.dir=${file.reference.tmc-simulator-test} 78 javadoc.notree=false 79 file.reference.tmc-simulator-src=../../../src 88 80 work.dir=../../..
Note: See TracChangeset
for help on using the changeset viewer.
