You are viewing a plain text version of this content. The canonical link for it is here.
Posted to m2-dev@maven.apache.org by jv...@apache.org on 2004/08/23 02:27:44 UTC

cvs commit: maven-components/maven-plugins/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin PluginInstallMojo.java

jvanzyl     2004/08/22 17:27:44

  Modified:    maven-plugins/maven-plugin-plugin pom.xml
  Added:       maven-plugins/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin
                        PluginInstallMojo.java
  Log:
  o adding plugin install
  
    this is not the way i want the installing mechanism to work (i.e. copying
    the same class around ...) but folks want to install plugins so i'll just
    pop this in for now.
  
  Revision  Changes    Path
  1.5       +20 -0     maven-components/maven-plugins/maven-plugin-plugin/pom.xml
  
  Index: pom.xml
  ===================================================================
  RCS file: /home/cvs/maven-components/maven-plugins/maven-plugin-plugin/pom.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- pom.xml	9 Aug 2004 19:10:10 -0000	1.4
  +++ pom.xml	23 Aug 2004 00:27:44 -0000	1.5
  @@ -20,5 +20,25 @@
         <artifactId>maven-plugin-tools</artifactId>
         <version>2.0-SNAPSHOT</version>
       </dependency>
  +    <dependency>
  +      <groupId>maven</groupId>
  +      <artifactId>maven-model</artifactId>
  +      <version>2.0-SNAPSHOT</version>
  +    </dependency>
  +    <dependency>
  +      <groupId>maven</groupId>
  +      <artifactId>maven-core</artifactId>
  +      <version>2.0-SNAPSHOT</version>
  +    </dependency>
  +    <dependency>
  +      <groupId>maven</groupId>
  +      <artifactId>maven-artifact</artifactId>
  +      <version>2.0-SNAPSHOT</version>
  +    </dependency>
  +    <dependency>
  +      <groupId>maven</groupId>
  +      <artifactId>wagon-api</artifactId>
  +      <version>1.0-alpha-1-SNAPSHOT</version>
  +    </dependency>
     </dependencies>
   </project>
  
  
  
  1.3       +43 -56    maven-components/maven-plugins/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/PluginInstallMojo.java