Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id F08A0200B32 for ; Thu, 23 Jun 2016 11:07:10 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id EF0E1160A59; Thu, 23 Jun 2016 09:07:10 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 41EA8160A58 for ; Thu, 23 Jun 2016 11:07:10 +0200 (CEST) Received: (qmail 45006 invoked by uid 500); 23 Jun 2016 09:07:09 -0000 Mailing-List: contact commits-help@karaf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@karaf.apache.org Delivered-To: mailing list commits@karaf.apache.org Received: (qmail 44997 invoked by uid 99); 23 Jun 2016 09:07:09 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jun 2016 09:07:09 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 48632E38B1; Thu, 23 Jun 2016 09:07:09 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: jbonofre@apache.org To: commits@karaf.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: karaf git commit: [KARAF-4591] Fixed UnknownFormatConversionException in the karaf-maven-plugin Date: Thu, 23 Jun 2016 09:07:09 +0000 (UTC) archived-at: Thu, 23 Jun 2016 09:07:11 -0000 Repository: karaf Updated Branches: refs/heads/karaf-4.0.x 73a9fb5c3 -> b3a77f7b1 [KARAF-4591] Fixed UnknownFormatConversionException in the karaf-maven-plugin Project: http://git-wip-us.apache.org/repos/asf/karaf/repo Commit: http://git-wip-us.apache.org/repos/asf/karaf/commit/b3a77f7b Tree: http://git-wip-us.apache.org/repos/asf/karaf/tree/b3a77f7b Diff: http://git-wip-us.apache.org/repos/asf/karaf/diff/b3a77f7b Branch: refs/heads/karaf-4.0.x Commit: b3a77f7b1b3fd260fea48374a0ea1403fe091196 Parents: 73a9fb5 Author: Roland Hauser Authored: Thu Jun 23 10:49:14 2016 +0200 Committer: Jean-Baptiste Onofré Committed: Thu Jun 23 11:07:01 2016 +0200 ---------------------------------------------------------------------- .../org/apache/karaf/tooling/features/GenerateDescriptorMojo.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/karaf/blob/b3a77f7b/tooling/karaf-maven-plugin/src/main/java/org/apache/karaf/tooling/features/GenerateDescriptorMojo.java ---------------------------------------------------------------------- diff --git a/tooling/karaf-maven-plugin/src/main/java/org/apache/karaf/tooling/features/GenerateDescriptorMojo.java b/tooling/karaf-maven-plugin/src/main/java/org/apache/karaf/tooling/features/GenerateDescriptorMojo.java index 9fcc4d5..df27aa6 100644 --- a/tooling/karaf-maven-plugin/src/main/java/org/apache/karaf/tooling/features/GenerateDescriptorMojo.java +++ b/tooling/karaf-maven-plugin/src/main/java/org/apache/karaf/tooling/features/GenerateDescriptorMojo.java @@ -333,7 +333,7 @@ public class GenerateDescriptorMojo extends MojoSupport { resolvedProjects.put(pomArtifact, resolvedProject); } catch (final ProjectBuildingException e) { throw new MojoExecutionException( - format("Maven-project could not be built for artifact %", pomArtifact), e); + format("Maven-project could not be built for artifact %s", pomArtifact), e); } } }