|
From: Alexey L. <lou...@us...> - 2003-06-02 14:13:20
|
User: loubyansky
Date: 03/06/02 07:13:15
Modified: . Tag: Branch_3_2 build.xml
Log:
added generation of DDs by XDoclet.
Revision Changes Path
No revision
No revision
1.165.2.75 +10 -2 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.165.2.74
retrieving revision 1.165.2.75
diff -u -r1.165.2.74 -r1.165.2.75
--- build.xml 2 Jun 2003 11:49:20 -0000 1.165.2.74
+++ build.xml 2 Jun 2003 14:13:13 -0000 1.165.2.75
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.165.2.74 2003/06/02 11:49:20 starksm Exp $ -->
+<!-- $Id: build.xml,v 1.165.2.75 2003/06/02 14:13:13 loubyansky Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -601,7 +601,7 @@
<ejbdoclet destdir="${build.gen-src}"
ejbspec="2.0"
excludedtags="@version,@author"
- mergedir="${source.resources}/cmp2/fkmapping">
+ mergedir="${source.etc}/cmp2/fkmapping">
<fileset dir="${source.java}">
<include name="org/jboss/test/cmp2/fkmapping/ejb/*Bean.java"/>
</fileset>
@@ -613,6 +613,14 @@
<utilobject cacheHomes="true" includeGUID="false"/>
<entitycmp/>
<session/>
+ <deploymentdescriptor
+ destdir="${build.resources}/cmp2/fkmapping/META-INF"
+ validatexml="${validatexml}"/>
+ <jboss
+ version="3.2"
+ xmlencoding="UTF-8"
+ destdir="${build.resources}/cmp2/fkmapping/META-INF"
+ validatexml="${validatexml}"/>
</ejbdoclet>
<!-- foreign key mapping stack overflow error tests -->
|