Update of /cvsroot/mocklib/gwtmocklib/bldfiles
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv22950/bldfiles
Modified Files:
build.xml
Log Message:
make sure source code is in the jar for gwtmocklib
Index: build.xml
===================================================================
RCS file: /cvsroot/mocklib/gwtmocklib/bldfiles/build.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** build.xml 12 Sep 2006 05:02:09 -0000 1.3
--- build.xml 12 Sep 2006 05:06:21 -0000 1.4
***************
*** 390,395 ****
<!-- Put all implementation classes from ${build} into the jar file -->
! <jar jarfile="${jardist}/${jar.name}" basedir="${build}" manifest="${manifest}/MANIFEST.MF">
!
</jar>
--- 390,396 ----
<!-- Put all implementation classes from ${build} into the jar file -->
! <jar jarfile="${jardist}/${jar.name}" manifest="${manifest}/MANIFEST.MF">
! <fileset dir="${build}" includes="**/*.class"/>
! <fileset dir="${javacode}" includes="**/*.java"/>
</jar>
|