summaryrefslogtreecommitdiffstats
path: root/Master/Reference Architectures and Patterns/EJB 3.0 Code/Micah Examples/src/examples/stateful/build.xml
blob: 51b1f715ad68081e5fdd2bb7d909dfc338dcfc2c (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
<?xml version="1.0"?>
<!DOCTYPE project [ <!ENTITY include SYSTEM "../../../etc/common.xml"> ]>
	
<project name="ejb3-examples-stateful" default="main" basedir="../../..">
	<!--		basic  settings          -->
	<property name="app.pkg" value="examples/stateful"/>
	<property name="app.name" value="StatefulExamples"/>
	<property name="create.client" value="true"/>
	<property name="create.ejb" 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.stateful.client.CartClient"/>
		</antcall>
	</target>
</project>