[Smartcc-cvs] smartcc build.xml,1.3,1.4
Brought to you by:
hengels
|
From: <he...@us...> - 2002-05-29 08:12:17
|
Update of /cvsroot/smartcc/smartcc
In directory usw-pr-cvs1:/tmp/cvs-serv23271
Modified Files:
build.xml
Log Message:
o fixed some bugs regarding interceptors
o implemented the recorder and replay tool
Index: build.xml
===================================================================
RCS file: /cvsroot/smartcc/smartcc/build.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** build.xml 28 May 2002 10:10:27 -0000 1.3
--- build.xml 29 May 2002 08:12:12 -0000 1.4
***************
*** 49,54 ****
--- 49,56 ----
<classpath refid="build.classpath" />
<exclude name="org/smartcc/login/Was4LoginModule.java"/>
+ <exclude name="org/smartcc/replay/JBossClient.java"/>
</javac>
<antcall target="compile.was4"/>
+ <antcall target="compile.jboss"/>
</target>
***************
*** 60,63 ****
--- 62,75 ----
<classpath refid="build.classpath" />
<include name="org/smartcc/login/Was4LoginModule.java"/>
+ </javac>
+ </target>
+
+ <target name="compile.jboss" depends="prepare" if="jboss">
+ <javac srcdir="src" destdir="${build.class}"
+ debug="${build.debug}"
+ deprecation="${build.deprecation}"
+ encoding="ISO8859-1">
+ <classpath refid="build.classpath" />
+ <include name="org/smartcc/replay/JBossClient.java"/>
</javac>
</target>
|