|
131 | 131 | ant test -Dincludes=framework/xxxTest.java |
132 | 132 | or for example |
133 | 133 | ant test -Dincludes=launchers/VersionTest.java |
134 | | - To run a subset, say fxunit/ of the VisageCompilerTest tests, do |
135 | | - ant test -Dtest.visage.roots=test/fxunit -Dincludes=framework/VisageCompilerTest.java |
| 134 | + To run a subset, say visageunit/ of the VisageCompilerTest tests, do |
| 135 | + ant test -Dtest.visage.roots=test/visageunit -Dincludes=framework/VisageCompilerTest.java |
136 | 136 |
|
137 | 137 | name="docs" depends="binaries,source-zip,-do-docs" description="Build binaries, docs, and src.zip" |
138 | 138 | name="all" depends="docs,test,pack-jars" description="Build and test all project artifacts" |
|
209 | 209 | <mkdir dir="${visage.xml.docs.dir}"/> |
210 | 210 | <copy file="${build.dir}/docs/javacode.xml" |
211 | 211 | tofile="${visage.xml.docs.dir}/visage-compiler_javacode.xml"/> |
212 | | - <copy file="build/docs/fxcode.xml" |
213 | | - tofile="${visage.xml.docs.dir}/visage-compiler_fxcode.xml"/> |
| 212 | + <copy file="build/docs/visagecode.xml" |
| 213 | + tofile="${visage.xml.docs.dir}/visage-compiler_visagecode.xml"/> |
214 | 214 | </target> |
215 | 215 |
|
216 | 216 | <target name="-do-visage-clean-deploy"> |
|
580 | 580 | <jvmarg value="-Xbootclasspath/p:${bootjars}"/> |
581 | 581 | <jvmarg value="-Djava.awt.headless=true"/> |
582 | 582 | <jvmarg value="-Xmx${visage.javadoc.max.memory}"/> |
583 | | - <arg value="-o"/> <arg value="build/docs/fxcode.xml"/> |
| 583 | + <arg value="-o"/> <arg value="build/docs/visagecode.xml"/> |
584 | 584 | <arg value="-nohtml"/> |
585 | 585 | <arg value="-sourcepath"/> <arg value="${srcpathprop}"/> |
586 | 586 | <arg value="-classpath"/> <arg value="${clsjars}"/> |
|
825 | 825 | </or> |
826 | 826 | </condition> |
827 | 827 |
|
828 | | - <target name="fxjdi" description="Build fxjdi.jar" depends="-fxjdi-build, -fxjdi-skip"> |
| 828 | + <target name="visagejdi" description="Build visagejdi.jar" depends="-visagejdi-build, -visagejdi-skip"> |
829 | 829 | </target> |
830 | 830 |
|
831 | | - <target name="-fxjdi-skip" description="Skip building fxjdi.jar on JDK LT 6" if="preJDK6"> |
832 | | - <echo message="Skipping build of fxjdi because JDK 5 or earlier is in use"/> |
| 831 | + <target name="-visagejdi-skip" description="Skip building visagejdi.jar on JDK LT 6" if="preJDK6"> |
| 832 | + <echo message="Skipping build of visagejdi because JDK 5 or earlier is in use"/> |
833 | 833 | </target> |
834 | 834 |
|
835 | | - <target name="-fxjdi-build" description="Build fxjdi.jar and javadoc on JDK >= 6" unless="preJDK6"> |
836 | | - <echo message="Building fxjdi"/> |
837 | | - <ant dir="fxjdi" antfile="build.xml" target="dist" inheritAll="false"> |
| 835 | + <target name="-visagejdi-build" description="Build visagejdi.jar and javadoc on JDK >= 6" unless="preJDK6"> |
| 836 | + <echo message="Building visagejdi"/> |
| 837 | + <ant dir="visagejdi" antfile="build.xml" target="dist" inheritAll="false"> |
838 | 838 | <property name="build.defs" value="${build.defs}" /> |
839 | 839 | </ant> |
840 | | - <copy file="fxjdi/dist/fxjdi.jar" tofile="${dist.fxjdi.jar}"/> |
841 | | - <copy todir="${basedir}/dist/doc/fxjdi/api"> |
842 | | - <fileset dir="fxjdi/dist/javadoc/"/> |
| 840 | + <copy file="visagejdi/dist/visagejdi.jar" tofile="${dist.visagejdi.jar}"/> |
| 841 | + <copy todir="${basedir}/dist/doc/visagejdi/api"> |
| 842 | + <fileset dir="visagejdi/dist/javadoc/"/> |
843 | 843 | </copy> |
844 | 844 | </target> |
845 | 845 |
|
|
858 | 858 | <ant dir="${visagedoc.dir}" antfile="build.xml" target="clean" inheritall="false" /> |
859 | 859 | </target> |
860 | 860 |
|
861 | | - <target name="fxjdi-clean"> |
862 | | - <echo message="clean in fxjdi/"/> |
863 | | - <ant dir="fxjdi" antfile="build.xml" target="clean" inheritall="false"> |
| 861 | + <target name="visagejdi-clean"> |
| 862 | + <echo message="clean in visagejdi/"/> |
| 863 | + <ant dir="visagejdi" antfile="build.xml" target="clean" inheritall="false"> |
864 | 864 | <property name="build.defs" value="${build.defs}" /> |
865 | 865 | </ant> |
866 | 866 | </target> |
|
878 | 878 |
|
879 | 879 | <!-- Not part of the "clean" target processing. Used by ?? --> |
880 | 880 | <target name="real-clean"> |
881 | | - <antcall target="fxjdi-clean" inheritall="false"/> |
| 881 | + <antcall target="visagejdi-clean" inheritall="false"/> |
882 | 882 | <antcall target="clean"/> |
883 | 883 | <antcall target="visagedoc-clean" inheritall="true"/> |
884 | 884 | <antcall target="langref-clean" inheritall="true"/> |
|
1125 | 1125 | <echo>java -cp "${run.classpath.with.dist.jar}" ${main.class}</echo> |
1126 | 1126 | </target> |
1127 | 1127 |
|
1128 | | - <target name="jar" depends="init,compile,-do-jar-with-manifest,-do-jar-without-manifest,-do-jar-with-mainclass,-do-jar-with-libraries,fxjdi" description="Build JAR."> |
| 1128 | + <target name="jar" depends="init,compile,-do-jar-with-manifest,-do-jar-without-manifest,-do-jar-with-mainclass,-do-jar-with-libraries,visagejdi" description="Build JAR."> |
1129 | 1129 | </target> |
1130 | 1130 | <!-- |
1131 | 1131 | ================= |
|
1515 | 1515 | --> |
1516 | 1516 |
|
1517 | 1517 |
|
1518 | | - <target name="-do-clean" depends="visagedoc-clean,fxjdi-clean,langref-clean,launcher-clean"> |
| 1518 | + <target name="-do-clean" depends="visagedoc-clean,visagejdi-clean,langref-clean,launcher-clean"> |
1519 | 1519 | <delete quiet="true" dir="${build.dir}"/> |
1520 | 1520 | <delete quiet="true" dir="${dist.dir}"/> |
1521 | 1521 | <delete quiet="true" file="cobertura.ser" /> |
|
0 commit comments