Update of /cvsroot/mocklib/mocklib/bldfiles
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31590/bldfiles
Modified Files:
ant.properties directories.txt
Log Message:
change refs to mocklib, and mocklib project numbers to mocklib project number instead of mockobject project number.
Index: directories.txt
===================================================================
RCS file: /cvsroot/mocklib/mocklib/bldfiles/directories.txt,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** directories.txt 7 May 2005 18:26:17 -0000 1.1
--- directories.txt 5 Aug 2005 19:26:10 -0000 1.2
***************
*** 1,113 ****
! #
! # NOTE: These are the properties used by build.xml and dist.xml
! # override them in ant.properties. Overriding them here will not
! # affect the build in any way. These are purely documentation here.
!
! #-----------------------------------------------------------------------
! # OUTPUT DIRECTORIES
! #-----------------------------------------------------------------------
! generated =output
!
! intermediate =${generated}/misc
! #will contain a generated manifest
! #any other intermediate files will go here too(none yet)
!
! build =${generated}/build
! #will contain all the *.class files after compile
! #will contain all the *.jpg files from ${properties}
! #will contain all the *.properties files from ${properties}
! #will contain all the *.gif files from ${properties}
! #will contain all the *.html files from ${properties}
! #will contain all the *.* files from ${properties}
! #will NOT contain *.html, *.htm, *.jpg, *.gif from ${javacode}
!
! jardist =${generated}/jardist
! #will contain a *.jar containing everything in ${build}
!
! dist =${generated}/dist
! #contains the release that gets released to the world
!
! codecov =${generated}/codecoverage
! #contains the code coverage reports of what the unit tests
! #covered
! codecov.temp =${generated}/codecoveragetemp
! #intermediate directory that contains instrumented classes to
! #run testall against so a code coverage report can be spit out.
!
! javadoc =${generated}/javadoc
! #contains the javadoc of biz.xsoftware.api
!
! junit.results =${generated}/test_results
! #contains junit test results
!
! staging =${generated}/staging
! projstaging =${generated}/staging/${name}
! #will contain all *.html generated by javadoc
! #will contain all *.html from ${javacode} directory(such as package.html)
! #will contain all *.jpg from ${javacode} directory
! #will contain all *.gif from ${javacode} directory
!
! rmi.stubs =${generated}/rmistubs
! #contains all Remote*.class files copied from ${build}
! #contains all *_stub.class files copied from ${build}
! #contains all *_skel.class files copied from ${build}
! #this directory is only created if RMI*.class exists
!
! test.area =${generated}/tests
! #This is sometimes created by JUnit tests to do temporary
! #testing. It usually gets deleted afterwards.
!
! #-----------------------------------------------------------------------
! # INPUT DIRECTORIES - don't change these after the project is started.
! #-----------------------------------------------------------------------
! input =input
! #contains all stuff that is an input into the build
!
! config =${input}
! #contains build.xml for the module, and any other build scripts
! #plus build property files
!
! javacode =${input}/javasrc
! #Contains all *.java source files
! #Contains all *.html files needed by javadoc
! #Contains all *.jpg files needed by javadoc
! #Contains all *.gif files needed by javadoc
! #Contains all *.* files needed by javadoc
! #Will NOT contain any *.jpg, *.gif, *.html, *.htm needed by application
! #Use ${properties} for *.jpg, *.gif, *.html, *.htm needed by application
!
! properties =${input}/properties
! #contains *.property files for i18n
! #contains *.gif needed for application
! #contains *.* any other resource files needed for application
!
! lib =${input}/lib
! #contains all *.jar needed to run the app
! #does not contain *.jars needed to compile the app(such as junit.jar)
!
! staging.in =${input}/staging
! #build copies everything from here to ${staging} so staging area can just be
! #zipped up or rpm'd up or whatever during the dist target.
! #typically, there will be another directory in here called <project>
! #or something. Some projects won't but most will.
!
! scripts =${input}/tests/scripts
! #DO NOT MODIFY. This is hardcoded in TestSuiteAllScripts.java.
! #contains all *.xml abbot scripts to do GUI testing.
! test.input =${input}/tests/input
! #for miscellaneous input to junit tests.
!
! #-----------------------------------------------------------------------
! # MISCELLANEOUS
! #-----------------------------------------------------------------------
! junit.pattern1=biz/xsoftware/test/**/Test*.class
! junit.pattern2=**/test/Test*.class
! build.sysclasspath=ignore
! # Change this value and I call you a complete idiot(cp = classpath)
! # ignore - trust build file to get the cp right
! # first - concatenate build file cp AFTER build runners cp
! # last - concatenate build runners cp AFTER build file cp
!
! #output = build.log
! #uncomment this to activate the logging
!
--- 1,113 ----
! #
! # NOTE: These are the properties used by build.xml and dist.xml
! # override them in ant.properties. Overriding them here will not
! # affect the build in any way. These are purely documentation here.
!
! #-----------------------------------------------------------------------
! # OUTPUT DIRECTORIES
! #-----------------------------------------------------------------------
! generated =output
!
! intermediate =${generated}/misc
! #will contain a generated manifest
! #any other intermediate files will go here too(none yet)
!
! build =${generated}/build
! #will contain all the *.class files after compile
! #will contain all the *.jpg files from ${properties}
! #will contain all the *.properties files from ${properties}
! #will contain all the *.gif files from ${properties}
! #will contain all the *.html files from ${properties}
! #will contain all the *.* files from ${properties}
! #will NOT contain *.html, *.htm, *.jpg, *.gif from ${javacode}
!
! jardist =${generated}/jardist
! #will contain a *.jar containing everything in ${build}
!
! dist =${generated}/dist
! #contains the release that gets released to the world
!
! codecov =${generated}/codecoverage
! #contains the code coverage reports of what the unit tests
! #covered
! codecov.temp =${generated}/codecoveragetemp
! #intermediate directory that contains instrumented classes to
! #run testall against so a code coverage report can be spit out.
!
! javadoc =${generated}/javadoc
! #contains the javadoc of biz.xsoftware.api
!
! junit.results =${generated}/test_results
! #contains junit test results
!
! staging =${generated}/staging
! projstaging =${generated}/staging/${name}
! #will contain all *.html generated by javadoc
! #will contain all *.html from ${javacode} directory(such as package.html)
! #will contain all *.jpg from ${javacode} directory
! #will contain all *.gif from ${javacode} directory
!
! rmi.stubs =${generated}/rmistubs
! #contains all Remote*.class files copied from ${build}
! #contains all *_stub.class files copied from ${build}
! #contains all *_skel.class files copied from ${build}
! #this directory is only created if RMI*.class exists
!
! test.area =${generated}/tests
! #This is sometimes created by JUnit tests to do temporary
! #testing. It usually gets deleted afterwards.
!
! #-----------------------------------------------------------------------
! # INPUT DIRECTORIES - don't change these after the project is started.
! #-----------------------------------------------------------------------
! input =input
! #contains all stuff that is an input into the build
!
! config =${input}
! #contains build.xml for the module, and any other build scripts
! #plus build property files
!
! javacode =${input}/javasrc
! #Contains all *.java source files
! #Contains all *.html files needed by javadoc
! #Contains all *.jpg files needed by javadoc
! #Contains all *.gif files needed by javadoc
! #Contains all *.* files needed by javadoc
! #Will NOT contain any *.jpg, *.gif, *.html, *.htm needed by application
! #Use ${properties} for *.jpg, *.gif, *.html, *.htm needed by application
!
! properties =${input}/properties
! #contains *.property files for i18n
! #contains *.gif needed for application
! #contains *.* any other resource files needed for application
!
! lib =${input}/lib
! #contains all *.jar needed to run the app
! #does not contain *.jars needed to compile the app(such as junit.jar)
!
! staging.in =${input}/staging
! #build copies everything from here to ${staging} so staging area can just be
! #zipped up or rpm'd up or whatever during the dist target.
! #typically, there will be another directory in here called <project>
! #or something. Some projects won't but most will.
!
! scripts =${input}/tests/scripts
! #DO NOT MODIFY. This is hardcoded in TestSuiteAllScripts.java.
! #contains all *.xml abbot scripts to do GUI testing.
! test.input =${input}/tests/input
! #for miscellaneous input to junit tests.
!
! #-----------------------------------------------------------------------
! # MISCELLANEOUS
! #-----------------------------------------------------------------------
! junit.pattern1=biz/xsoftware/test/**/Test*.class
! junit.pattern2=**/test/Test*.class
! build.sysclasspath=ignore
! # Change this value and I call you a complete idiot(cp = classpath)
! # ignore - trust build file to get the cp right
! # first - concatenate build file cp AFTER build runners cp
! # last - concatenate build runners cp AFTER build file cp
!
! #output = build.log
! #uncomment this to activate the logging
!
Index: ant.properties
===================================================================
RCS file: /cvsroot/mocklib/mocklib/bldfiles/ant.properties,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ant.properties 7 May 2005 18:26:17 -0000 1.1
--- ant.properties 5 Aug 2005 19:26:10 -0000 1.2
***************
*** 19,23 ****
javadoc.bottom = If you would like a shared copyright, contact me at dea...@us...<br> \
<a href=http://sourceforge.net> \
! <IMG src=http://sourceforge.net/sflogo.php?group_id=113040 width=210 height=62 border=0 alt=SourceForge Logo> \
</a>
--- 19,23 ----
javadoc.bottom = If you would like a shared copyright, contact me at dea...@us...<br> \
<a href=http://sourceforge.net> \
! <IMG src=http://sourceforge.net/sflogo.php?group_id=134303 width=210 height=62 border=0 alt=SourceForge Logo> \
</a>
|