From: Carlos S. <car...@us...> - 2005-06-15 18:01:56
|
carlossg 05/06/15 11:01:50 Modified: cobertura plugin.properties cobertura/xdocs properties.xml Log: Reset default location of datafile. Seems it doesn't work if changed Revision Changes Path 1.3 +3 -1 maven-plugins/cobertura/plugin.properties Index: plugin.properties =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/cobertura/plugin.properties,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- plugin.properties 15 Jun 2005 16:49:42 -0000 1.2 +++ plugin.properties 15 Jun 2005 18:01:50 -0000 1.3 @@ -3,4 +3,6 @@ maven.cobertura.junit.fork=yes maven.cobertura.instrumentation.includes=**/*.class maven.cobertura.instrumentation.excludes=NOT_DEFINED -maven.cobertura.datafile=${maven.cobertura.dir}/cobertura.ser + +# don't change this seems it doesn't work +maven.cobertura.datafile=${basedir}/cobertura.ser 1.3 +2 -1 maven-plugins/cobertura/xdocs/properties.xml Index: properties.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/cobertura/xdocs/properties.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- properties.xml 15 Jun 2005 16:49:43 -0000 1.2 +++ properties.xml 15 Jun 2005 18:01:50 -0000 1.3 @@ -73,10 +73,11 @@ </tr> <tr> <td>maven.cobertura.datafile</td> - <td>${maven.cobertura.dir}/cobertura.ser</td> + <td>${basedir}/cobertura.ser</td> <td>Yes</td> <td> Specify the name of the file to use for storing the metadata about your classes. + Seems cobertura doesn't work correctly if changed (to be verified) </td> </tr> </table> |