Changeset 14592
- Timestamp:
- 01/03/14 17:56:42 (9 years ago)
- Location:
- trunk/abcl/nbproject
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/nbproject/build-impl.xml
r14572 r14592 55 55 </target> 56 56 <target depends="-pre-init,-init-private,-init-user,-init-project,-init-macrodef-property" name="-do-init"> 57 <property name="platform.java" value="${java.home}/bin/java"/> 57 58 <available file="${manifest.file}" property="manifest.available"/> 58 59 <condition property="splashscreen.available"> … … 72 73 </and> 73 74 </condition> 74 <condition property="manifest.available+main.class"> 75 <and> 76 <isset property="manifest.available"/> 77 <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}"/> 78 80 </and> 79 81 </condition> … … 92 94 </and> 93 95 </condition> 94 <condition property="manifest.available+main.class+mkdist.available">95 <and>96 <istrue value="${manifest.available+main.class}"/>97 <isset property="do.mkdist"/>98 </and>99 </condition>100 96 <condition property="do.archive+manifest.available"> 101 97 <and> … … 116 112 </and> 117 113 </condition> 118 <condition property="do.archive+ manifest.available+main.class">119 <and> 120 <is true value="${manifest.available+main.class}"/>114 <condition property="do.archive+profile.available"> 115 <and> 116 <isset property="profile.available"/> 121 117 <istrue value="${do.archive}"/> 122 118 </and> 123 </condition>124 <condition property="manifest.available-mkdist.available">125 <or>126 <istrue value="${manifest.available}"/>127 <isset property="do.mkdist"/>128 </or>129 </condition>130 <condition property="manifest.available+main.class-mkdist.available">131 <or>132 <istrue value="${manifest.available+main.class}"/>133 <isset property="do.mkdist"/>134 </or>135 119 </condition> 136 120 <condition property="have.tests"> … … 187 171 <path id="endorsed.classpath.path" path="${endorsed.classpath}"/> 188 172 <condition else="" property="endorsed.classpath.cmd.line.arg" value="-Xbootclasspath/p:'${toString:endorsed.classpath.path}'"> 189 <length length="0" string="${endorsed.classpath}" when="greater"/> 173 <and> 174 <isset property="endorsed.classpath"/> 175 <not> 176 <equals arg1="${endorsed.classpath}" arg2="" trim="true"/> 177 </not> 178 </and> 179 </condition> 180 <condition else="" property="javac.profile.cmd.line.arg" value="-profile ${javac.profile}"> 181 <isset property="profile.available"/> 190 182 </condition> 191 183 <condition else="false" property="jdkBug6558476"> … … 276 268 </classpath> 277 269 <compilerarg line="${endorsed.classpath.cmd.line.arg}"/> 270 <compilerarg line="${javac.profile.cmd.line.arg}"/> 278 271 <compilerarg line="${javac.compilerargs}"/> 279 272 <compilerarg value="-processorpath"/> … … 315 308 </classpath> 316 309 <compilerarg line="${endorsed.classpath.cmd.line.arg}"/> 310 <compilerarg line="${javac.profile.cmd.line.arg}"/> 317 311 <compilerarg line="${javac.compilerargs}"/> 318 312 <customize/> … … 447 441 </union> 448 442 <taskdef classname="org.testng.TestNGAntTask" classpath="${run.test.classpath}" name="testng"/> 449 <testng classfilesetref="test.set" failureProperty="tests.failed" methods="${testng.methods.arg}" mode="${testng.mode}" outputdir="${build.test.results.dir}" suitename="abcl" testname="TestNG tests" workingDir="${work.dir}">443 <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="abcl" testname="TestNG tests" workingDir="${work.dir}"> 450 444 <xmlfileset dir="${build.test.classes.dir}" includes="@{testincludes}"/> 451 445 <propertyset> … … 838 832 </pathconvert> 839 833 <taskdef classname="org.netbeans.modules.java.j2seproject.copylibstask.CopyLibs" classpath="${libs.CopyLibs.classpath}" name="copylibs"/> 840 <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}">841 <fileset dir="${build.classes.dir}" />834 <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}"> 835 <fileset dir="${build.classes.dir}" excludes="${dist.archive.excludes}"/> 842 836 <manifest> 843 837 <attribute name="Class-Path" value="${jar.classpath}"/> … … 851 845 <presetdef name="jar" uri="http://www.netbeans.org/ns/j2se-project/1"> 852 846 <jar compress="${jar.compress}" index="${jar.index}" jarfile="${dist.jar}"> 853 <j2seproject1:fileset dir="${build.classes.dir}" />847 <j2seproject1:fileset dir="${build.classes.dir}" excludes="${dist.archive.excludes}"/> 854 848 </jar> 855 849 </presetdef> … … 967 961 <!-- You can override this target in the ../build.xml file. --> 968 962 </target> 969 <target depends="init,compile,-pre-pre-jar,-pre-jar" if="do.archive" name="-do-jar-without-manifest" unless="manifest.available-mkdist.available"> 970 <j2seproject1:jar/> 971 </target> 972 <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"> 973 <j2seproject1:jar manifest="${manifest.file}"/> 974 </target> 975 <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"> 976 <j2seproject1:jar manifest="${manifest.file}"> 977 <j2seproject1:manifest> 978 <j2seproject1:attribute name="Main-Class" value="${main.class}"/> 979 </j2seproject1:manifest> 980 </j2seproject1:jar> 963 <target depends="init" if="do.archive" name="-do-jar-create-manifest" unless="manifest.available"> 964 <tempfile deleteonexit="true" destdir="${build.dir}" property="tmp.manifest.file"/> 965 <touch file="${tmp.manifest.file}" verbose="false"/> 966 </target> 967 <target depends="init" if="do.archive+manifest.available" name="-do-jar-copy-manifest"> 968 <tempfile deleteonexit="true" destdir="${build.dir}" property="tmp.manifest.file"/> 969 <copy file="${manifest.file}" tofile="${tmp.manifest.file}"/> 970 </target> 971 <target depends="init,-do-jar-create-manifest,-do-jar-copy-manifest" if="do.archive+main.class.available" name="-do-jar-set-mainclass"> 972 <manifest file="${tmp.manifest.file}" mode="update"> 973 <attribute name="Main-Class" value="${main.class}"/> 974 </manifest> 975 </target> 976 <target depends="init,-do-jar-create-manifest,-do-jar-copy-manifest" if="do.archive+profile.available" name="-do-jar-set-profile"> 977 <manifest file="${tmp.manifest.file}" mode="update"> 978 <attribute name="Profile" value="${javac.profile}"/> 979 </manifest> 980 </target> 981 <target depends="init,-do-jar-create-manifest,-do-jar-copy-manifest" if="do.archive+splashscreen.available" name="-do-jar-set-splashscreen"> 982 <basename file="${application.splash}" property="splashscreen.basename"/> 983 <mkdir dir="${build.classes.dir}/META-INF"/> 984 <copy failonerror="false" file="${application.splash}" todir="${build.classes.dir}/META-INF"/> 985 <manifest file="${tmp.manifest.file}" mode="update"> 986 <attribute name="SplashScreen-Image" value="META-INF/${splashscreen.basename}"/> 987 </manifest> 988 </target> 989 <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"> 990 <j2seproject3:copylibs manifest="${tmp.manifest.file}"/> 981 991 <echo level="info">To run this application from the command line without Ant, try:</echo> 992 <property location="${dist.jar}" name="dist.jar.resolved"/> 993 <echo level="info">java -jar "${dist.jar.resolved}"</echo> 994 </target> 995 <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"> 996 <j2seproject1:jar manifest="${tmp.manifest.file}"/> 982 997 <property location="${build.classes.dir}" name="build.classes.dir.resolved"/> 983 998 <property location="${dist.jar}" name="dist.jar.resolved"/> … … 986 1001 <map from="${build.classes.dir.resolved}" to="${dist.jar.resolved}"/> 987 1002 </pathconvert> 988 <echo level="info">java -cp "${run.classpath.with.dist.jar}" ${main.class}</echo> 989 </target> 990 <target depends="init" if="do.archive" name="-do-jar-with-libraries-create-manifest" unless="manifest.available"> 991 <tempfile deleteonexit="true" destdir="${build.dir}" property="tmp.manifest.file"/> 992 <touch file="${tmp.manifest.file}" verbose="false"/> 993 </target> 994 <target depends="init" if="do.archive+manifest.available" name="-do-jar-with-libraries-copy-manifest"> 995 <tempfile deleteonexit="true" destdir="${build.dir}" property="tmp.manifest.file"/> 996 <copy file="${manifest.file}" tofile="${tmp.manifest.file}"/> 997 </target> 998 <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"> 999 <manifest file="${tmp.manifest.file}" mode="update"> 1000 <attribute name="Main-Class" value="${main.class}"/> 1001 </manifest> 1002 </target> 1003 <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"> 1004 <basename file="${application.splash}" property="splashscreen.basename"/> 1005 <mkdir dir="${build.classes.dir}/META-INF"/> 1006 <copy failonerror="false" file="${application.splash}" todir="${build.classes.dir}/META-INF"/> 1007 <manifest file="${tmp.manifest.file}" mode="update"> 1008 <attribute name="SplashScreen-Image" value="META-INF/${splashscreen.basename}"/> 1009 </manifest> 1010 </target> 1011 <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"> 1012 <j2seproject3:copylibs manifest="${tmp.manifest.file}"/> 1013 <echo level="info">To run this application from the command line without Ant, try:</echo> 1014 <property location="${dist.jar}" name="dist.jar.resolved"/> 1015 <echo level="info">java -jar "${dist.jar.resolved}"</echo> 1016 </target> 1017 <target depends="-do-jar-with-libraries-pack" if="do.archive" name="-do-jar-with-libraries-delete-manifest"> 1003 <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}"> 1004 <isset property="main.class.available"/> 1005 </condition> 1006 <condition else="debug" property="jar.usage.level" value="info"> 1007 <isset property="main.class.available"/> 1008 </condition> 1009 <echo level="${jar.usage.level}" message="${jar.usage.message}"/> 1010 </target> 1011 <target depends="-do-jar-copylibs" if="do.archive" name="-do-jar-delete-manifest"> 1018 1012 <delete> 1019 1013 <fileset file="${tmp.manifest.file}"/> 1020 1014 </delete> 1021 1015 </target> 1022 <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"/> 1016 <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"/> 1017 <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"/> 1023 1018 <target name="-post-jar"> 1024 1019 <!-- Empty placeholder for easier customization. --> 1025 1020 <!-- You can override this target in the ../build.xml file. --> 1026 1021 </target> 1027 <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"/> 1022 <target depends="init,compile,-pre-jar,-do-jar-without-libraries,-do-jar-with-libraries,-post-jar" name="-do-jar"/> 1023 <target depends="init,compile,-pre-jar,-do-jar,-post-jar" description="Build JAR." name="jar"/> 1028 1024 <!-- 1029 1025 ================= -
trunk/abcl/nbproject/genfiles.properties
r14572 r14592 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=742204ce 7 nbproject/build-impl.xml.script.CRC32= 24124b358 nbproject/build-impl.xml.stylesheet.CRC32= c6d2a60f@1.56.1.467 nbproject/build-impl.xml.script.CRC32=364c80b9 8 nbproject/build-impl.xml.stylesheet.CRC32=5a01deb7@1.68.1.46 9 9 nbproject/profiler-build-impl.xml.data.CRC32=71623fcd 10 10 nbproject/profiler-build-impl.xml.script.CRC32=abda56ed -
trunk/abcl/nbproject/private/configs/slime.properties
r12146 r14592 1 application.args=--eval "(require (quote asdf))" --eval "(asdf:operate (quote asdf:load-op):swank)" --eval "(swank:create-server)"1 application.args=--eval "(require (quote asdf))" --eval '(push "~/.asdf-install-dir/systems/" asdf/find-system:*central-registry*)' --eval "(asdf:load-system :swank)" --eval "(swank:create-server)" -
trunk/abcl/nbproject/project.properties
r12449 r14592 1 annotation.processing.enabled=true 2 annotation.processing.enabled.in.editor=false 3 annotation.processing.processors.list= 4 annotation.processing.run.all.processors=true 1 5 application.title=abcl 2 6 application.vendor= … … 21 25 endorsed.classpath= 22 26 excludes= 27 file.reference.abcl-contrib.jar=dist/abcl-contrib.jar 23 28 file.reference.abcl-src=src 24 29 includes=org/armedbear/lisp/**/*.java,org/armedbear/lisp/**/*.lisp … … 28 33 javac.compilerargs= 29 34 javac.deprecation=false 35 javac.processorpath=\ 36 ${javac.classpath} 30 37 javac.source=1.5 31 38 javac.target=1.5 … … 55 62 manifest.file=src/manifest-abcl 56 63 meta.inf.dir=${src.dir}/META-INF 64 mkdist.disabled=false 57 65 platform.active=default_platform 58 66 run.classpath=\ 59 67 ${build.classes.dir}:\ 60 ${javac.classpath} 68 ${javac.classpath}:\ 69 ${file.reference.abcl-contrib.jar} 61 70 # Space-separated list of JVM arguments used when running the project 62 71 # (you may also define separate properties like run-sys-prop.name=value instead of -Dname=value
Note: See TracChangeset
for help on using the changeset viewer.