[Mocklib-checkins] mocklib2/bldfiles design.xml,1.2.2.1,1.2.2.2
Brought to you by:
bittwidler,
fastdragon
From: Nobody <fas...@us...> - 2006-01-18 01:51:34
|
Update of /cvsroot/mocklib/mocklib2/bldfiles In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5728/bldfiles Modified Files: Tag: branchForOffice design.xml Log Message: fix design so impl2 only depends on api2 instead of allowing impl2 to depend on anything. Index: design.xml =================================================================== RCS file: /cvsroot/mocklib/mocklib2/bldfiles/design.xml,v retrieving revision 1.2.2.1 retrieving revision 1.2.2.2 diff -C2 -d -r1.2.2.1 -r1.2.2.2 *** design.xml 17 Jan 2006 07:59:32 -0000 1.2.2.1 --- design.xml 18 Jan 2006 01:51:26 -0000 1.2.2.2 *************** *** 27,36 **** </package> ! <package name="impl2" package="biz.xsoftware.mock2.impl" needdepends="false"/> ! <package name="api2" package="biz.xsoftware.mock2"> ! <!-- is depending on junit a good idea???? it makes it easier to prevent ! people from forgetting to call verify but also locks us to use junit more ! but junit is pretty standard now --> ! <depends>junit</depends> </package> <package name="testapi2" package="biz.xsoftware.test.mock2" subpackages="include"> --- 27,33 ---- </package> ! <package name="api2" package="biz.xsoftware.mock2"/> ! <package name="impl2" package="biz.xsoftware.mock2.impl"> ! <depends>api2</depends> </package> <package name="testapi2" package="biz.xsoftware.test.mock2" subpackages="include"> |