From: Adrian B. <ej...@us...> - 2003-02-13 04:17:03
|
User: ejort Date: 03/02/12 20:17:03 Modified: . Tag: Branch_3_2 build.xml Log: Tests for container managed audit fields Revision Changes Path No revision No revision 1.165.2.40 +11 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.39 retrieving revision 1.165.2.40 diff -u -r1.165.2.39 -r1.165.2.40 --- build.xml 12 Feb 2003 16:05:20 -0000 1.165.2.39 +++ build.xml 13 Feb 2003 04:17:02 -0000 1.165.2.40 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.39 2003/02/12 16:05:20 starksm Exp $ --> +<!-- $Id: build.xml,v 1.165.2.40 2003/02/13 04:17:02 ejort Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -3125,6 +3125,16 @@ includes="net/**/*.*"/> <zipfileset src="${junit.junit.lib}/junit.jar" includes="junit/**/*.*"/> + </jar> + + <!-- build cmp2-audit.jar --> + <jar jarfile="${build.lib}/cmp2-audit.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/cmp2/audit/**"/> + </fileset> + <fileset dir="${build.resources}/cmp2/audit"> + <include name="**/*.*"/> + </fileset> </jar> </target> |