From: Jeff J. <jef...@us...> - 2007-06-24 04:00:12
|
jeffjensen 07/06/23 21:00:08 Modified: cobertura plugin.jelly Log: Update dep groups and correct typo in code. Revision Changes Path 1.23 +7 -7 maven-plugins/cobertura/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/cobertura/plugin.jelly,v retrieving revision 1.22 retrieving revision 1.23 diff -u -r1.22 -r1.23 --- plugin.jelly 24 Jun 2007 03:06:12 -0000 1.22 +++ plugin.jelly 24 Jun 2007 04:00:06 -0000 1.23 @@ -33,14 +33,14 @@ <ant:pathelement path="${plugin.getDependencyPath('urbanophile:java-getopt')}"/> <ant:pathelement path="${plugin.getDependencyPath('javancss:javancss')}"/> <ant:pathelement path="${plugin.getDependencyPath('javancss:ccl')}"/> - <ant:pathelement path="${plugin.getDependencyPath('asm')}"/> - <ant:pathelement path="${plugin.getDependencyPath('asm-tree')}"/> - <ant:pathelement path="${plugin.getDependencyPath('oro')}"/> - <ant:pathelement path="${plugin.getDependencyPath('log4j')}"/> - <ant:pathelement path="${plugin.getDependencyPath('cobertura')}"/> + <ant:pathelement path="${plugin.getDependencyPath('asm:asm')}"/> + <ant:pathelement path="${plugin.getDependencyPath('asm:asm-tree')}"/> + <ant:pathelement path="${plugin.getDependencyPath('oro:oro')}"/> + <ant:pathelement path="${plugin.getDependencyPath('log4j:log4j')}"/> + <ant:pathelement path="${plugin.getDependencyPath('net.sourceforge.cobertura:cobertura')}"/> </ant:path> - <ant:taskdef classpath="${plugin.getDependencyPath('cobertura')}" resource="tasks.properties" /> + <ant:taskdef classpath="${plugin.getDependencyPath('net.sourceforge.cobertura:cobertura')}" resource="tasks.properties" /> <maven:get plugin="maven-xdoc-plugin" property="maven.docs.dest" var="docsDest"/> <j:set var="coberturaDocs" value="${docsDest}/cobertura"/> @@ -294,7 +294,7 @@ <ant:cobertura-report srcdir="${sourceDir}" destdir="${coberturaDocs}" datafile="${maven.cobertura.datafile}" format="${maven.cobertura.format}" - maxmemory="$(maven.cobertura.report.maxmemory)"> + maxmemory="${maven.cobertura.report.maxmemory}"> <ant:classpath> <ant:path refid="cobertura.classpath"/> <ant:path refid="maven.dependency.classpath"/> |