From: Scott M S. <st...@us...> - 2003-11-12 08:43:37
|
User: starksm Date: 03/11/12 00:43:16 Modified: . Tag: Branch_3_2 build.xml Log: Add app-client.jar and app-client.ear deployments for the j2ee application client deployer tests Revision Changes Path No revision No revision 1.165.2.119 +17 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.118 retrieving revision 1.165.2.119 diff -u -r1.165.2.118 -r1.165.2.119 --- build.xml 10 Nov 2003 07:49:52 -0000 1.165.2.118 +++ build.xml 12 Nov 2003 08:43:15 -0000 1.165.2.119 @@ -15,7 +15,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.118 2003/11/10 07:49:52 starksm Exp $ --> +<!-- $Id: build.xml,v 1.165.2.119 2003/11/12 08:43:15 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -1076,6 +1076,7 @@ _jars-bank-new, _jars-bmp, _jars-cts, + _jars-client, _jars-entityexc, _jars-hello, _jars-idgen, @@ -1475,6 +1476,21 @@ </fileset> </ear> + </target> + + <target name="_jars-client"> + <mkdir dir="${build.lib}"/> + + <jar destfile="${build.lib}/app-client.jar"> + <metainf dir="${build.resources}/client" /> + </jar> + <ear earfile="${build.lib}/app-client.ear" + appxml="${build.resources}/client/application.xml"> + <fileset dir="${build.lib}"> + <include name="cts.jar"/> + <include name="app-client.jar"/> + </fileset> + </ear> </target> <!-- entityexc test --> |