From: Carlos S. <car...@us...> - 2005-06-10 06:25:02
|
carlossg 05/06/09 23:24:56 Added: cobertura/xdocs changes.xml goals.xml navigation.xml properties.xml Log: Initial import Revision Changes Path 1.1 maven-plugins/cobertura/xdocs/changes.xml Index: changes.xml =================================================================== <?xml version="1.0" encoding="UTF-8"?> <!-- /* * Copyright 2001-2004 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ --> <document> <properties> <title>Changes</title> </properties> <body> <release version="1.0-SNAPSHOT" date="IN CVS"> </release> </body> </document> 1.1 maven-plugins/cobertura/xdocs/goals.xml Index: goals.xml =================================================================== <?xml version="1.0" encoding="UTF-8"?> <!-- /* * Copyright 2001-2004 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ --> <document> <properties> <title>Maven Cobertura plugin Goals</title> </properties> <body> <goals> <goal> <name>cobertura</name> <description>Generate HTML test coverage reports with Cobertura</description> </goal> <goal> <name>cobertura:html-report</name> <description>Generate HTML test coverage reports with Cobertura</description> </goal> <goal> <name>cobertura:on</name> <description>perform the coverage analysis</description> </goal> <goal> <name>maven-cobertura-plugin:deregister</name> <description>Deregister the cobertura plugin</description> </goal> <goal> <name>maven-cobertura-plugin:register</name> <description>Register the maven-cobertura-plugin.</description> </goal> <goal> <name>maven-cobertura-plugin:report</name> <description>Run the default report (html).</description> </goal> </goals> </body> </document> 1.1 maven-plugins/cobertura/xdocs/navigation.xml Index: navigation.xml =================================================================== <?xml version="1.0" encoding="ISO-8859-1" ?> <!-- /* * Copyright 2001-2004 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ --> <project> <properties> <title>Cobertura Plugin</title> </properties> <body> <links> <item name="Maven" href="http://maven.apache.org/"/> <item name="Cobertura" href="http://cobertura.sourceforge.net/"/> </links> <menu name="Home"> <item name="Cobertura plugin Project" href="/index.html"/> </menu> <menu name="Overview"> <item name="Properties" href="/properties.html"/> <item name="Goals" href="/goals.html"/> </menu> </body> </project> 1.1 maven-plugins/cobertura/xdocs/properties.xml Index: properties.xml =================================================================== <?xml version="1.0" encoding="ISO-8859-1" ?> <!-- /* * Copyright 2001-2004 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ --> <document> <properties> <title>Cobertura Plugin Properties</title> </properties> <body> <section name="Plugin's properties"> <table> <tr> <th>Property</th> <th>Default</th> <th>Optional?</th> <th>Description</th> </tr> <tr> <td>maven.cobertura.dir</td> <td>${maven.build.dir}/cobertura</td> <td>Yes</td> <td> Specifies the root directory for cobertura output files. </td> </tr> <tr> <td>maven.cobertura.instrumentation</td> <td>${maven.cobertura.dir}/classes</td> <td>Yes</td> <td> Specifies the build directory for the instrumented classes. </td> </tr> <tr> <td>maven.cobertura.instrumentation.includes</td> <td>**/*.class</td> <td>Yes</td> <td> Specifies the pattern for the included classes of instrumentation. </td> </tr> <tr> <td>maven.cobertura.instrumentation.excludes</td> <td>Not defined</td> <td>Yes</td> <td> Specifies the pattern for the excluded classes of instrumentation. It's a comma separated property. </td> </tr> <tr> <td>maven.cobertura.junit.fork</td> <td>yes</td> <td>Yes</td> <td> Specifies the fork attribute for the JUnit test for the coverage analysis. </td> </tr> </table> </section> </body> </document> |