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 53634200BAD for ; Tue, 11 Oct 2016 00:05:22 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 52175160AF1; Mon, 10 Oct 2016 22:05:22 +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 98FE4160AEB for ; Tue, 11 Oct 2016 00:05:21 +0200 (CEST) Received: (qmail 2157 invoked by uid 500); 10 Oct 2016 22:05:20 -0000 Mailing-List: contact issues-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 issues@maven.apache.org Received: (qmail 1952 invoked by uid 99); 10 Oct 2016 22:05:20 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 10 Oct 2016 22:05:20 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 6E85D2C0059 for ; Mon, 10 Oct 2016 22:05:20 +0000 (UTC) Date: Mon, 10 Oct 2016 22:05:20 +0000 (UTC) From: "Giedrius Noreikis (JIRA)" To: issues@maven.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (MDEP-541) Allow for a space character as a pathSeparator in dependency:build-classpath MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Mon, 10 Oct 2016 22:05:22 -0000 Giedrius Noreikis created MDEP-541: -------------------------------------- Summary: Allow for a space character as a pathSeparator in dependency:build-classpath Key: MDEP-541 URL: https://issues.apache.org/jira/browse/MDEP-541 Project: Maven Dependency Plugin Issue Type: Improvement Components: build-classpath Reporter: Giedrius Noreikis Currently, the {{dependency:build-classpath}} goal does not allow a space character to be specified as a {{pathSeparator}}, which is necessary to generate {{Class-Path}} values for manifests. Because of a check {{isPathSepSet = StringUtils.isNotEmpty( pathSeparator )}} in {{BuildClasspathMojo.java}}, the parameter gets ignored in this case, and the classpath is built with a default separator. The possible workaround is to fix the path with {{build-helper:regex-property}}: {code:xml} org.codehaus.mojo build-helper-maven-plugin fix-classpath-for-manifest prepare-package regex-property appClasspath ${appClasspath} ; false {code} but a fix would allow for a more straightforward solution. -- This message was sent by Atlassian JIRA (v6.3.4#6332)