Return-Path: X-Original-To: apmail-maven-commits-archive@www.apache.org Delivered-To: apmail-maven-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 60C741097A for ; Sat, 16 Nov 2013 15:25:15 +0000 (UTC) Received: (qmail 17673 invoked by uid 500); 16 Nov 2013 15:25:14 -0000 Delivered-To: apmail-maven-commits-archive@maven.apache.org Received: (qmail 17572 invoked by uid 500); 16 Nov 2013 15:25:14 -0000 Mailing-List: contact commits-help@maven.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@maven.apache.org Delivered-To: mailing list commits@maven.apache.org Received: (qmail 17564 invoked by uid 99); 16 Nov 2013 15:25:14 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 16 Nov 2013 15:25:14 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 16 Nov 2013 15:25:13 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 6E2D32388A56; Sat, 16 Nov 2013 15:24:53 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1542527 - /maven/plugins/trunk/maven-ear-plugin/src/main/java/org/apache/maven/plugin/ear/EarMojo.java Date: Sat, 16 Nov 2013 15:24:53 -0000 To: commits@maven.apache.org From: rfscholte@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20131116152453.6E2D32388A56@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rfscholte Date: Sat Nov 16 15:24:53 2013 New Revision: 1542527 URL: http://svn.apache.org/r1542527 Log: improve comment Modified: maven/plugins/trunk/maven-ear-plugin/src/main/java/org/apache/maven/plugin/ear/EarMojo.java Modified: maven/plugins/trunk/maven-ear-plugin/src/main/java/org/apache/maven/plugin/ear/EarMojo.java URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-ear-plugin/src/main/java/org/apache/maven/plugin/ear/EarMojo.java?rev=1542527&r1=1542526&r2=1542527&view=diff ============================================================================== --- maven/plugins/trunk/maven-ear-plugin/src/main/java/org/apache/maven/plugin/ear/EarMojo.java (original) +++ maven/plugins/trunk/maven-ear-plugin/src/main/java/org/apache/maven/plugin/ear/EarMojo.java Sat Nov 16 15:24:53 2013 @@ -658,7 +658,7 @@ public class EarMojo if ( original.isFile() ) { // Create a temporary work directory - // MEAR-167 use uri as directory to prevent merging of artifacts with the same name + // MEAR-167 use uri as directory to prevent merging of artifacts with the same artifactId workDirectory = new File( new File( generatedDescriptorLocation, "temp" ), module.getUri() ); workDirectory.mkdirs(); @@ -668,7 +668,6 @@ public class EarMojo zipUnArchiver.setSourceFile( original ); zipUnArchiver.setDestDirectory( workDirectory ); zipUnArchiver.extract(); - } else {