Changeset 16:290074b53aca
- Timestamp:
- 03/30/12 15:35:26 (13 years ago)
- Author:
- František Kučera <franta-hg@…>
- Branch:
- default
- Message:
-
netbeans, ant
- Location:
- java
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
r13
|
r16
|
|
21 | 21 | --> |
22 | 22 | <project xmlns:j2seproject1="http://www.netbeans.org/ns/j2se-project/1" xmlns:j2seproject3="http://www.netbeans.org/ns/j2se-project/3" xmlns:jaxrpc="http://www.netbeans.org/ns/j2se-project/jax-rpc" basedir=".." default="default" name="Postak-impl"> |
23 | | <fail message="Please build using Ant 1.7.1 or higher."> |
| 23 | <fail message="Please build using Ant 1.8.0 or higher."> |
24 | 24 | <condition> |
25 | 25 | <not> |
26 | | <antversion atleast="1.7.1"/> |
| 26 | <antversion atleast="1.8.0"/> |
27 | 27 | </not> |
28 | 28 | </condition> |
… |
… |
|
199 | 199 | <property name="jar.index" value="false"/> |
200 | 200 | <property name="jar.index.metainf" value="${jar.index}"/> |
| 201 | <property name="copylibs.rebase" value="true"/> |
201 | 202 | <available file="${meta.inf.dir}/persistence.xml" property="has.persistence.xml"/> |
202 | 203 | </target> |
… |
… |
|
385 | 386 | <resolve name="profiler.current.path" value="${profiler.info.pathvar}"/> |
386 | 387 | <java classname="@{classname}" dir="${profiler.info.dir}" fork="true" jvm="${profiler.info.jvm}"> |
| 388 | <jvmarg line="${endorsed.classpath.cmd.line.arg}"/> |
387 | 389 | <jvmarg value="${profiler.info.jvmargs.agent}"/> |
388 | 390 | <jvmarg line="${profiler.info.jvmargs}"/> |
… |
… |
|
515 | 517 | </pathconvert> |
516 | 518 | <taskdef classname="org.netbeans.modules.java.j2seproject.copylibstask.CopyLibs" classpath="${libs.CopyLibs.classpath}" name="copylibs"/> |
517 | | <copylibs compress="${jar.compress}" index="${jar.index}" indexMetaInf="${jar.index.metainf}" jarfile="${dist.jar}" manifest="@{manifest}" runtimeclasspath="${run.classpath.without.build.classes.dir}"> |
| 519 | <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}"> |
518 | 520 | <fileset dir="${build.classes.dir}"/> |
519 | 521 | <manifest> |
… |
… |
|
840 | 842 | <target depends="init" if="have.sources" name="-javadoc-build"> |
841 | 843 | <mkdir dir="${dist.javadoc.dir}"/> |
| 844 | <condition else="" property="javadoc.endorsed.classpath.cmd.line.arg" value="-J${endorsed.classpath.cmd.line.arg}"> |
| 845 | <and> |
| 846 | <isset property="endorsed.classpath.cmd.line.arg"/> |
| 847 | <not> |
| 848 | <equals arg1="${endorsed.classpath.cmd.line.arg}" arg2=""/> |
| 849 | </not> |
| 850 | </and> |
| 851 | </condition> |
842 | 852 | <javadoc additionalparam="${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}"> |
843 | 853 | <classpath> |
… |
… |
|
851 | 861 | <exclude name="*.java"/> |
852 | 862 | </fileset> |
| 863 | <arg line="${javadoc.endorsed.classpath.cmd.line.arg}"/> |
853 | 864 | </javadoc> |
854 | 865 | <copy todir="${dist.javadoc.dir}"> |
-
r13
|
r16
|
|
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=ecce8ba0 |
7 | | nbproject/build-impl.xml.script.CRC32=c4083fc9 |
8 | | nbproject/build-impl.xml.stylesheet.CRC32=0ae3a408@1.44.1.45 |
| 7 | nbproject/build-impl.xml.script.CRC32=8750d9a8 |
| 8 | nbproject/build-impl.xml.stylesheet.CRC32=fcddb364@1.50.1.46 |
-
r13
|
r16
|
|
22 | 22 | <project xmlns:j2seproject1="http://www.netbeans.org/ns/j2se-project/1" xmlns:j2seproject3="http://www.netbeans.org/ns/j2se-project/3" xmlns:jaxrpc="http://www.netbeans.org/ns/j2se-project/jax-rpc" basedir=".." default="default" name="SuperPostak-impl"> |
23 | 23 | <import file="jnlp-impl.xml"/> |
24 | | <fail message="Please build using Ant 1.7.1 or higher."> |
| 24 | <fail message="Please build using Ant 1.8.0 or higher."> |
25 | 25 | <condition> |
26 | 26 | <not> |
27 | | <antversion atleast="1.7.1"/> |
| 27 | <antversion atleast="1.8.0"/> |
28 | 28 | </not> |
29 | 29 | </condition> |
… |
… |
|
200 | 200 | <property name="jar.index" value="false"/> |
201 | 201 | <property name="jar.index.metainf" value="${jar.index}"/> |
| 202 | <property name="copylibs.rebase" value="true"/> |
202 | 203 | <available file="${meta.inf.dir}/persistence.xml" property="has.persistence.xml"/> |
203 | 204 | </target> |
… |
… |
|
386 | 387 | <resolve name="profiler.current.path" value="${profiler.info.pathvar}"/> |
387 | 388 | <java classname="@{classname}" dir="${profiler.info.dir}" fork="true" jvm="${profiler.info.jvm}"> |
| 389 | <jvmarg line="${endorsed.classpath.cmd.line.arg}"/> |
388 | 390 | <jvmarg value="${profiler.info.jvmargs.agent}"/> |
389 | 391 | <jvmarg line="${profiler.info.jvmargs}"/> |
… |
… |
|
516 | 518 | </pathconvert> |
517 | 519 | <taskdef classname="org.netbeans.modules.java.j2seproject.copylibstask.CopyLibs" classpath="${libs.CopyLibs.classpath}" name="copylibs"/> |
518 | | <copylibs compress="${jar.compress}" index="${jar.index}" indexMetaInf="${jar.index.metainf}" jarfile="${dist.jar}" manifest="@{manifest}" runtimeclasspath="${run.classpath.without.build.classes.dir}"> |
| 520 | <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}"> |
519 | 521 | <fileset dir="${build.classes.dir}"/> |
520 | 522 | <manifest> |
… |
… |
|
855 | 857 | <target depends="init" if="have.sources" name="-javadoc-build"> |
856 | 858 | <mkdir dir="${dist.javadoc.dir}"/> |
| 859 | <condition else="" property="javadoc.endorsed.classpath.cmd.line.arg" value="-J${endorsed.classpath.cmd.line.arg}"> |
| 860 | <and> |
| 861 | <isset property="endorsed.classpath.cmd.line.arg"/> |
| 862 | <not> |
| 863 | <equals arg1="${endorsed.classpath.cmd.line.arg}" arg2=""/> |
| 864 | </not> |
| 865 | </and> |
| 866 | </condition> |
857 | 867 | <javadoc additionalparam="${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}"> |
858 | 868 | <classpath> |
… |
… |
|
866 | 876 | <exclude name="*.java"/> |
867 | 877 | </fileset> |
| 878 | <arg line="${javadoc.endorsed.classpath.cmd.line.arg}"/> |
868 | 879 | </javadoc> |
869 | 880 | <copy todir="${dist.javadoc.dir}"> |
-
r13
|
r16
|
|
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=d917048a |
7 | | nbproject/build-impl.xml.script.CRC32=ccb272cf |
8 | | nbproject/build-impl.xml.stylesheet.CRC32=0ae3a408@1.44.1.45 |
| 7 | nbproject/build-impl.xml.script.CRC32=c275334b |
| 8 | nbproject/build-impl.xml.stylesheet.CRC32=fcddb364@1.50.1.46 |