jvanzyl     2004/02/14 17:52:32

  Modified:    maven-plugins/maven-jar-plugin project.xml
  Added:       maven-plugins/maven-jar-plugin/src/resources/maven
                        plugin.xml
               maven-plugins/maven-jar-plugin/src/resources/plexus
                        components.xml
  Removed:     maven-plugins/maven-jar-plugin/src/meta-inf components.xml
                        plugin.xml
  Log:
  o using src/resources convention
  
  Revision  Changes    Path
  1.2       +1 -16     maven-components/maven-plugins/maven-jar-plugin/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/maven-components/maven-plugins/maven-jar-plugin/project.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- project.xml       6 Feb 2004 23:34:32 -0000       1.1
  +++ project.xml       15 Feb 2004 01:52:32 -0000      1.2
  @@ -116,23 +116,12 @@
       -->
       <resources>
         <resource>
  -        <directory>src/meta-inf</directory>
  -        <targetPath>META-INF/plexus</targetPath>
  +        <directory>src/resources</directory>
         </resource>
       </resources>
     </build>
   
     <reports>
  -    <!--
  -    <report>maven-checkstyle-plugin</report>
  -    <report>maven-junit-report-plugin</report>
  -    <report>maven-simian-plugin</report>
  -    -->
  -    <report>maven-jxr-plugin</report>
  -    <report>maven-javadoc-plugin</report>
  -    <report>maven-changes-plugin</report>
  -    <report>maven-changelog-plugin</report>
  -    <!--
       <report>maven-faq-plugin</report> will run by itself but won't register
       <report>maven-file-activity-plugin</report> can't parse jelly script
       <report>maven-developer-activity-plugin</report>
  @@ -140,10 +129,6 @@
       <report>maven-jdepend-plugin</report> works itself but not with site, also it 
uses maven-classpath which is really just maven_home/lib
       <report>maven-jellydoc-plugin</report> ${genDocs} not available in jelly.plugin
       <report>maven-pmd-plugin</report> classpath is borked because of 
getDependencyPath("foo:foo")
  -
  -    We have different uses everywhere which is a result of no documenation.
  -
  -    -->
     </reports>
   
   </project>
  
  
  
  1.1                  
maven-components/maven-plugins/maven-jar-plugin/src/resources/maven/plugin.xml
  
  Index: plugin.xml
  ===================================================================
  <plugin>
    <id>jar</id>
    <goals>
      <goal>
        <name>jar</name>
        <prereqs>
          <prereq>test</prereq>
        </prereqs>
        <parameters>
          <parameter>
            <key>jarName</key>
            <value>maven.final.name</value>
          </parameter>
          <parameter>
            <key>outputDirectory</key>
            <value>maven.build.dir</value>
          </parameter>
          <parameter>
            <key>basedir</key>
            <value>maven.build.dest</value>
          </parameter>
          <parameter>
            <key>project</key>
            <value>project</value>
          </parameter>
        </parameters>
      </goal>
    </goals>
  </plugin>
  
  
  1.1                  
maven-components/maven-plugins/maven-jar-plugin/src/resources/plexus/components.xml
  
  Index: components.xml
  ===================================================================
  <component-set>
  <components>    
    <component>
      <role>org.apache.maven.plugin.Plugin</role>
      <role-hint>jar</role-hint>
      <implementation>org.apache.maven.plugin.JarPlugin</implementation>
    </component>
  </components>
  </component-set>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to