1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175
|
<?xml version="1.0"?>
<!--
! Datanode build file
!
! This file describes how to build and install Datanode from
! source and binary releases. Datanode is a class library
! (i.e. provides an API and related documentation).
!
! The main targets are:
!
! build -> compiles the source code
! clean -> cleans up build and dist products
! deinstall -> undo the install target
! dist -> creates the local binary distribution
! export -> creates the full distribution archives
! export-runonly -> creates the runonly distribution archives
! export-source -> creates the source distribution archives
! install -> installs the distribution
! install-runonly -> installs a runonly distribution
! jars -> creates the package jar file(s)
! javadocs -> creates the package API documentation
! javadoc-sources -> make source files for release API documention
! test -> runs JUnit test cases
!
! Authors:
! Peter W. Draper (17-SEP-2002)
!
! Version:
! $Id$
!
!-->
<project name="Build file for Datanode" default="build" basedir=".">
<!-- If either or both of these files exist then any properties
! contained within them will override those defined here. -->
<property file="${user.home}/.stardev.properties"/>
<property file=".properties"/>
<!-- Properties will also be set for all environment variables
! (PATH becomes "env.PATH"), generally not a good
! idea as names are OS dependent -->
<property environment="env"/>
<!--
! =================
! Global Properties
! =================
!-->
<!-- Directory for the Starlink installation (usually /star/java)-->
<property name="star.dir" value="${basedir}/../../"/>
<!-- Directory to install into (install target, usually /star/java)-->
<property name="star.install" value="${star.dir}"/>
<!-- Directory that contains the Starlink jar tree -->
<property name="star.jar.dir" value="${star.dir}/lib"/>
<!-- Directory that contains the locally built sources (usually
! /star/java/source for full distribution) -->
<property name="star.build.dir" value="${basedir}/../"/>
<!-- Directory that any archives should be placed into. The local
! directory by default -->
<property name="star.archive.dir" value="${basedir}"/>
<!-- URL and package-list for linking against full Java docs -->
<property name="javaapi.url" value="https://docs.oracle.com/javase/8/docs/api/"/>
<property name="javaapi.lis" value="${star.build.dir}/src/docs/javaapi/"/>
<!--
! ================
! Local Properties
! ================
!-->
<!-- Define the package name and current versions -->
<property name="Name" value="Datanode"/>
<property name="name" value="datanode"/>
<property name="version" value="1.0"/>
<!-- The Java package name -->
<property name="package.name" value="uk.ac.starlink.datanode"/>
<!-- Compilation options -->
<property name="debug" value="true"/>
<property name="deprecation" value="false"/>
<property name="optimize" value="true"/>
<property name="source.version" value="1.6"/>
<!-- Extra task options, if any -->
<property name="chmod.fail" value="false"/>
<!-- JUnit test options -->
<property name="junit.fork" value="false"/>
<property name="junit.filtertrace" value="on"/>
<property name="junit.summary" value="no"/>
<property name="junit.assertions" value="-enableassertions"/>
<!-- Directory containing the package source -->
<property name="src.dir" value="${basedir}/src"/>
<!-- Directory containing the java source (top of the namespace)-->
<property name="java.dir" value="${src.dir}/main"/>
<!-- Directory containing miscellaneous docs -->
<property name="src.docs" value="${src.dir}/docs"/>
<!-- Directory containing any script required to execute or setup package-->
<property name="script.dir" value="${src.dir}/script"/>
<!-- Directory containing any third-party jars that should be
! distributed (normally these would belong in a proper package)-->
<property name="src.jars.dir" value="${src.dir}/lib"/>
<!-- Directory containing any JNI source code -->
<property name="src.jni.dir" value="${src.dir}/jni"/>
<!-- Directories for JUnit test cases and related files -->
<property name="tests.dir" value="${src.dir}/testcases"/>
<property name="tests.etc.dir" value="${src.dir}/etc/testcases"/>
<!-- File types that should not be passed through a filterchain when
! copying -->
<property name="unfiltered.files" value="**/*.gif,**/*.jpg,**/*.ico"/>
<!-- Directories to receive the various build components -->
<property name="build.dir" value="${basedir}/build"/>
<property name="build.classes" value="${build.dir}/classes"/>
<property name="build.java" value="${build.dir}/java"/>
<property name="build.tests" value="${build.dir}/testcases"/>
<property name="build.tests.javadocs" value="${build.dir}/javadocs.test/"/>
<!-- Distribution directories, these are created in the current
! directory, unless dist.dir is redefined. Files that will be
! installed under a package name prefixed directory should be
! placed in the ".pkg" variants. Note some build components may
! be placed directly here for efficiency-->
<property name="dist.dir" value="${basedir}"/>
<property name="dist.bin" value="${dist.dir}/bin"/>
<property name="dist.lib" value="${dist.dir}/lib"/>
<property name="dist.src" value="${dist.dir}/src"/>
<property name="dist.docs" value="${dist.dir}/docs"/>
<property name="dist.etc" value="${dist.dir}/etc"/>
<property name="dist.bin.pkg" value="${dist.bin}/${name}"/>
<property name="dist.lib.pkg" value="${dist.lib}/${name}"/>
<property name="dist.docs.pkg" value="${dist.docs}/${name}"/>
<property name="dist.etc.pkg" value="${dist.etc}/${name}"/>
<property name="dist.javadocs" value="${dist.docs}/${name}/javadocs"/>
<!-- Any achitecture-specific files (shared libraries) will be placed in
! an appropriate subdirectory of dist.lib -->
<property name="dist.lib.arch" value="${dist.lib}/${os.arch}"/>
<!-- Version for zipped/tarred export files. -->
<property name="dist.version" value="${name}-${version}"/>
<!-- File for logging the files that are copied by the install target -->
<property name="install.log" value=".${name}.install"/>
<property name="install.overwrite" value="true"/>
<!-- Local webstart properties. Note this needs a local keystore,
! assumed to be called keystore in $star.build.dir, .. by
! default. -->
<property name="webstart.codebase"
value="http://starlink.jach.hawaii.edu/starjava/lib"/>
<property name="webstart.alias" value="Starlink-UK"/>
<property name="webstart.keystore" value="${star.build.dir}/keystore"/>
<property name="webstart.keypass" value="Vroomfondel"/>
<property name="webstart.storepass" value="Majikthise"/>
<property name="webstart.starlink_logo" value="starlink_logo_med.gif"/>
<property name="home.page" value="http://www.starlink.ac.uk/treeview/"/>
<!--
! =========
! CLASSPATH
! =========
!-->
<!-- Installed jar files.
!
! Name all the installed jar files of other packages that we depend on.
!
! When compiling under Java 1.4 these will be used to produce a full
! classpath that is equivalent to that generated when these are
! referenced as optional bundled packages by the JVM.
! When compiling under Java 1.5 (and probably later) this is just
! a simple path of these jar files, as the expansion to a full optional
! bundled package classpath is performed by the compiler
!
! What that all means is that the manifest classpaths of these jar files
! are honoured, the plain compiler pre Java 1.5 didn't do that. When Java
! 1.4 is no longer used the extclasspath type can be replaced by a simple
! path.
!-->
<extclasspath id="installed.classpath">
<!-- Array -->
<pathelement location="${star.jar.dir}/array/array.jar"/>
<!-- Table -->
<pathelement location="${star.jar.dir}/table/table.jar"/>
<!-- JNIAST -->
<pathelement location="${star.jar.dir}/jniast/jniast.jar"/>
<!-- TAMFITS -->
<pathelement location="${star.jar.dir}/tamfits/tamfits.jar"/>
<!-- FITS -->
<pathelement location="${star.jar.dir}/fits/fits.jar"/>
<!-- JNIHDS -->
<pathelement location="${star.jar.dir}/jnihds/hds.jar"/>
<!-- HDS -->
<pathelement location="${star.jar.dir}/hds/hds.jar"/>
<!-- NDX -->
<pathelement location="${star.jar.dir}/ndx/ndx.jar"/>
<!-- VOTable -->
<pathelement location="${star.jar.dir}/votable/votable.jar"/>
<!-- Util -->
<pathelement location="${star.jar.dir}/util/util.jar"/>
</extclasspath>
<!-- Local build system jar files.
!
! Name all the jar files of other packages that we depend on, which have
! not been installed (should be same packages as in installed.classpath).
!-->
<extclasspath id="built.jarpath">
<pathelement
location="${star.build.dir}/array/lib/array/array.jar"/>
<pathelement
location="${star.build.dir}/table/lib/table/table.jar"/>
<pathelement
location="${star.build.dir}/jniast/lib/jniast/jniast.jar"/>
<pathelement
location="${star.build.dir}/tamfits/lib/tamfits/tamfits.jar"/>
<pathelement
location="${star.build.dir}/jnihds/lib/jnihds/jnihds.jar"/>
<pathelement
location="${star.build.dir}/hds/lib/hds/hds.jar"/>
<pathelement
location="${star.build.dir}/ndx/lib/ndx/ndx.jar"/>
<pathelement
location="${star.build.dir}/votable/lib/votable/votable.jar"/>
<pathelement
location="${star.build.dir}/util/lib/util/util.jar"/>
</extclasspath>
<!-- Find all local third party jars files.
!
! Normally these will be kept in their own third party package, but may
! be kept here temporarily, say if there are version conflicts that
! cannot be addressed. They are installed with the package jar files and
! should be entered into the main jar file manifest.
!-->
<path id="package.jars">
<fileset dir="${src.jars.dir}">
<include name="*.jar"/>
</fileset>
</path>
<!-- Create the local build system CLASSPATH.
!
! Create the classpath used when building this package as part of a full
! build system without any dependency on any installed or external jar
! files.
!
! Classes compiled in the local build tree will be in the "build/classes"
! part of each package. Third party packages, have do not have any source
! code, just jar files, will have their jar files in their "dist"
! directories (usually lib/{package_name}).
!
! So the full built classpath is created by constructing a path
! consisting of:
!
! - all third party jar files in this package
! - all build/classes directories in the local build system (these
! will have the most recent class files)
! - all jar files named in built.jarpath, i.e. named local build
! system jar files (these can be normal packages in the "dist" state
! or third party packages)
! - all jar files in the "dist" directories of all packages in the
! local build system (these are necessary to make sure that the jar
! files in the previous part have their dependencies fulfilled,
! without having them all installed)
!-->
<path id="built.classpath">
<!-- Third party jars held by this package -->
<path refid="package.jars"/>
<!-- All classes in the local build system -->
<dirset dir="${star.build.dir}">
<include name="*/build/classes"/>
</dirset>
<!-- Directly dependent jars in the local build system -->
<path refid="built.jarpath"/>
<!-- All "dist" jar files to make sure everything is resolved, including
! relative URLs of the local packages, without installation -->
<fileset dir="${star.build.dir}">
<include name="*/lib/*/*.jar"/>
</fileset>
</path>
<!-- User-defined CLASSPATH.
!
! This is set by the property "extra.class.path" (which can be defined
! locally using say -Dextra.class.path=$CLASSPATH on the command line
! or by setting the property in either of the properties files.-->
<property name="extra.class.path" value=""/>
<path id="local.classpath" path="${extra.class.path}"/>
<!-- Create the full CLASSPATH used during compilation.
!
! This is created from the user-defined classpath, followed by the
! classpath for building against the local system, followed by the
! classpath for building against an installed system.
!-->
<path id="classpath">
<path refid="local.classpath"/>
<path refid="built.classpath"/>
<path refid="installed.classpath"/>
</path>
<!-- Create the JUnit tests CLASSPATH.
!
! Note that in addition to the build/classes and build/tests directory
! we also add tests.dir and tests.etc.dir so that resources may be
! located there. The full classpath is also used.
!-->
<path id="tests-classpath">
<pathelement location="${build.classes}"/>
<pathelement location="${build.tests}"/>
<pathelement location="${tests.dir}"/>
<pathelement location="${tests.etc.dir}"/>
<path refid="classpath"/>
</path>
<!-- Turn this path into a string which is passed to the tests -->
<property name="tests-classpath.value" refid="tests-classpath"/>
<!--
! ============
! Library path
! ============
! Used by test targets for locating native libraries.
!-->
<path id="tests-libpath.id">
<pathelement path="${java.library.path}"/>
<pathelement location="${star.jar.dir}/${os.arch}"/>
</path>
<property name="tests-libpath" refid="tests-libpath.id"/>
<!--
! =========================================
! Check availability of direct dependencies
! =========================================
!
! Minimalist check of the required dependencies so that the build will
! not proceed if some basic dependencies are not present on the
! classpath. Optional components could also be checked here.
!-->
<target name="check_packages"
depends="really_check_packages"
unless="runonly.install">
<!-- Need JUnit for testcases, not essential -->
<available property="junit.present"
classpathref="classpath"
classname="junit.framework.TestCase"/>
</target>
<target name="really_check_packages"
if="but_its_too_slow">
<!-- Need Array -->
<available property="array.present"
classpathref="classpath"
classname="uk.ac.starlink.array.NDArray"/>
<fail message="No Array available" unless="array.present"/>
<!-- Need Table -->
<available property="table.present"
classpathref="classpath"
classname="uk.ac.starlink.table.StarTable"/>
<fail message="No Table available" unless="table.present"/>
<!-- Need JNIAST -->
<available property="jniast.present"
classpathref="classpath"
classname="uk.ac.starlink.ast.Grf"/>
<fail message="No JNIAST available" unless="jniast.present"/>
<!-- Need TAMFITS -->
<available property="tamfits.present"
classpathref="classpath"
classname="nom.tam.fits.Header"/>
<fail message="No TAMFITS available" unless="tamfits.present"/>
<!-- Need FITS -->
<available property="fits.present"
classpathref="classpath"
classname="uk.ac.starlink.fits.MappedFile"/>
<fail message="No FITS available" unless="fits.present"/>
<!-- Need JNIHDS -->
<available property="jnihds.present"
classpathref="classpath"
classname="uk.ac.starlink.hds.HDSObject"/>
<fail message="No JNIHDS available" unless="jnihds.present"/>
<!-- Need HDS -->
<available property="hds.present"
classpathref="classpath"
classname="uk.ac.starlink.hds.ArrayStructure"/>
<fail message="No HDS available" unless="hds.present"/>
<!-- Need NDX -->
<available property="ndx.present"
classpathref="classpath"
classname="uk.ac.starlink.ndx.Ndx"/>
<fail message="No NDX available" unless="ndx.present"/>
<!-- Need VOTable -->
<available property="votable.present"
classpathref="classpath"
classname="uk.ac.starlink.votable.VOTable"/>
<fail message="No VOTable available" unless="votable.present"/>
<!-- Need Util -->
<available property="util.present"
classpathref="classpath"
classname="uk.ac.starlink.util.TestCase"/>
<fail message="No Util available" unless="util.present"/>
</target>
<!--
! =================
! Prepare the build
! =================
!
! Do any jobs that are required before any other target can proceed.
!-->
<target name="prepare">
<tstamp>
<format property="year" pattern="yyyy"/>
</tstamp>
<!-- This is a filterchain that can be used to copy-edit files
! that require the package version, current date and/or time -->
<filterchain id="filters">
<replacetokens>
<token key="VERSION" value="${version}"/>
<token key="DATE" value="${TODAY}"/>
<token key="TIME" value="${TSTAMP}"/>
</replacetokens>
</filterchain>
</target>
<!--
! ==============
! Build the code
! ==============
!
! The results of the compilation are placed in the build.classes
! directory. Other files that are also needed in the classes tree
! (i.e. resources like images and property files) should also be
! copied into place here.
!-->
<target name="build"
depends="prepare, check_packages"
unless="runonly.install"
description="-> compiles the source code">
<mkdir dir="${build.classes}"/>
<javac srcdir="${java.dir}"
destdir="${build.classes}"
debug="${debug}"
deprecation="${deprecation}"
source="${source.version}"
optimize="${optimize}">
<classpath refid="classpath"/>
<include name="**/*.java"/>
</javac>
<!-- Copy extra files that should live with packages classes
! (i.e. are discovered using "getResource()"). -->
<copy todir="${build.classes}">
<fileset dir="${src.dir}/resources"/>
</copy>
<!-- Local third party jars, if any. Copy straight into
! distribution directories to save on unnecessary copies and to
! make these available for resolution by other locally built
! packages that are using this one -->
<mkdir dir="${dist.lib.pkg}"/>
<copy todir="${dist.lib.pkg}">
<fileset dir="${src.jars.dir}"/>
</copy>
</target>
<!--
! ============================
! Create the package jar files
! ============================
!
! Creates a jar file from the build.classes directory tree. If
! jars of sub-components are also required these should be also
! created here. Note this requires a manifest file that defines the
! jars that we directly depend on (using relative URLs). The jar
! files should be placed directly in the distribution directories.
!-->
<target name="jars"
depends="build"
unless="runonly.install"
description="-> creates the package jar file(s)">
<mkdir dir="${dist.lib.pkg}"/>
<jar destfile="${dist.lib.pkg}/${name}.jar"
basedir="${build.classes}">
<manifest>
<attribute name="Built-By" value="${user.name}"/>
<attribute name="Class-Path" value="${jar.class.path}"/>
</manifest>
</jar>
<!-- Sign all jar files -->
<antcall target="signjars"/>
</target>
<target name="signjars" if="sign.jars">
<signjar alias="${webstart.alias}"
keystore="${webstart.keystore}"
keypass="${webstart.keypass}"
storepass="${webstart.storepass}">
<fileset dir="${dist.lib}" includes="**/*.jar **/*.zip"/>
</signjar>
</target>
<!--
! ========================================
! Make package JNLP file for Java webstart
! ========================================
!-->
<target name="webstart"
description="-> create webstart descriptor files">
<!-- Create a webstart JNLP file for this class library.
! This goes into "dist.lib" -->
<mkdir dir="${dist.lib}"/>
<jnlp toFile="${dist.lib}/${name}.jnlp" href="${name}.jnlp"
codebase="${webstart.codebase}">
<information>
<title>Datanode - node infrastructure for Treeview</title>
<vendor>Starlink UK</vendor>
<homepage href="${home.page}"/>
<icon href="${webstart.starlink_logo}"/>
<description>"Starlink Datanode - Webstart edition"</description>
<offline_allowed/>
</information>
<security>
<all_permissions/>
</security>
<resources>
<j2se version="1.6+"/>
<!-- Define the main library jar file -->
<jar href="${name}/${name}.jar"/>
<!-- And dependencies -->
<fileset dir="${dist.lib}" includes="**/*.jar **/*.zip"
excludes="${name}/${name}.jar"/>
<extension name="UTIL" href="util.jnlp"/>
<extension name="ARRAY" href="array.jnlp"/>
<extension name="TABLE" href="table.jnlp"/>
<extension name="JNIAST" href="jniast.jnlp"/>
<extension name="TAMFITS" href="tamfits.jnlp"/>
<extension name="FITS" href="fits.jnlp"/>
<extension name="JNIHDS" href="jnihds.jnlp"/>
<extension name="HDS" href="hds.jnlp"/>
<extension name="NDX" href="ndx.jnlp"/>
<extension name="VOTABLE" href="votable.jnlp"/>
<extension name="CONNECT" href="connect.jnlp"/>
<extension name="ASTROGRID" href="astrogrid.jnlp"/>
<extension name="SRB" href="srb.jnlp"/>
</resources>
<!-- This is a component -->
<component_desc/>
</jnlp>
</target>
<!--
! =================================
! Configures the local distribution
! =================================
!
! Completes the creation of the local distribution into the
! directory "dist.dir" (usually the current directory).
! Installations and exports are based on the state of this
! distribution, so it must be performed before installation or
! export. If the "runonly.install" parameter is set then this
! target is skipped (needed for releases that do not have
! source). Much of the work of getting the distribution
! directories into the correct state is performed by the dependency
! targets.
!-->
<target name="dist"
depends="build,jars,javadocs,webstart"
unless="runonly.install"
description="-> configures the local binary distribution">
<!-- Make sure all the distribution directories exist -->
<mkdir dir="${dist.dir}"/>
<!-- <mkdir dir="${dist.bin.pkg}"/> -->
<mkdir dir="${dist.lib.pkg}"/>
<!-- <mkdir dir="${dist.docs.pkg}"/> -->
<!-- <mkdir dir="${dist.etc.pkg}"/> -->
<!-- Copy any configuration/helper scripts etc. -->
<!--
<copy todir="${dist.bin.pkg}">
<fileset dir="${script.dir}/" />
</copy>
-->
<!-- Copy extra documentation, note doesn't include javadocs these
! are generated from the source-->
<!--
<copy todir="${dist.docs.pkg}">
<fileset dir="${src.docs}"/>
</copy>
-->
<!-- Set permissions on contents of distribution directories -->
<chmod perm="ugo+rx" dir="${dist.dir}" type="dir" includes="**"
failonerror="${chmod.fail}"/>
<chmod perm="ugo+r" dir="${dist.dir}" type="file" includes="**"
failonerror="${chmod.fail}"/>
<!--
<chmod perm="ugo+x" type="file" failonerror="${chmod.fail}">
<fileset dir="${dist.bin}"/>
</chmod>
-->
</target>
<!--
! ========================
! Create the full releases
! ========================
!
! Creates the full "zip", "tar" and "bzip" archives of the
! products of the "dist" target and the source directory.
! The archives are designed to be unpacked such that the resultant
! directory layout can be either used as a local distribution, or
! installed into a Starlink tree (installation requires the
! Starlink modified version of ANT, use as a local distribution
! may need special handling of the extension path). This version
! can also be used to rebuild the package from source.
!
! The archive names are ${dist.version}.<ext>.
!-->
<target name="export"
description="-> creates the full distribution archives">
<antcall target="create_archives">
<param name="source.required" value="true"/>
<param name="binary.required" value="true"/>
<param name="archive.name" value="${dist.version}"/>
</antcall>
</target>
<!--
! ==========================
! Create the source releases
! ==========================
!
! Creates the source only "zip", "tar" and "bzip" archives.
! These can be used to rebuild the package (requires the Starlink
! modified version of ANT).
!
! The archive names are ${dist.version}-src.<ext>.
!-->
<target name="export-source"
description="-> creates the source distribution archives">
<antcall target="create_archives">
<param name="source.required" value="true"/>
<param name="archive.name" value="${dist.version}-src"/>
</antcall>
</target>
<!--
! ===========================
! Create the runonly releases
! ===========================
!
! Creates the runonly "zip", "tar" and "bzip" archives of the
! products of the "dist" target. The archives are designed to be
! unpacked such that the resultant directory layout can be either
! used as a local distribution, or installed into a Starlink tree
! (installation requires the Starlink modified version of ANT).
!
! The archive names are ${dist.version}-bin.<ext>.
!-->
<target name="export-runonly"
description="-> creates the runonly distribution archives">
<antcall target="create_archives">
<param name="binary.required" value="true"/>
<param name="archive.name" value="${dist.version}-bin"/>
</antcall>
</target>
<!--
! Create release archives of the various types required. Use this
! by an <antcall> and set the property "archive.name" to define what
! name to use for the outfile files. The archives are written into
! the directory ${star.archive.dir} (the local directory by default).
!
! If the property "binary.required" is set then the files needed
! for a run-only release are included and if "source.required" is
! defined the source code is also included.
!-->
<target name="create_archives"
depends="dist">
<mkdir dir="${star.archive.dir}"/>
<zip destfile="${star.archive.dir}/${archive.name}.zip">
<!-- All releases have the documentation and build file -->
<zipfileset dir="${dist.docs}" prefix="${name}/docs"/>
<zipfileset dir="${dist.dir}" includes="build.xml" prefix="${name}"/>
<zipfileset dir="${dist.bin}" prefix="${name}/bin">
<include name="**" if="binary.required"/>
</zipfileset>
<zipfileset dir="${dist.lib}" prefix="${name}/lib">
<include name="**" if="binary.required"/>
</zipfileset>
<zipfileset dir="${dist.etc}" prefix="${name}/etc">
<include name="**" if="binary.required"/>
</zipfileset>
<zipfileset dir="${src.dir}" prefix="${name}/src">
<include name="**" if="source.required"/>
<!-- Exclude local development support from distribution-->
<exclude name="local/**" if="source.required"/>
</zipfileset>
</zip>
<!-- Note: creating a tar file with empty directories doesn't
! work, so the directory structure may be incomplete -->
<tar longfile="gnu" destfile="${archive.name}.tar">
<!-- All releases have the documentation and build file -->
<tarfileset dir="${dist.docs}" prefix="${name}/docs"/>
<tarfileset dir="${dist.dir}" prefix="${name}">
<include name="build.xml"/>
</tarfileset>
<tarfileset dir="${dist.bin}" prefix="${name}/bin">
<include name="**" if="binary.required"/>
</tarfileset>
<tarfileset dir="${dist.lib}" prefix="${name}/lib">
<include name="**" if="binary.required"/>
</tarfileset>
<tarfileset dir="${dist.etc}" prefix="${name}/etc">
<include name="**" if="binary.required"/>
</tarfileset>
<tarfileset dir="${src.dir}" prefix="${name}/src">
<include name="**" if="source.required"/>
<exclude name="local/**" if="source.required"/>
</tarfileset>
</tar>
<gzip zipfile="${star.archive.dir}/${archive.name}.tar.gz"
src="${archive.name}.tar"/>
<bzip2 zipfile="${star.archive.dir}/${archive.name}.tar.bz2"
src="${archive.name}.tar"/>
<delete file="${archive.name}.tar"/>
</target>
<!--
! ============================================
! Cleans up build and distribution directories
! ============================================
!-->
<target name="clean"
description="-> cleans up build and dist products">
<delete dir="${build.dir}"/>
<delete dir="${dist.bin}"/>
<delete dir="${dist.lib}"/>
<delete dir="${dist.docs}"/>
<delete dir="${dist.etc}"/>
</target>
<!--
! ================================
! Install into the "Starlink" tree
! ================================
!
! Installs the "dist" target products into another set of
! directories.
!
! An installed system is potentially "undoable" as the copied names
! and package-specific directories are logged to "${install.log}".
!-->
<target name="install"
depends="dist"
description="-> installs distribution">
<!-- Installation based directories (based on "star.install")-->
<property name="star.bin" value="${star.install}/bin"/>
<property name="star.lib" value="${star.install}/lib"/>
<property name="star.etc" value="${star.install}/etc"/>
<property name="star.docs" value="${star.install}/docs"/>
<property name="star.bin.pkg" value="${star.bin}/${name}"/>
<property name="star.lib.pkg" value="${star.lib}/${name}"/>
<property name="star.etc.pkg" value="${star.etc}/${name}"/>
<property name="star.docs.pkg" value="${star.docs}/${name}"/>
<property name="star.lib.arch" value="${star.lib}/${os.arch}"/>
<mkdir dir="${star.install}"/>
<!-- <mkdir dir="${star.bin.pkg}"/> -->
<mkdir dir="${star.lib.pkg}"/>
<!-- <mkdir dir="${star.etc.pkg}"/> -->
<!-- <mkdir dir="${star.docs.pkg}"/> -->
<!-- Note: if you uncomment any of the following (reasonable since
! the class library may not have any scripts), then make sure
! that the first loggedcopy has logfileAppend="false" so that
! the copy logfile is initialised -->
<loggedcopy todir="${star.lib}"
logfile="${install.log}"
overwrite="${install.overwrite}"
logfileAppend="false">
<fileset dir="${dist.lib}">
<include name="**/*.jnlp"/>
<include name="**/*.jar"/>
<include name="**/*.zip"/>
</fileset>
</loggedcopy>
<!--
<loggedcopy todir="${star.bin}"
logfile="${install.log}"
overwrite="${install.overwrite}"
logfileAppend="true">
<fileset dir="${dist.bin}"/>
</loggedcopy>
-->
<chmod perm="ugo+rx" failonerror="${chmod.fail}">
<fileset dir="${star.bin}">
<present targetdir="${dist.bin}" present="both"/>
</fileset>
</chmod>
<!-- Also remove the package-specific directory.
! Note exact format is required.-->
<echo file="${install.log}" append="true">${star.lib.pkg}
</echo>
<loggedcopy todir="${star.docs}"
logfile="${install.log}"
overwrite="${install.overwrite}"
logfileAppend="true">
<fileset dir="${dist.docs}" excludes="${unfiltered.files}"/>
<filterchain refid="filters"/>
</loggedcopy>
<loggedcopy todir="${star.docs}" filtering="false"
logfile="${install.log}"
overwrite="${install.overwrite}"
logfileAppend="true">
<fileset dir="${dist.docs}" includes="${unfiltered.files}"/>
</loggedcopy>
<!-- Also remove the package-specific directory-->
<echo file="${install.log}" append="true">${star.docs.pkg}
</echo>
</target>
<!--
! ========================================
! Install runonly into the "Starlink" tree
! ========================================
!
! Do an install using only the contents of a binary release (a
! source-free runonly system).
!-->
<target name="install-runonly"
description="-> install a runonly distribution into Starlink tree">
<!-- Make sure that the expected file structure exists, some
of these files can be missing if originally empty -->
<mkdir dir="${dist.dir}"/>
<mkdir dir="${dist.bin.pkg}"/>
<mkdir dir="${dist.lib.pkg}"/>
<mkdir dir="${dist.docs.pkg}"/>
<mkdir dir="${dist.etc.pkg}"/>
<!-- Do normal install, but with many targets switched off-->
<antcall target="install">
<param name="runonly.install" value="true"/>
<param name="javadoc.notrequired" value="true"/>
</antcall>
</target>
<!--
! ===================================
! De-install from the "Starlink" tree
! ===================================
!
! Uses the content of the "${install.log}" to remove the files
! that were copied into place by the install target. If this fails
! then hopefully the log file will not be deleted!
!-->
<target name="deinstall"
description="-> undo the install target">
<available file="${install.log}" property="install.log.present"/>
<antcall target="real_deinstall"/>
</target>
<!-- Real deinstall target. Only activated if "install.log.present"
! is defined -->
<target name="real_deinstall"
if="install.log.present">
<loadfile property="files" srcFile="${install.log}"/>
<listdelete>
<filelist dir="/" files="${files}"/>
</listdelete>
<delete file="${install.log}"/>
</target>
<!--
! =============================
! Creates the API documentation
! =============================
!
! Create documentation from the Java sources. Additional
! documentation is kept in the ${src.docs} directory.
!-->
<target name="javadocs"
depends="prepare,javadoc_check"
unless="javadoc.notrequired"
description="-> creates the API documentation">
<mkdir dir="${dist.javadocs}"/>
<javadoc useexternalfile="yes"
destdir="${dist.javadocs}"
author="true"
version="true"
locale="en"
windowtitle="${Name} API"
doctitle="${Name}"
defaultexcludes="yes"
source="${source.version}"
classpathref="classpath">
<arg value="-Xdoclint:all,-missing"/>
<!-- Get a list of directories that name all the potential
! java packages -->
<packageset dir="${java.dir}" defaultexcludes="yes">
<include name="**"/>
</packageset>
<!-- Link to the full Java API at SUNs website -->
<link offline="true" href="${javaapi.url}"
packagelistLoc="${javaapi.lis}"/>
<group title="${Name} API" packages="${package.name}*"/>
<bottom><![CDATA[<i>Copyright © ${year} Central Laboratory of the Research Councils. All Rights Reserved.<i>]]></bottom>
</javadoc>
</target>
<!-- This checks if the javadocs are up to date with respect to the
! java source, if so then the "javadoc.notrequired" variable is
! set true. Note this is check is not performed if
! javadoc.notrequired is already set (by .properties) -->
<target name="javadoc_check"
unless="javadoc.notrequired">
<uptodate property="javadoc.notrequired"
targetfile="${dist.javadocs}/packages.html" >
<srcfiles dir= "${java.dir}" includes="**/*.java"/>
</uptodate>
</target>
<!--
! =========================================
! Makes the API java source files available
! =========================================
!
! The full API documentation is created from all the various
! packages (of which this package is just one). This target makes
! the source code that should be used in the full public API
! available in a special part of the build tree so that it can be
! automatically discovered. This method works around two potential
! problems, not all source code the in src/main directories should be
! in the API docs, and it's not possible to make this distinction
! easily outside this package (cannot pass out a fileset), plus
! some code is generated, so cannot be located by scanning the
! src/main tree. When javadocs can be generated incrementally this
! arrangement should be reworked to generate whatever is needed as
! part of the javadocs target.
!-->
<target name="javadoc-sources"
description="-> make source files for release API documention">
<mkdir dir="${build.java}"/>
<!-- Copy and/or generate the source to be included when creating
! the full Starlink API javadocs-->
<copy todir="${build.java}">
<fileset dir="${java.dir}" defaultexcludes="yes">
<exclude name="**/README"/>
</fileset>
</copy>
</target>
<!--
! =================
! Compile testcases
! =================
!-->
<target name="compile-tests"
depends="build"
if="junit.present">
<mkdir dir="${build.tests}"/>
<javac srcdir="${tests.dir}"
destdir="${build.tests}"
debug="${debug}"
source="${source.version}"
deprecation="${deprecation}" >
<classpath refid="tests-classpath"/>
</javac>
</target>
<!--
! ============
! Run testcase
! ============
!-->
<target name="test"
description="-> no tests here - use tests in Treeview package"/>
<!-- <target name="test" depends="run-tests"/> -->
<target name="run-tests"
depends="compile-tests"
if="junit.present">
<junit printsummary="${junit.summary}" haltonfailure="yes"
filtertrace="${junit.filtertrace}"
fork="${junit.fork}">
<classpath refid="tests-classpath"/>
<jvmarg value="${junit.assertions}"/>
<sysproperty key="build.tests" value="${build.tests}"/>
<sysproperty key="tests-classpath.value"
value="${tests-classpath.value}"/>
<sysproperty key="java.library.path" value="${tests-libpath}"/>
<sysproperty key="java.awt.headless" value="${java.awt.headless}"/>
<formatter type="brief" usefile="false"/>
<batchtest>
<fileset dir="${tests.dir}">
<include name="**/JUnit*"/>
</fileset>
</batchtest>
</junit>
</target>
<target name="run-single-test"
if="testcase"
depends="compile-tests"
description="-> runs the single unit test defined in the testcase property">
<junit printsummary="${junit.summary}"
haltonfailure="yes"
fork="${junit.fork}"
filtertrace="${junit.filtertrace}">
<sysproperty key="hdx.home" value="${hdx.home}"/>
<sysproperty key="build.tests" value="${build.tests}"/>
<sysproperty key="tests-classpath.value"
value="${tests-classpath.value}"/>
<sysproperty key="java.library.path" value="${tests-libpath}"/>
<sysproperty key="java.awt.headless" value="${java.awt.headless}"/>
<classpath refid="tests-classpath"/>
<jvmarg value="${junit.assertions}"/>
<formatter type="plain" usefile="false"/>
<test name="${testcase}"/>
</junit>
</target>
<!--
! Get a DTD for this build file. Documentation suggests may be incomplete!
!
! Use:
!
! <!DOCTYPE project PUBLIC "-//ANT//DTD project//EN" "./project.dtd">
!
! at head of document to include.
!-->
<target name="dtd">
<antstructure output="project.dtd"/>
</target>
</project>
|