blob: 389568b1d6d31e5c9bdc062372326974e138c407 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?xml version="1.0"?>
<!DOCTYPE project [ <!ENTITY include SYSTEM "../../../etc/common.xml"> ]>
<project name="ejb3-examples-stateless" default="main" basedir="../../..">
<!-- basic settings -->
<property name="app.pkg" value="examples/stateless"/>
<property name="app.name" value="StatelessExamples"/>
<property name="create.client" value="true"/>
<property name="create.ejb" value="true"/>
<property name="create.war" value="true"/>
<property name="create.ear" value="true"/>
<property name="deploy" value="true"/>
<!-- Include common.xml -->
&include;
<target name="main" depends="compile.common,package.common,deploy.common"/>
<target name="run">
<antcall target="execClient">
<param name="client.class" value="examples.stateless.client.PricerClient"/>
</antcall>
</target>
</project>
|