]> WPIA git - gigi.git/blob - build.xml
Typo in method name
[gigi.git] / build.xml
1 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2 <project basedir="." default="build" name="cacert-gigi">
3     <property environment="env"/>
4     <property name="junit.output.dir" value="junit"/>
5     <property name="debuglevel" value="source,lines,vars"/>
6     <property name="target" value="1.8"/>
7     <property name="source" value="1.8"/>
8     <property name="mysqlconnector" value="mysql-connector-java-5.1.31-bin.jar"/>
9     <property name="juintexec" value="."/>
10     <path id="JUnit 4.libraryclasspath">
11         <pathelement location="${juintexec}/junit.jar"/>
12         <pathelement location="${juintexec}/org.hamcrest.core.jar"/>
13     </path>
14     <path id="cacert-gigi.classpath">
15         <pathelement location="bin"/>
16         <pathelement location="${mysqlconnector}"/>
17     </path>
18     <path id="cacert-gigi.test.classpath">
19         <pathelement location="bin"/>
20         <pathelement location="bintest"/>
21         <path refid="JUnit 4.libraryclasspath"/>
22         <pathelement location="${mysqlconnector}"/>
23     </path>
24     <target name="init">
25         <mkdir dir="bin"/>
26         <mkdir dir="bintest"/>
27         
28         <copy includeemptydirs="false" todir="bin">
29             <fileset dir="lib/servlet-api">
30                 <exclude name="**/*.launch"/>
31                 <exclude name="**/*.java"/>
32             </fileset>
33         </copy>
34         <copy includeemptydirs="false" todir="bin">
35             <fileset dir="lib/jetty">
36                 <exclude name="**/*.launch"/>
37                 <exclude name="**/*.java"/>
38             </fileset>
39         </copy>
40         <copy includeemptydirs="false" todir="bin">
41             <fileset dir="src">
42                 <exclude name="**/*.launch"/>
43                 <exclude name="**/*.java"/>
44             </fileset>
45         </copy>
46         <copy includeemptydirs="false" todir="bin">
47             <fileset dir="util">
48                 <exclude name="**/*.launch"/>
49                 <exclude name="**/*.java"/>
50             </fileset>
51         </copy>
52         <copy includeemptydirs="false" todir="bintest">
53             <fileset dir="tests">
54                 <exclude name="**/*.launch"/>
55                 <exclude name="**/*.java"/>
56             </fileset>
57         </copy>
58     </target>
59     <target name="clean">
60         <delete dir="bin"/>
61     </target>
62     <target depends="clean" name="cleanall"/>
63     <target depends="build-subprojects,build-project" name="build"/>
64     <target name="build-subprojects"/>
65     <target depends="init" name="build-project">
66         <echo message="${ant.project.name}: ${ant.file}"/>
67         <javac debug="true" debuglevel="${debuglevel}" destdir="bin" includeantruntime="false" source="${source}" target="${target}">
68             <src path="lib/servlet-api"/>
69             <src path="lib/jetty"/>
70             <src path="lib/jtar"/>
71             <src path="src"/>
72             <src path="util"/>
73             <classpath refid="cacert-gigi.classpath"/>
74         </javac>
75     </target>
76     <target depends="init" name="build-project-test">
77         <echo message="${ant.project.name}: ${ant.file}"/>
78         <javac debug="true" debuglevel="${debuglevel}" destdir="bintest" includeantruntime="false" source="${source}" target="${target}">
79             <src path="tests"/>
80             <classpath refid="cacert-gigi.test.classpath"/>
81         </javac>
82     </target>
83     <target description="Build all projects which reference this project. Useful to propagate changes." name="build-refprojects"/>
84     <target name="FetchLocales">
85         <java classname="org.cacert.gigi.util.FetchLocales" failonerror="true" fork="yes">
86             <classpath refid="cacert-gigi.classpath"/>
87         </java>
88     </target>
89     <target name="Launcher">
90         <java classname="org.cacert.gigi.Launcher" failonerror="true" fork="yes">
91             <classpath refid="cacert-gigi.classpath"/>
92         </java>
93     </target>
94     
95     <target name="check-generateKeys">
96         <available file="config/keystore.pkcs12" property="keystore.present"/>
97     </target>
98     <target name="generateKeys" depends="check-generateKeys" unless="keystore.present">
99         <exec executable="./generateKeys.sh" dir="doc/scripts"/>
100         <exec executable="./generateTruststore.sh" dir="doc/scripts">
101             <arg value="-noprompt"/>
102         </exec>
103     </target>
104     <target name="test" depends="build-project-test,generateKeys,FetchLocales">
105         <mkdir dir="${junit.output.dir}"/>
106         <junit fork="yes" printsummary="withOutAndErr">
107             <formatter type="xml"/>
108             <test name="org.cacert.gigi.TestSSL" todir="${junit.output.dir}"/>
109             <test name="org.cacert.gigi.LoginTest" todir="${junit.output.dir}"/>
110             <test name="org.cacert.gigi.pages.main.RegisterPageTest" todir="${junit.output.dir}"/>
111             <test name="org.cacert.gigi.pages.wot.TestAssurance" todir="${junit.output.dir}"/>
112             <classpath refid="cacert-gigi.test.classpath"/>
113         </junit>
114     </target>
115     <target name="junitreport">
116         <junitreport todir="${junit.output.dir}">
117             <fileset dir="${junit.output.dir}">
118                 <include name="TEST-*.xml"/>
119             </fileset>
120             <report format="frames" todir="${junit.output.dir}"/>
121         </junitreport>
122     </target>
123 </project>