avoid needing dependencies for a simple maven clean

should cvsignore the file, or set up a way to tell clean there is a new file to clean


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@115633 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
brett 2004-07-03 02:08:16 +00:00
parent 996ffe2b2b
commit 5269df6d5e
3 changed files with 4 additions and 6 deletions

View File

@ -240,9 +240,4 @@
</classpath> </classpath>
</java> </java>
</goal> </goal>
<postGoal name="clean:clean">
<ant:delete file="${basedir}/jcoverage.ser" quiet="true" failonerror="false"/>
</postGoal>
</project> </project>

View File

@ -23,7 +23,7 @@
<pomVersion>3</pomVersion> <pomVersion>3</pomVersion>
<id>maven-jcoverage-plugin</id> <id>maven-jcoverage-plugin</id>
<name>Maven JCoverage plugin</name> <name>Maven JCoverage plugin</name>
<currentVersion>1.0.5</currentVersion> <currentVersion>1.0.6-SNAPSHOT</currentVersion>
<package>org.apache.maven.jcoveragereport</package> <package>org.apache.maven.jcoveragereport</package>
<description>This plugin provides coverage analysis of your source-code based on the open-source jcoverage tool.</description> <description>This plugin provides coverage analysis of your source-code based on the open-source jcoverage tool.</description>
<shortDescription>This plugin provides coverage analysis of your source-code based on the open-source jcoverage tool.</shortDescription> <shortDescription>This plugin provides coverage analysis of your source-code based on the open-source jcoverage tool.</shortDescription>

View File

@ -24,6 +24,9 @@
<author email="evenisse@ifrance.com">Emmanuel Venisse</author> <author email="evenisse@ifrance.com">Emmanuel Venisse</author>
</properties> </properties>
<body> <body>
<release version="1.0.6-SNAPSHOT" date="in CVS">
<action dev="brett" type="fix">Remove postGoal on clean to avoid introducing all these dependencies on a simple clean.</action>
</release>
<release version="1.0.5" date="2004-06-28"> <release version="1.0.5" date="2004-06-28">
<action dev="evenisse" type="fix" issue="MPJCOVERAGE-8">Fixed report generation fails when no java source present.</action> <action dev="evenisse" type="fix" issue="MPJCOVERAGE-8">Fixed report generation fails when no java source present.</action>
<action dev="brett" type="fix" issue="MPJCOVERAGE-1">Handle multiple source directories correctly</action> <action dev="brett" type="fix" issue="MPJCOVERAGE-1">Handle multiple source directories correctly</action>