You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by ep...@apache.org on 2003/12/10 22:16:33 UTC

cvs commit: maven-plugins/artifact/xdocs changes.xml

epugh       2003/12/10 13:16:33

  Modified:    artifact/src/main/org/apache/maven/artifact/deployer
                        DefaultArtifactDeployer.java
               artifact/xdocs changes.xml
  Log:
  Allow plugin to deploy plugins properly.
  
  Revision  Changes    Path
  1.15      +5 -1      maven-plugins/artifact/src/main/org/apache/maven/artifact/deployer/DefaultArtifactDeployer.java
  
  Index: DefaultArtifactDeployer.java
  ===================================================================
  RCS file: /home/cvs/maven-plugins/artifact/src/main/org/apache/maven/artifact/deployer/DefaultArtifactDeployer.java,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- DefaultArtifactDeployer.java	5 Sep 2003 14:53:52 -0000	1.14
  +++ DefaultArtifactDeployer.java	10 Dec 2003 21:16:33 -0000	1.15
  @@ -547,6 +547,10 @@
           {
               return "jar";
           }
  +        else if (type.equals("plugin"))
  +        {
  +            return "jar";
  +        }
           return type;
       }
   }
  
  
  
  1.8       +3 -0      maven-plugins/artifact/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/artifact/xdocs/changes.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- changes.xml	16 Nov 2003 15:17:27 -0000	1.7
  +++ changes.xml	10 Dec 2003 21:16:33 -0000	1.8
  @@ -7,6 +7,9 @@
   
     <body>
       <release version="1.1" date="in CVS">
  +      <action dev="epugh" type="update">
  +        Allow the deploy goals to work with maven.multiproject.type=plugin
  +      </action>    	
       </release>
       <release version="1.0" date="2003-09-29">
         <action dev="dion" type="update">
  
  
  

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