From: SourceForge.net <no...@so...> - 2009-05-12 13:53:39
|
Feature Requests item #2790549, was opened at 2009-05-12 04:56 Message generated for change (Comment added) made by lewijw You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=720018&aid=2790549&group_id=130558 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: aLeXx (buhhunyx) Assigned to: Nobody/Anonymous (nobody) Summary: ant: allow to specify multiple directories with sources Initial Comment: I have project directory with set of subproject. Following call doesn't include sources to report: <dirset id="src.dirset" dir="${prjDir}" > <include name="**/src" /> </dirset> <property name="src.dir" refid="src.dirset"/> <cobertura-report format="html" datafile="${cobertura.ser}" destdir="${testResultsDir}/cobertura-report" srcdir="${src.dir}"/> Can be possible to specify source directories using nested dirset instead of filesets: <cobertura-report format="html" datafile="${cobertura.ser}" destdir="${testResultsDir}/cobertura-report"> <dirset dir="${prjDir}" > <include name="**/src" /> </dirset> </cobertura-report> ---------------------------------------------------------------------- >Comment By: John Lewis (lewijw) Date: 2009-05-12 08:53 Message: What version of Cobertura are you using? Dirset support was added to 1.9.1. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=720018&aid=2790549&group_id=130558 |