You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by br...@apache.org on 2004/06/12 07:36:18 UTC

cvs commit: maven-plugins/clover/xdocs faq.fml navigation.xml properties.xml

brett       2004/06/11 22:36:18

  Modified:    clover/xdocs navigation.xml properties.xml
  Added:       clover/xdocs faq.fml
  Log:
  document how to override clover jar "cleanly"
  
  Revision  Changes    Path
  1.9       +1 -0      maven-plugins/clover/xdocs/navigation.xml
  
  Index: navigation.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/clover/xdocs/navigation.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- navigation.xml	2 May 2004 10:26:37 -0000	1.8
  +++ navigation.xml	12 Jun 2004 05:36:18 -0000	1.9
  @@ -30,6 +30,7 @@
       <menu name="Overview">
         <item name="Goals" href="/goals.html"/>
         <item name="Properties" href="/properties.html"/>
  +      <item name="FAQ" href="/faq.html"/>
       </menu>
     </body>
   
  
  
  
  1.10      +0 -13     maven-plugins/clover/xdocs/properties.xml
  
  Index: properties.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/clover/xdocs/properties.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- properties.xml	2 Apr 2004 21:12:02 -0000	1.9
  +++ properties.xml	12 Jun 2004 05:36:18 -0000	1.10
  @@ -57,19 +57,6 @@
             </td>
           </tr>
           <tr>
  -          <td>maven.clover.jar</td>
  -          <td>Yes</td>
  -          <td>
  -            Allows the user to override the Clover jar. This is especially 
  -            useful as the Clover jars are license-signed for a specific 
  -            project so you might want to use different jars for different 
  -            projects.
  -          </td>
  -          <td>
  -            Undefined
  -          </td>
  -        </tr>
  -        <tr>
             <td>maven.clover.report.html</td>
             <td>Yes</td>
             <td>
  
  
  
  1.1                  maven-plugins/clover/xdocs/faq.fml
  
  Index: faq.fml
  ===================================================================
  <?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.
   */
   -->
  
  <faqs title="Frequently Asked Questions">
  
    <part id="general">
      <title>General</title>
     
      <faq id="licensed-clover">
        <question>
          How do I force a different clover jar to be used?
        </question>
        <answer>
          <p>
            If you have a licensed clover JAR, or you want to upgrade the version used by the plugin, you will
            need to use a jar override to force the clover plugin to use the updated JAR.
          </p>
          <p>eg: To use a local copy of clover-1.2.4-registered.jar, add this to project.properties:</p>
            <source>maven.jar.override=on
  maven.jar.clover=lib/clover-1.2.4-registered.jar</source>
          <p>eg: To use version 1.2.5 from the repository, add this to project.properties:</p>
            <source>maven.jar.override=on
  maven.jar.clover=1.2.5</source>
        </answer>
      </faq>
  
    </part>  
  </faqs>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org