blob: 48f705262e9fc7080e79e0777c09b34daa69ae4f [file] [log] [blame]
Vinay Vishal57171472018-09-18 20:22:00 +05301<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE project [
3<!--
4
5 Copyright (c) 2017, 2018 Oracle and/or its affiliates. All rights reserved.
6
7 This program and the accompanying materials are made available under the
8 terms of the Eclipse Public License v. 2.0, which is available at
9 http://www.eclipse.org/legal/epl-2.0.
10
11 This Source Code may also be made available under the following Secondary
12 Licenses when the conditions for such availability set forth in the
13 Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
14 version 2 with the GNU Classpath Exception, which is available at
15 https://www.gnu.org/software/classpath/license.html.
16
17 SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
18
19-->
20
21<!ENTITY commonSetup SYSTEM "../../../../config/properties.xml">
22<!ENTITY commonBuild SYSTEM "../../../../config/common.xml">
23<!ENTITY testproperties SYSTEM "build.properties">
24<!ENTITY run SYSTEM "../../../../config/run.xml">
25]>
26
27<project name="readonly" default="usage" basedir=".">
28
29 &commonSetup;
30 &commonBuild;
31 &testproperties;
32 &run;
33
34 <target name="all" depends="build,setup,deploy,run,undeploy,unsetup"/>
35
36 <target name="clean" depends="init-common">
37 <antcall target="clean-common"/>
38 </target>
David Matějčekf4dc06a2021-05-17 12:10:57 +020039
Vinay Vishal57171472018-09-18 20:22:00 +053040 <target name="compile" depends="clean">
41 <antcall target="compile-common">
42 <param name="src" value="ejb"/>
43 </antcall>
44 <antcall target="compile-common">
45 <param name="src" value="client"/>
46 </antcall>
47 </target>
48
49 <target name="build" depends="compile">
50 <antcall target="build-ear-common">
David Matějčekf4dc06a2021-05-17 12:10:57 +020051 <param name="ejbjar.classes"
Vinay Vishal57171472018-09-18 20:22:00 +053052 value="**/*Student*.class,**/*.dbschema" />
David Matějčekf4dc06a2021-05-17 12:10:57 +020053 <param name="appclientjar.classes"
Vinay Vishal57171472018-09-18 20:22:00 +053054 value="**/Student.class,**/*Home*.class,**/*Client*.class" />
55 </antcall>
David Matějčekf4dc06a2021-05-17 12:10:57 +020056 </target>
57
Vinay Vishal57171472018-09-18 20:22:00 +053058 <target name="setup" depends="init-common">
59 <antcall target="execute-ejb-sql-common">
60 <param name="sql.file" value="sql/create_pointbase.sql"/>
61 </antcall>
62 </target>
63
David Matějčekf4dc06a2021-05-17 12:10:57 +020064 <target name="deploy" depends="init-common">
Vinay Vishal57171472018-09-18 20:22:00 +053065 <antcall target="deploy-common"/>
66 </target>
David Matějčekf4dc06a2021-05-17 12:10:57 +020067
Vinay Vishal57171472018-09-18 20:22:00 +053068 <target name="run" depends="init-common">
David Matějčekf4dc06a2021-05-17 12:10:57 +020069 <antcall target="runclient-common">
Vinay Vishal57171472018-09-18 20:22:00 +053070 </antcall>
71 </target>
72
73 <target name="threadtest" depends="init-common">
74 <antcall target="runclient-common">
75 <param name="appclient.application.args" value="100 10 1 100"/>
76 </antcall>
77 </target>
David Matějčekf4dc06a2021-05-17 12:10:57 +020078
Vinay Vishal57171472018-09-18 20:22:00 +053079 <target name="undeploy" depends="init-common">
80 <antcall target="undeploy-common"/>
David Matějčekf4dc06a2021-05-17 12:10:57 +020081 </target>
Vinay Vishal57171472018-09-18 20:22:00 +053082
83 <target name="unsetup" depends="init-common">
84 <antcall target="execute-ejb-sql-common">
85 <param name="sql.file" value="sql/drop_pointbase.sql"/>
86 </antcall>
87 </target>
88
89 <target name="usage">
90 <antcall target="usage-common"/>
91 </target>
92
93</project>