brett       2004/05/10 16:36:35

  Modified:    artifact/src/main/org/apache/maven/artifact/deployer
                        DefaultArtifactDeployer.java
               artifact/xdocs changes.xml
  Log:
  PR: MPUBERJAR-5
  give uberjar type a jar extension
  
  Revision  Changes    Path
  1.18      +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.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- DefaultArtifactDeployer.java      2 May 2004 15:04:34 -0000       1.17
  +++ DefaultArtifactDeployer.java      10 May 2004 23:36:34 -0000      1.18
  @@ -513,6 +513,10 @@
           {
               return "jar";
           }
  +        else if (type.equals("uberjar"))
  +        {
  +            return "jar";
  +        }
           return type;
       }
   }
  
  
  
  1.12      +1 -0      maven-plugins/artifact/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/artifact/xdocs/changes.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- changes.xml       2 May 2004 11:34:52 -0000       1.11
  +++ changes.xml       10 May 2004 23:36:34 -0000      1.12
  @@ -26,6 +26,7 @@
     </properties>
     <body>
       <release version="1.2-SNAPSHOT" date="in CVS">
  +      <action dev="brett" type="fix" issue="MPUBERJAR-5">Add uberjar extension 
mapping.</action>
       </release>
       <release version="1.1" date="2004-03-10">
         <action dev="epugh" type="update">Allow the deploy goals to work with 
maven.multiproject.type=plugin</action>
  
  
  

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

Reply via email to