From: SourceForge.net <no...@so...> - 2009-05-12 09:56:13
|
Feature Requests item #2790549, was opened at 2009-05-12 12:56 Message generated for change (Tracker Item Submitted) made by buhhunyx 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> ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=720018&aid=2790549&group_id=130558 |