JAL-3026 reinstate test to classpath, fix compilation errors therein
[jalview.git] / build-site.xml
1 <?xml version="1.0"?>
2 <!--
3  BH 2018.08.12
4
5  - requires tools/ant-contrib.jar
6   
7  - creates the site/ directory if it does not exist
8  - unzip libjs/*.zip into site/swingjs/j2s
9  - unzips swingjs/SwingJS-site.zip into site/
10  - copies non-java resources from resources/ into site/swingjs/j2s
11  
12 -->
13
14 <project name="swingjs-project" default="tosite" basedir="."
15  xmlns:if="ant:if"
16     xmlns:unless="ant:unless">
17         
18   <target name="tosite">
19                 
20         <!-- input directories -->
21         
22         <!-- location of ant-contrib.jar -->
23         <property name="tools.dir" value = "tools" />
24
25         <!-- SwingjS_site zip file (could be varied if versioning is needed) -->
26         <property name="swingjs.zip" value="swingjs/SwingJS-site.zip" />
27
28         <!-- location of third-party jar contents as precompiled zipped .js files to copy to site/ -->
29         <property name="libjs.dir" value="libjs" />
30  
31         <!-- non-Java resources to copy to site/swingjs/j2s -->
32     <property name="resource.dir" value="resources" />          
33         
34         <!-- non-Java resources to copy to site/ -->
35     <property name="site-resource.dir" value="site-resources" />        
36         
37         <!-- output directories -->
38
39         <property name="site.dir" value="site" />
40         <property name="j2s.dir" value="${site.dir}/swingjs/j2s" />
41          
42     <!-- <for  ...> construct needs ant-contrib.jar -->
43     <taskdef resource="net/sf/antcontrib/antlib.xml">
44       <classpath>
45         <pathelement location="${tools.dir}/ant-contrib.jar" />
46       </classpath>
47     </taskdef>
48
49         <!-- unzip all libjs zip files into site
50         
51            all zip files placed in libjs will be processed
52            
53          -->
54
55         <for param="file.zip">
56           <path>
57             <fileset dir="${libjs.dir}" includes="*.zip"/>
58           </path>
59           <sequential>
60                         <unzip src="@{file.zip}" dest="${site.dir}" overwrite="true"/>          
61           </sequential>
62         </for>
63
64         <!-- unzip SwingJS-site.zip 
65         
66           we do this separately, as we want it done last 
67         
68         -->
69
70         <unzip src="${swingjs.zip}" dest="${site.dir}/" overwrite="true"/>      
71
72         <!-- transfer resources -->
73
74         <echo> Copying ${resource.dir} files into ${j2s.dir} </echo>
75         <copy todir="${j2s.dir}">
76       <fileset dir="${resource.dir}">
77         <include name="**"/>
78         </fileset>
79     </copy>
80                 
81         <echo> Copying ${site-resource.dir} files into ${site.dir} </echo>
82         <copy todir="${site.dir}">
83       <fileset dir="${site-resource.dir}">
84         <include name="**"/>
85         </fileset>
86     </copy>
87                 
88 </target>
89         
90
91 </project>