Updated to Clover Ant 1.3_01.

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@115764 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
vmassol 2004-07-10 13:04:46 +00:00
parent 0853ab5ce1
commit 191e870e08
3 changed files with 23 additions and 6 deletions

View File

@ -55,12 +55,12 @@
<ant:pathelement path="${maven.clover.jar}"/>
</j:when>
<j:otherwise>
<ant:pathelement path="${plugin.getDependencyPath('clover')}"/>
<ant:pathelement path="${plugin.getDependencyPath('clover:clover-ant')}"/>
</j:otherwise>
</j:choose>
</ant:path>
<ant:taskdef resource="clovertasks"/>
<ant:taskdef resource="clovertasks"/>
<ant:typedef resource="clovertypes"/>
<j:set var="cloverDatabase"
@ -74,7 +74,13 @@
<ant:mkdir dir="${maven.clover.build.classes}"/>
<ant:mkdir dir="${maven.clover.database.dir}"/>
<ant:mkdir dir="${cloverReportDirectory}"/>
<!-- Add the Clover license to the classpath. -->
<j:invokeStatic className="java.lang.System" method="setProperty">
<j:arg type="java.lang.String" value="clover.license.path"/>
<j:arg type="java.lang.String" value="${plugin.getDependencyPath('clover:clover-30day-eval')}"/>
</j:invokeStatic>
</goal>
<!--

View File

@ -23,7 +23,7 @@
<pomVersion>3</pomVersion>
<id>maven-clover-plugin</id>
<name>Maven Clover Plugin</name>
<currentVersion>1.5</currentVersion>
<currentVersion>1.6-SNAPSHOT</currentVersion>
<description/>
<shortDescription>Produce Clover reports</shortDescription>
<url>http://maven.apache.org/reference/plugins/clover/</url>
@ -102,11 +102,17 @@
<dependencies>
<dependency>
<groupId>clover</groupId>
<artifactId>clover</artifactId>
<version>1.2.3</version>
<artifactId>clover-ant</artifactId>
<version>1.3_01</version>
<properties>
<classloader>root</classloader>
</properties>
</dependency>
<dependency>
<groupId>clover</groupId>
<artifactId>clover-30day-eval</artifactId>
<version>1.0</version>
<type>license</type>
</dependency>
</dependencies>
</project>

View File

@ -25,6 +25,11 @@
<author email="evenisse@ifrance.com">Emmanuel Venisse</author>
</properties>
<body>
<release version="1.6-SNAPSHOT" date="in CVS">
<action dev="vmassol" type="update">
Updated to Clover Ant 1.3_01.
</action>
</release>
<release version="1.5" date="2004-05-15">
<action dev="vmassol" type="fix">Do not execute Clover if there are no tests to run Clover on. This prevents an error happening in the
<code>clover:on</code>goal.