JAL-1432 updated copyright notices
[jalview.git] / build.xml
1 <?xml version="1.0"?>
2 <!--
3  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.0b1)
4  * Copyright (C) 2014 The Jalview Authors
5  * 
6  * This file is part of Jalview.
7  * 
8  * Jalview is free software: you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License 
10  * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
11  *  
12  * Jalview is distributed in the hope that it will be useful, but 
13  * WITHOUT ANY WARRANTY; without even the implied warranty 
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
15  * PURPOSE.  See the GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
18  * The Jalview Authors are detailed in the 'AUTHORS' file.
19 -->
20 <project name="jalviewX" default="usage" basedir=".">
21   <!-- we use jalopy to format our sources -->
22   <taskdef name="jalopy" classname="de.hunsicker.jalopy.plugin.ant.AntPlugin">
23     <classpath>
24       <fileset dir="utils/jalopy/lib">
25         <include name="*.jar" />
26       </fileset>
27     </classpath>
28   </taskdef>
29
30   <target name="help" depends="usage" />
31   <target name="usage">
32     <echo message="~~~Jalview Ant build.xml Usage~~~~" />
33     <echo message="Targets include:" />
34     <echo message="usage - default target, displays this message" />
35     <echo message="buildindices - generates JavaHelpSearch from the help files" />
36     <echo message="build - compiles all necessary files for Application" />
37     <echo message="makedist - compiles and places all necessary jar files into directory dist" />
38     <echo message="makefulldist - signs all jar files and builds jnlp file for full distribution" />
39     <echo message="              this needs a keystore and key. See docs/building.html for more information." />
40     <echo message="compileApplet - compiles all necessary files for Applet" />
41     <echo message="makeApplet - compiles, then packages and obfuscates the Applet" />
42     <echo message="See docs/building.html and the comments in build file for other targets." />
43     <echo message="note: compile and makeApplet require the property java118.home to be set to point to a java 1.1.8 jdk." />
44     <echo message="Useful -D flags: -Ddonotobfuscate will prevent applet obfuscation" />
45   </target>
46
47
48   <!-- utils is a class path to additional utilities needed for
49     building docs, jars and webstart stuff -->
50   <!--
51         Userdefined build property defaults
52
53         wsdl.server list (plus namespace mapping info ???)  - also want
54                 ... to make this a dynamically generatable property
55         WebStart Location
56         Build location - provide a temporary root for speed
57         jarsigner keystore and info
58         Jakarta and axis classpath ?
59         Default argument for starting Jalview (if it exists).
60
61 -->
62
63   <target name="init">
64     <path id="axis.classpath">
65       <!-->
66       <fileset dir="/usr/local/axis/lib">
67         <include name="**/*.jar" />
68       </fileset>
69       <fileset dir="/usr/local/jakarta-tomcat-5/webapps/axis/WEB-INF/lib">
70         <include name="**/*.jar"/>
71         <include name="*.jar"/>
72       </fileset> -->
73       </path>
74     <!-- Jalview Version String displayed by application on startup and used to check for updates -->
75     <property name="JALVIEW_VERSION" value="DEVELOPMENT" />
76     <!-- 2.4 (VAMSAS)" -->
77     <!-- Include debugging information in javac true or false -->
78     <property name="javac.debug" value="true" />
79
80     <!-- JarSigner Key Store for Webstart Distribution -->
81     <property name="jalview.keystore" value="./keys/.keystore" />
82     <!-- Keystore Password -->
83     <property name="jalview.keystore.pass" value="alignmentisfun" />
84     <!-- Key Name -->
85     <property name="jalview.key" value="jalview" />
86     <!-- Key Password -->
87     <property name="jalview.key.pass" value="alignmentisfun" />
88
89
90
91     <!-- Don't change anything below here unless you know what you are doing! -->
92     <!-- Url path for WebStart in JNLP file -->
93     <property name="WebStartLocation" value="http://www.jalview.org/webstart" />
94     <!-- Webstart Image - looked for in resources/images -->
95     <property name="WebStartImage" value="JalviewLogo_big.png" />
96     <!-- J2SE version needed for webstart launch -->
97     <property name="j2sev" value="1.6+" />
98
99     <!-- Permissions for running Java applets and applications. -->
100     <!-- Defaults are those suitable for deploying jalview webstart www.jalview.org -->
101     <property name="application.codebase" value="*.jalview.org" />
102     <!-- and allowing the applet to be deployed from any URL -->
103     <property name="applet.codebase" value="*" />
104     <property name="applet.caller-codebase" value="${applet.codebase}" />
105
106     <!-- build directory configuration -->
107     <property name="libDir" value="lib" />
108     <property name="resourceDir" value="resources" />
109     <property name="helpDir" value="help" />
110     <property name="docDir" value="doc" />
111     <property name="sourceDir" value="src" />
112     <property name="schemaDir" value="schemas" />
113     <property name="outputDir" value="classes" />
114     <property name="packageDir" value="dist" />
115     <property name="outputJar" value="jalview.jar" />
116     <!-- Jalview Applet JMol Jar Dependency -->
117     <property name="jmolJar" value="JmolApplet-12.2.4.jar" />
118     <property name="jalviewLiteJar" value="jalviewApplet.jar" />
119     <!-- switch to indicate if we should obfuscate jalviewLite -->
120     <!--<property name="donotobfuscate" value="true"/> -->
121
122     <!-- Jalview Web Service Clients - see the comments in 'buildextclients' for details -->
123     <property name="wsdl.File" value="http://www.compbio.dundee.ac.uk/JalviewWS/services/jpred?wsdl" />
124     <property name="wsdl.Files" value="http://www.compbio.dundee.ac.uk/JalviewWS/services/vamsas?wsdlFiles" />
125     <property name="wsdl.MsaWS" value="http://www.compbio.dundee.ac.uk/JalviewWS/services/MuscleWS?wsdl" />
126     <property name="wsdl.MsaWS2" value="http://www.compbio.dundee.ac.uk/JalviewWS/services/ClustalWS?wsdl" />
127     <property name="WSInterf" value="MsaWS" />
128     <property name="wsdl.Namespace" value="vamsas" />
129     <property name="wsdl.ClientNS" value="ext.vamsas" />
130     <!-- the class path for building the application -->
131     <path id="build.classpath">
132       <fileset dir="utils">
133         <include name="*.jar" />
134         <include name="**/*.jar" />
135       </fileset>
136       <fileset dir="${libDir}">
137         <include name="*.jar" />
138         <include name="**/*.jar" />
139       </fileset>
140       <fileset dir="${java.home}/lib">
141         <include name="plugin.jar" />
142       </fileset>
143       <fileset dir="appletlib">
144         <!-- the JmolApplet includes the JmolApplet console and the application javac seems to always try and build all packages 
145                                 -->
146         <include name="${jmolJar}" />
147       </fileset>
148
149     </path>
150     <property name="source.dist.name" value="${basedir}/jalview-src.tar.gz" />
151     <!-- The Location of the java 1.1.8 jdk -->
152     <!--<property name="java118.home" value="C:\Sun\jdk1.1.8" />
153                 -->
154     <property name="java118.home" value="${java.home}" />
155     <!--<property name="applet.jre.tools" value="${java118.home}/lib/classes.zip" />
156                 -->
157     <!-- jre for 1.4 version -->
158     <property name="applet.jre.tools" value="${java.home}/lib/rt.jar" />
159
160     <!-- the classpath for building the 1.1 applet -->
161     <path id="jalviewlite.deps">
162       <fileset dir="${java118.home}">
163         <include name="lib/classes.zip" />
164       </fileset>
165       <fileset dir="${java.home}/lib">
166         <include name="plugin.jar" />
167       </fileset>
168       <pathelement location="appletlib/${jmolJar}" />
169     </path>
170     <!-- default location for outputting javadoc -->
171     <property name="javadocDir" value="${packageDir}/javadoc" />
172   </target>
173
174
175   <taskdef classpath="utils/roxes-ant-tasks-1.2-2004-01-30.jar" resource="com/roxes/tools/ant/taskdefs.properties" />
176   <target name="buildPropertiesFile" depends="init">
177     <tstamp prefix="build">
178       <format property="date" pattern="dd MMMM yyyy" />
179     </tstamp>
180     <properties file="${outputDir}/.build_properties">
181       <header>
182           ---Jalview Build Details---
183         </header>
184       <property name="VERSION" value="${JALVIEW_VERSION}" />
185       <property name="BUILD_DATE" value="${build.date}" />
186     </properties>
187   </target>
188
189
190   <target name="clean" depends="init">
191     <!-- not efficient yet. -->
192     <delete dir="${outputDir}" includes="*,**/*" />
193   </target>
194
195   <target name="distclean" depends="init, clean">
196
197     <echo message="REMOVING ALL BACKUP/AUTOSAVES!" />
198     <delete>
199       <fileset dir=".">
200         <include name="${outputJar}" />
201         <include name="#*#" />
202         <include name="#*.*#" />
203         <include name="**/#*#" />
204         <include name="**/#*.*#" />
205         <include name="*~" />
206         <include name="*.*~" />
207         <include name="**/*~" />
208         <include name="**/*.*~" />
209       </fileset>
210     </delete>
211   </target>
212
213   <target name="prepare" depends="init">
214     <mkdir dir="${outputDir}" />
215     <copy todir="${outputDir}">
216       <fileset dir=".">
217         <include name="${docDir}/**/*.*" />
218         <include name="${helpDir}/**/*.*" />
219         <include name="${libDir}/*.jar" />
220       </fileset>
221       <fileset dir="${resourceDir}">
222         <include name="**/*.*" />
223       </fileset>
224     </copy>
225   </target>
226
227   <target name="build" depends="prepare">
228     <!-- not efficient yet. -->
229     <javac source="1.5" target="1.5" srcdir="${sourceDir}" destdir="${outputDir}" debug="${javac.debug}" classpathref="build.classpath">
230       <exclude name="jalview/*applet*" />
231       <exclude name="jalview/appletgui/**" />
232       <exclude name="com/stevesoft/**" />
233     </javac>
234   </target>
235   <target name="buildindices" depends="init, prepare" unless="help.uptodate">
236     <java classname="com.sun.java.help.search.Indexer" classpathref="build.classpath" fork="true" dir="${outputDir}/${helpDir}">
237       <arg line="html" />
238     </java>
239   </target>
240
241   <target name="makefulldist" depends="makedist">
242
243     <copy todir="${packageDir}">
244       <fileset dir="${resourceDir}/images">
245         <include name="${WebStartImage}" />
246       </fileset>
247     </copy>
248
249     <taskdef classpathref="build.classpath" resource="com/roxes/tools/ant/taskdefs.properties" />
250
251     <!-- create a dummy jar which will eventually contain the jnlp template -->
252     <jar destfile="${packageDir}/jalview_jnlp_vm.jar" index="true">
253           <fileset dir="${packageDir}">
254             <include name="jalview.jar"/>
255           </fileset>
256     </jar>
257         
258         <mkdir dir="${packageDir}/JNLP-INF"/>
259     <antcall target="writejnlpf">
260        <param name="jnlpFile" value="${packageDir}/JNLP-INF/APPLICATION-TEMPLATE.JNLP"/>
261        <param name="inih" value="*" />
262        <param name="maxh" value="*"/>
263     </antcall>
264                 
265         <jar destfile="${packageDir}/jalview_jnlp_vm.jar" index="true">
266               <fileset dir="${packageDir}">
267                 <include name="JNLP-INF"/>
268               </fileset>
269         </jar>
270     
271         <antcall target="writejnlpf">
272                 <param name="jnlpFile" value="${packageDir}/jalview.jnlp"/>
273                 <param name="inih" value="10M" />
274           <param name="maxh" value="256M"/>
275         </antcall>
276         
277         <antcall target="writejnlpf">
278           <param name="jnlpFile" value="${packageDir}/jalview_1G.jnlp"/>
279           <param name="inih" value="128M" />
280                 <param name="maxh" value="512M"/>
281         </antcall>
282             
283         <antcall target="writejnlpf">
284           <param name="jnlpFile" value="${packageDir}/jalview_2G.jnlp"/>
285           <param name="inih" value="256M" />
286           <param name="maxh" value="1024M"/>
287         </antcall>
288         
289         <!-- finally, need to postprocess to add in associations at end of 'information' element 
290                         
291                         <xslt in="${packageDir}/jalview_noa_1G.jnlp" out="${packageDir}/jalview_1G.jnlp">
292                 
293                 </xslt>
294                         
295                         
296                         -->
297     <!--
298                                 <association mime-type="application-x/ext-file" extensions="fa"/>
299         <association mime-type="application-x/ext-file" extensions="fasta"/>
300         <association mime-type="application-x/ext-file" extensions="mfa"/>
301         <association mime-type="application-x/ext-file" extensions="fastq"/>
302         <association mime-type="application-x/ext-file" extensions="blc"/>
303         <association mime-type="application-x/ext-file" extensions="msf"/>
304         <association mime-type="application-x/ext-file" extensions="pfam"/>
305         <association mime-type="application-x/ext-file" extensions="aln"/>
306         <association mime-type="application-x/ext-file" extensions="pir"/>
307         <association mime-type="application-x/ext-file" extensions="amsa"/>
308         <association mime-type="application-x/ext-file" extensions="stk"/>
309         <association mime-type="application-x/ext-file" extensions="jar"/>-->
310     <!-- and sign the jars -->
311     <!-- the default keystore details might need to be edited here -->
312     <signjar storepass="${jalview.keystore.pass}" keypass="${jalview.key.pass}" keystore="${jalview.keystore}" alias="${jalview.key}" lazy="false" verbose="false" sigalg="SHA1withRSA">
313         <fileset dir="${packageDir}">
314           <include name="*.jar" />
315         </fileset>
316     </signjar>
317   </target>
318
319   <target name="runenv" depends="init">
320     <path id="run.classpath">
321       <pathelement location="${outputDir}" />
322       <fileset dir="${outputDir}">
323         <include name="${libDir}/*.jar" />
324       </fileset>
325     </path>
326     <pathconvert targetos="unix" refid="run.classpath" property="run.classpath" />
327
328     <echo>java -classpath ${run.classpath} jalview.bin.Jalview
329       </echo>
330   </target>
331   <target name="writejnlpf">
332         <presetdef name="jnlpf">
333             <jnlp codebase="${WebStartLocation}">
334               <information>
335                 <title>Jalview</title>
336                 <vendor>The Barton Group</vendor>
337                 <homepage href="http://www.jalview.org" />
338                 <description>Jalview Multiple Alignment Editor</description>
339                 <description kind="short">Jalview</description>
340                 <icon href="${WebStartImage}" />
341                 <offline_allowed />
342               </information>
343               <resources>
344                 <j2se version="${j2sev}" initial_heap_size="${inih}" max_heap_size="${maxh}" />
345                 <fileset dir="${packageDir}">
346                   <include name="jalview.jar" />
347                 </fileset>
348                 <fileset dir="${packageDir}">
349                   <include name="*.jar" />
350                   <include name="*_*.jar" />
351                   <exclude name="jalview.jar" />
352                 </fileset>
353                 <property name="jalview.version" value="${JALVIEW_VERSION}" />
354               </resources>
355               <application_desc main_class="jalview.bin.Jalview">
356               </application_desc>
357               <security>
358                 <all_permissions />
359               </security>
360             </jnlp>
361             </presetdef>
362
363             <jnlpf toFile="${jnlpFile}"/>
364   </target>
365   <target name="buildextclients" depends="init">
366     <input message="Building external client source from WSDLs - Do you really want to do this ? (Yy/Nn)" validargs="Y,y,n,N" defaultvalue="N" addproperty="doextbuild.response" />
367     <condition property="dontextbuild">
368       <equals arg1="n" arg2="${doextbuild.response}" />
369     </condition>
370     <condition property="dontextbuild">
371       <equals arg1="N" arg2="${doextbuild.response}" />
372     </condition>
373     <fail if="dontextbuild">
374         Build External Client Code process aborted by user. Jalview source is unchanged.
375       </fail>
376     <!-- Currently, this doesn't happen automatically.
377      1. Run WSDL2Java as below, which generates an ext.vamsas +
378      vamsas.<datapackages> fileset.
379      2. refactor ext.vamsas.SpecificserviceWS* to
380      ext.vamsas.ServiceclassWS* that implements the ServiceclassWSI interface.
381      3. Update the jalview.ws.*WServices classes to reflect the
382      interface type, and all locations of this wsdl type that Jalview
383      might be using.
384
385 -->
386     <path id="axisbuild">
387       <path refid="build.classpath" />
388     </path>
389     <taskdef resource="axis-tasks.properties" classpathref="axisbuild" />
390     <move todir="./bak">
391       <fileset dir="${sourceDir}" id="client">
392         <include name="${wsdl.ClientNS}/*.*" />
393       </fileset>
394     </move>
395
396     <axis-wsdl2java output="${sourceDir}" verbose="true" url="${wsdl.MsaWS2}" serverside="false" deployscope="Request" debug="false" helpergen="true" all="true">
397       <mappingSet>
398         <mapping namespace="${wsdl.Namespace}" package="${wsdl.ClientNS}" />
399         <mapping namespace="http://dataTypes.vamsas" package="${wsdl.ClientNS}" />
400       </mappingSet>
401     </axis-wsdl2java>
402   </target>
403
404   <target name="makedist" depends="build, buildPropertiesFile, buildindices">
405     <!-- make the package jar if not already existing -->
406     <mkdir dir="${packageDir}" />
407     <!-- clean dir if it already existed -->
408     <delete>
409       <fileset dir="${packageDir}">
410         <include name="*.jar" />
411       </fileset>
412     </delete>
413     <jar destfile="${packageDir}/${outputJar}" index="true">
414       <manifest>
415         <attribute name="Main-Class" value="jalview.bin.Jalview" />
416         <attribute name="Permissions" value="all-permissions" />
417         <attribute name="Application-Name" value="Jalview Desktop" />
418         <attribute name="Codebase" value="${application.codebase}" />
419       </manifest>
420       <fileset dir="${outputDir}/">
421         <exclude name="cache*/**" />
422         <exclude name="*.jar" />
423         <exclude name="*.jar.*" />
424         <exclude name="**/*.jar" />
425         <exclude name="**/*.jar.*" />
426       </fileset>
427     </jar>
428
429     <copy toDir="${packageDir}" flatten="true">
430       <fileset dir="${outputDir}">
431         <include name="*.jar" />
432         <include name="**/*.jar" />
433       </fileset>
434     </copy>
435   </target>
436
437
438   <!-- jalopy code reformatter -->
439   <target name="sourcescrub" depends="init,build">
440     <jalopy destdir="jsrc" classpathref="run.classpath" convention="jalview-jalopy.xml">
441       <fileset dir="${sourceDir}">
442         <include name="*.java" />
443         <include name="**/*.java" />
444         <include name="**/**/*.java" />
445       </fileset>
446     </jalopy>
447   </target>
448
449
450
451   <!-- Compile, package and obfuscate Jalview Applet -->
452   <target name="makeApplet" depends="obfuscate" description="assemble the final jalviewLite applet jar with or without obfuscation" />
453
454   <target name="compileApplet" depends="init,clean">
455     <mkdir dir="${outputDir}" />
456     <javac source="1.5" target="1.5" srcdir="${sourceDir}" destdir="${outputDir}" debug="${javac.debug}" classpathref="jalviewlite.deps" includes="jalview/appletgui/**" excludes="ext/**,MCview/**,org/**,vamsas/**" />
457   </target>
458
459   <target name="packageApplet" depends="compileApplet, buildPropertiesFile">
460     <copy file="${resourceDir}/images/idwidth.gif" toFile="${outputDir}/images/idwidth.gif" />
461     <copy file="${resourceDir}/images/link.gif" toFile="${outputDir}/images/link.gif" />
462     <jar destfile="in.jar" index="true">
463       <manifest>
464         <attribute name="Main-Class" value="jalview.bin.JalviewLite" />
465         <attribute name="Application-Name" value="JalviewLite" />
466         <attribute name="Codebase" value="${applet.codebase}" />
467       </manifest>
468       <fileset dir="${outputDir}">
469         <include name="com/**" />
470         <include name="MCview/**" />
471         <include name="jalview/**" />
472         <include name=".build_properties" />
473         <include name="images/idwidth.gif" />
474         <include name="images/link.gif" />
475       </fileset>
476     </jar>
477   </target>
478   <target name="obfuscate" depends="-obfuscatefake,-obfuscatereally">
479   </target>
480   <target name="-obfuscatefake" depends="packageApplet" if="donotobfuscate">
481     <copy file="in.jar" tofile="${jalviewLiteJar}" overwrite="true" />
482     <delete file="in.jar" />
483   </target>
484   <target name="-obfuscatereally" unless="donotobfuscate">
485
486     <path id="obfuscateDeps.path">
487       <pathelement location="${applet.jre.tools}" />
488       <pathelement location="appletlib/${jmolJar}" />
489     </path>
490     <taskdef resource="proguard/ant/task.properties" classpath="utils/proguard.jar" />
491
492     <proguard>
493       <injar file="in.jar" />
494       <outjar file="${jalviewLiteJar}" />
495       <libraryjar refid="obfuscateDeps.path" />
496       <dontwarn />
497       <keep access="public" type="class" name="jalview.bin.JalviewLite">
498         <field access="public" />
499         <method access="public" />
500         <constructor access="public" />
501       </keep>
502       <keep access="public" type="class" name="jalview.appletgui.AlignFrame">
503         <field access="public" />
504         <method access="public" />
505         <constructor access="public" />
506       </keep>
507       <!--      -libraryjars "${obfuscateDeps}"
508       -injars      in.jar
509       -outjars     jalviewApplet.jar
510       -keep public class jalview.bin.JalviewLite
511        { public * ; } -->
512     </proguard>
513     <delete file="in.jar" />
514   </target>
515
516   <target name="castorbinding" depends="init" description="Generate Java bindings to supported Jalview XML models.">
517     <taskdef name="castor-srcgen" classname="org.castor.anttask.CastorCodeGenTask" classpathref="build.classpath" />
518     <delete>
519       <fileset dir="${sourceDir}/jalview/schemabinding/version2">
520         <include name="*.java" />
521         <include name="descriptors/*.java" />
522       </fileset>
523     </delete>
524     <castor-srcgen file="${schemaDir}/vamsas.xsd" todir="${sourceDir}" package="jalview.schemabinding.version2" warnings="false" nodesc="false" verbose="true" properties="${schemaDir}/jalview.properties" />
525     <castor-srcgen file="${schemaDir}/JalviewUserColours.xsd" todir="${sourceDir}" package="jalview.schemabinding.version2" warnings="false" nodesc="false" verbose="true" properties="${schemaDir}/jalview.properties" />
526     <castor-srcgen file="${schemaDir}/JalviewWsParamSet.xsd" todir="${sourceDir}" package="jalview.schemabinding.version2" warnings="false" nodesc="false" verbose="true" properties="${schemaDir}/jalview.properties" />
527     <castor-srcgen file="${schemaDir}/jalview.xsd" todir="${sourceDir}" package="jalview.schemabinding.version2" warnings="false" nodesc="false" verbose="true" properties="${schemaDir}/jalview.properties" />
528     <!-- 
529                 now build the jalview.binding package with the old schema set
530                 -->
531     <delete>
532       <fileset dir="${sourceDir}/jalview/binding/">
533         <include name="**" />
534       </fileset>
535     </delete>
536     <castor-srcgen file="${schemaDir}/vamsasJvV1.xsd" todir="${sourceDir}" package="jalview.binding" warnings="false" nodesc="true" verbose="true" properties="${schemaDir}/jalview.nodesc.properties" />
537     <castor-srcgen file="${schemaDir}/JalviewUserColours.xsd" todir="${sourceDir}" package="jalview.binding" warnings="false" nodesc="true" verbose="true" properties="${schemaDir}/jalview.nodesc.properties" />
538     <castor-srcgen file="${schemaDir}/jalviewJvV1.xsd" todir="${sourceDir}" package="jalview.binding" warnings="false" nodesc="true" verbose="true" properties="${schemaDir}/jalview.nodesc.properties" />
539   </target>
540   <target name="sourcedist" description="create jalview source distribution" depends="init">
541     <delete file="${source.dist.name}" />
542     <tar destfile="${source.dist.name}" compression="gzip">
543       <tarfileset dir="./" prefix="jalview" preserveLeadingSlashes="true">
544         <include name="LICENSE" />
545         <include name="README" />
546         <include name="build.xml" />
547         <include name="jalview-jalopy.xml" />
548         <include name="JalviewApplet.jpx" />
549         <include name="JalviewX.jpx" />
550         <include name="nbbuild.xml" />
551         <include name="nbproject/genfiles.properties" />
552         <include name="nbproject/project.properties" />
553         <include name="nbproject/project.xml" />
554         <include name="${sourceDir}/*.java" />
555         <include name="${sourceDir}/**/*.java" />
556         <include name="${sourceDir}/**/*.cdr" />
557         <include name="${libDir}/**/*" />
558         <include name="${resourceDir}/**/*" />
559         <include name="${helpDir}/**/*" />
560         <include name="appletlib/${jmolJar}" />
561         <exclude name="**/*locales" />
562         <exclude name="*locales/**" />
563         <exclude name="utils/InstallAnywhere/**Build.iap_xml" />
564         <exclude name="utils/InstallAnywhere/**Build*/**" />
565         <exclude name="utils/InstallAnywhere/**Build*/**" />
566         <exclude name="utils/InstallAnywhere/**locale*" />
567         <exclude name="utils/InstallAnywhere/**locale*/**" />
568         <include name="${schemaDir}/**/*" />
569         <include name="utils/**/*" />
570         <include name="${docDir}/**/*" />
571         <include name="examples/**/*" />
572       </tarfileset>
573     </tar>
574   </target>
575   <target name="pubapplet" description="installs the jalviewLite applet and dependent jars into an applet examples directory built under ${outputDir}" depends="makeApplet">
576     <copy todir="${packageDir}/examples">
577       <fileset dir="examples">
578         <include name="**/*" />
579         <include name="javascript/*" />
580         <include name="jmol/*" />
581       </fileset>
582       <fileset dir=".">
583         <include name="${jalviewLiteJar}" />
584       </fileset>
585       <fileset dir="appletlib">
586         <include name="**/*" />
587       </fileset>
588     </copy>
589
590     <presetdef name="ap_applet.jar">
591       <!-- build a signed applet with 'all-permissions' - 
592                           Needs 'param name="permissions' value="all-permissions"' in applet tag
593                           JalviewLite+JmolApplet linked sequence/structure fails
594                           Mixed code warnings are raised
595                           -->
596       <jar update="true" index="true">
597         <manifest>
598           <attribute name="Application-Name" value="JalviewLite" />
599           <attribute name="Permissions" value="all-permissions" />
600           <attribute name="Codebase" value="${applet.codebase}" />
601           <attribute name="Caller-Allowable-Codebase" value="${applet.caller-codebase}" />
602           <attribute name="Application-Library-Allowable-Codebase" value="${applet.codebase}" />
603         </manifest>
604       </jar>
605     </presetdef>
606     <presetdef name="applet.jar">
607       <!-- build signed applet with sandbox permissions -
608                           Needs 'param name="permissions' value="sandbox"' in applet tag
609                          Preserves Pre-Java 1.7_u45 behavior once 'permissions' parameter added to applet tag 
610                         -->
611
612       <jar update="true" index="true">
613         <manifest>
614           <attribute name="Application-Name" value="JalviewLite" />
615           <attribute name="Permissions" value="sandbox" />
616           <attribute name="Codebase" value="${applet.codebase}" />
617           <attribute name="Caller-Allowable-Codebase" value="${applet.caller-codebase}" />
618           <attribute name="Application-Library-Allowable-Codebase" value="${applet.codebase}" />
619         </manifest>
620       </jar>
621     </presetdef>
622     <presetdef name="tl_applet.jar">
623       <!-- build signed applet with trusted library/trusted permissions -
624                                 Needs 'param name="permissions' value="all-permissions"' in applet tag
625                                j1.7_45:
626                                No mixed code warnings raised 
627                                Jmol/JalviewLite sequence/structure example doesn't link structures
628                                Raises dialog asking user to allow page to control applet via LiveConnect javascript
629                                
630                               -->
631
632       <jar update="true" index="true">
633         <manifest>
634           <attribute name="Application-Name" value="JalviewLite" />
635           <attribute name="Permissions" value="all-permissions" />
636           <attribute name="Codebase" value="${applet.codebase}" />
637           <attribute name="Trusted-Only" value="true" />
638           <attribute name="Trusted-Library" value="true" />
639         </manifest>
640       </jar>
641     </presetdef>
642     <presetdef name="to_applet.jar">
643       <!-- not fully test variant (yet) -->
644       <jar update="true" index="true">
645         <manifest>
646           <attribute name="Application-Name" value="JalviewLite" />
647           <attribute name="Permissions" value="all-permissions" />
648           <attribute name="Codebase" value="${applet.codebase}" />
649           <attribute name="Trusted-Only" value="true" />
650         </manifest>
651       </jar>
652     </presetdef>
653     <!-- create differently privileged artefacts -->
654     <copy file="${packageDir}/examples/${jalviewLiteJar}" tofile="${packageDir}/examples/u_${jalviewLiteJar}" />
655     <copy file="${packageDir}/examples/${jmolJar}" tofile="${packageDir}/examples/u_${jmolJar}"/>
656     <copy file="${packageDir}/examples/${jalviewLiteJar}" tofile="${packageDir}/examples/ap_${jalviewLiteJar}" />
657     <copy file="${packageDir}/examples/${jmolJar}" tofile="${packageDir}/examples/ap_${jmolJar}"/>
658     <ap_applet.jar jarfile="${packageDir}/examples/ap_${jalviewLiteJar}" />
659     <ap_applet.jar jarfile="${packageDir}/examples/ap_${jmolJar}" />
660     <copy file="${packageDir}/examples/${jalviewLiteJar}" tofile="${packageDir}/examples/tl_${jalviewLiteJar}" />
661     <copy file="${packageDir}/examples/${jmolJar}" tofile="${packageDir}/examples/tl_${jmolJar}" />
662     <tl_applet.jar jarfile="${packageDir}/examples/tl_${jalviewLiteJar}" />
663     <tl_applet.jar jarfile="${packageDir}/examples/tl_${jmolJar}" />
664     <copy file="${packageDir}/examples/${jalviewLiteJar}" tofile="${packageDir}/examples/to_${jalviewLiteJar}" />
665     <copy file="${packageDir}/examples/${jmolJar}" tofile="${packageDir}/examples/to_${jmolJar}" />
666     <to_applet.jar jarfile="${packageDir}/examples/to_${jalviewLiteJar}" />
667     <to_applet.jar jarfile="${packageDir}/examples/to_${jmolJar}" />
668     <!-- finally, create manifest for original jars -->
669     <applet.jar jarfile="${packageDir}/examples/${jalviewLiteJar}" />
670     <applet.jar jarfile="${packageDir}/examples/${jmolJar}" />
671
672     <!-- todo - write examples/downloads for alternate versions of the applet -->
673     <signjar storepass="${jalview.keystore.pass}" keypass="${jalview.key.pass}" keystore="${jalview.keystore}" alias="${jalview.key}" lazy="false" verbose="false">
674
675       <fileset dir="${packageDir}/examples">
676         <include name="${jalviewLiteJar}" />
677         <include name="${jmolJar}" />
678         <include name="to_${jalviewLiteJar}" />
679         <include name="to_${jmolJar}" />
680         <include name="tl_${jalviewLiteJar}" />
681         <include name="tl_${jmolJar}" />
682         <include name="ap_${jalviewLiteJar}" />
683         <include name="ap_${jmolJar}" />
684       </fileset>
685     </signjar>
686   </target>
687   <target name="sourcedoc" description="Create jalview source documentation pages" depends="init">
688     <javadoc destdir="${javadocDir}">
689       <packageset dir="${sourceDir}" includes="jalview/*,MCView/*">
690       </packageset>
691     </javadoc>
692   </target>
693
694 </project>