Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 1 | <?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ček | f4dc06a | 2021-05-17 12:10:57 +0200 | [diff] [blame^] | 39 | |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 40 | <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ček | f4dc06a | 2021-05-17 12:10:57 +0200 | [diff] [blame^] | 51 | <param name="ejbjar.classes" |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 52 | value="**/*Student*.class,**/*.dbschema" /> |
David Matějček | f4dc06a | 2021-05-17 12:10:57 +0200 | [diff] [blame^] | 53 | <param name="appclientjar.classes" |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 54 | value="**/Student.class,**/*Home*.class,**/*Client*.class" /> |
| 55 | </antcall> |
David Matějček | f4dc06a | 2021-05-17 12:10:57 +0200 | [diff] [blame^] | 56 | </target> |
| 57 | |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 58 | <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ček | f4dc06a | 2021-05-17 12:10:57 +0200 | [diff] [blame^] | 64 | <target name="deploy" depends="init-common"> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 65 | <antcall target="deploy-common"/> |
| 66 | </target> |
David Matějček | f4dc06a | 2021-05-17 12:10:57 +0200 | [diff] [blame^] | 67 | |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 68 | <target name="run" depends="init-common"> |
David Matějček | f4dc06a | 2021-05-17 12:10:57 +0200 | [diff] [blame^] | 69 | <antcall target="runclient-common"> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 70 | </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ček | f4dc06a | 2021-05-17 12:10:57 +0200 | [diff] [blame^] | 78 | |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 79 | <target name="undeploy" depends="init-common"> |
| 80 | <antcall target="undeploy-common"/> |
David Matějček | f4dc06a | 2021-05-17 12:10:57 +0200 | [diff] [blame^] | 81 | </target> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 82 | |
| 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> |