From: Eric P. <de...@us...> - 2004-07-31 11:42:55
|
dep4b 04/07/31 04:42:48 Modified: findbugs/xdocs changes.xml navigation.xml Added: findbugs maven.xml Log: add new sample report to docs Revision Changes Path 1.9 +5 -0 maven-plugins/findbugs/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/xdocs/changes.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- changes.xml 29 Jul 2004 18:09:50 -0000 1.8 +++ changes.xml 31 Jul 2004 11:42:48 -0000 1.9 @@ -6,6 +6,11 @@ </properties> <body> + <release version="0.8.3-SNAPSHOT" date="in cvs"> + <action dev="epugh" type="add"> + Add example Findbugs report to site docs. + </action> + </release> <release version="0.8.2" date="29-JULY-2004"> <action dev="epugh" type="add"> Switch to maven friendly raw report format. Add new "pmd" style report. 1.5 +1 -0 maven-plugins/findbugs/xdocs/navigation.xml Index: navigation.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/xdocs/navigation.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- navigation.xml 29 Jul 2004 18:09:50 -0000 1.4 +++ navigation.xml 31 Jul 2004 11:42:48 -0000 1.5 @@ -13,6 +13,7 @@ <item name="Goals" href="/goals.html"/> <item name="Properties" href="/properties.html"/> <item name="Tasks" href="/tasks.html"/> + <item name="Example Report" href="/sample-findbugs-report.html"/> </menu> <menu name="Downloads"> <item name="0.8.2" href="http://maven-plugins.sourceforge.net/maven/plugins/maven-findbugs-plugin-0.8.2.jar"/> 1.1 maven-plugins/findbugs/maven.xml Index: maven.xml =================================================================== <project default="plugin" xmlns:j="jelly:core" xmlns:m="maven"> <preGoal name="site"> <j:set var="maven.multiproject.includes" value="**\plugin-test\project.xml"/> <j:set var="goal" value="findbugs"/> <attainGoal name="multiproject:goal"/> <mkdir dir="target/generated-xdocs/"/> <copy file="src/plugin-test/target/generated-xdocs/findbugs-report.xml" tofile="target/generated-xdocs/sample-findbugs-report.xml"/> </preGoal> </project> |