[jira] (MASSEMBLY-696) Internal Regexp Error with Windows Paths

2014-04-23 Thread Kenney Westerhof (JIRA)

[ 
https://jira.codehaus.org/browse/MASSEMBLY-696?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=345250#comment-345250
 ] 

Kenney Westerhof commented on MASSEMBLY-696:


Awesome, thank you!

> Internal Regexp Error with Windows Paths
> 
>
> Key: MASSEMBLY-696
> URL: https://jira.codehaus.org/browse/MASSEMBLY-696
> Project: Maven Assembly Plugin
>  Issue Type: Bug
>Affects Versions: 2.5
> Environment: Windows 7
> maven-assembly-plugin trunk@e785abb
>Reporter: Kenney Westerhof
>Assignee: Karl-Heinz Marbaise
> Fix For: 2.5
>
> Attachments: MASSEMBLY-696.patch, MASSEMBLY-696.tar.gz
>
>
> On windows the Assembly plugin shows this error:
> {code}
> org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute 
> goal org.apache.maven.plugins:maven-assembly-plugin:2.5-SNAPSHOT:single 
> (default-cli) on project myproject: Execution default-cli of goal 
> org.apache.maven.plugins:maven-assembly-plugin:2.5-SNAPSHOT:single failed: 
> Unexpected internal error near index 1
> \
>  ^
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:224)
> 
> Caused by: java.util.regex.PatternSyntaxException: Unexpected internal error 
> near index 1
> \
>  ^
> at java.util.regex.Pattern.error(Pattern.java:1924)
> at java.util.regex.Pattern.compile(Pattern.java:1671)
> at java.util.regex.Pattern.(Pattern.java:1337)
> at java.util.regex.Pattern.compile(Pattern.java:1022)
> at java.lang.String.split(String.java:2313)
> at java.lang.String.split(String.java:2355)
> at 
> org.apache.maven.plugin.assembly.utils.AssemblyFormatUtils.fixRelativeRefs(AssemblyFormatUtils.java:509)
> {code}



--
This message was sent by Atlassian JIRA
(v6.1.6#6162)


[jira] (MASSEMBLY-696) Internal Regexp Error with Windows Paths

2014-04-22 Thread Karl-Heinz Marbaise (JIRA)

 [ 
https://jira.codehaus.org/browse/MASSEMBLY-696?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl-Heinz Marbaise closed MASSEMBLY-696.
-

   Resolution: Fixed
Fix Version/s: 2.5
 Assignee: Karl-Heinz Marbaise

patch applied in [r1589280|http://svn.apache.org/r1589280]
Thanks for the patch.

> Internal Regexp Error with Windows Paths
> 
>
> Key: MASSEMBLY-696
> URL: https://jira.codehaus.org/browse/MASSEMBLY-696
> Project: Maven Assembly Plugin
>  Issue Type: Bug
>Affects Versions: 2.5
> Environment: Windows 7
> maven-assembly-plugin trunk@e785abb
>Reporter: Kenney Westerhof
>Assignee: Karl-Heinz Marbaise
> Fix For: 2.5
>
> Attachments: MASSEMBLY-696.patch, MASSEMBLY-696.tar.gz
>
>
> On windows the Assembly plugin shows this error:
> {code}
> org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute 
> goal org.apache.maven.plugins:maven-assembly-plugin:2.5-SNAPSHOT:single 
> (default-cli) on project myproject: Execution default-cli of goal 
> org.apache.maven.plugins:maven-assembly-plugin:2.5-SNAPSHOT:single failed: 
> Unexpected internal error near index 1
> \
>  ^
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:224)
> 
> Caused by: java.util.regex.PatternSyntaxException: Unexpected internal error 
> near index 1
> \
>  ^
> at java.util.regex.Pattern.error(Pattern.java:1924)
> at java.util.regex.Pattern.compile(Pattern.java:1671)
> at java.util.regex.Pattern.(Pattern.java:1337)
> at java.util.regex.Pattern.compile(Pattern.java:1022)
> at java.lang.String.split(String.java:2313)
> at java.lang.String.split(String.java:2355)
> at 
> org.apache.maven.plugin.assembly.utils.AssemblyFormatUtils.fixRelativeRefs(AssemblyFormatUtils.java:509)
> {code}



--
This message was sent by Atlassian JIRA
(v6.1.6#6162)


[jira] (MASSEMBLY-696) Internal Regexp Error with Windows Paths

2014-04-21 Thread Kenney Westerhof (JIRA)

[ 
https://jira.codehaus.org/browse/MASSEMBLY-696?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=345135#comment-345135
 ] 

Kenney Westerhof edited comment on MASSEMBLY-696 at 4/21/14 8:52 AM:
-

I'm referencing old code because the bug has been in there that long.

I don't understand your question. What do you need the revision for?  And what 
revision exactly?

The patch will work against any revision after 1073964, when that line of code 
was introduced (svn blame/praise/annotate/ann). -And {{trunk}} is a symbolic 
name referencing the latest revision in any subversion repository- 
{color:grey}my bad, I should have said {{HEAD}}{color} (1588817 at the time of 
this writing); I was being sarcastic, my apologies, this doesn't always come 
across on digital media!

Also, it's really not necessary to make an integration test for this one. It's 
the _unit_ tests for that code that are incomplete as they only check Unix 
style pathnames, while the code explicitly attempts to deal with windows style 
paths aswell.

In any case, I've concocted an integration test as per your request. 

It took me quite a while to figure out what exactly triggers this code. It 
occurs when specifying {{true}} dependencies and either 
specifying a non-default value for {{}} or {{}}. I 
added some debug to the assembly plugin, and it breaks when {{fixRelativeRefs}} 
is called with {{.\log4j-1.2.17.jar/}}. That this doesn't happen more often is 
because most code calling {{fixRelativeRefs}} duplicates code from that method 
(i.e. stripping {{./}}, {{../}} etc).


was (Author: kenneyw):
I'm referencing old code because the bug has been in there that long.

I don't understand your question. What do you need the revision for?  And what 
revision exactly?

The patch will work against any revision after 1073964, when that line of code 
was introduced (svn blame/praise/annotate/ann). And {{trunk}} is a symbolic 
name referencing the latest revision in any subversion repository (1588817 at 
the time of this writing); I was being sarcastic, my apologies, this doesn't 
always come across on digital media!

Also, it's really not necessary to make an integration test for this one. It's 
the _unit_ tests for that code that are incomplete as they only check Unix 
style pathnames, while the code explicitly attempts to deal with windows style 
paths aswell.

In any case, I've concocted an integration test as per your request. 

It took me quite a while to figure out what exactly triggers this code. It 
occurs when specifying {{true}} dependencies and either 
specifying a non-default value for {{}} or {{}}. I 
added some debug to the assembly plugin, and it breaks when {{fixRelativeRefs}} 
is called with {{.\log4j-1.2.17.jar/}}. That this doesn't happen more often is 
because most code calling {{fixRelativeRefs}} duplicates code from that method 
(i.e. stripping {{./}}, {{../}} etc).

I've never had to do so much work to simply add {{\\}} to an obviously broken 
line of code! ;-) I could have commited the fix in svn this myself, but since 
I've not been involved in the project recently I though it wise to be polite 
and follow the proper channels.

> Internal Regexp Error with Windows Paths
> 
>
> Key: MASSEMBLY-696
> URL: https://jira.codehaus.org/browse/MASSEMBLY-696
> Project: Maven Assembly Plugin
>  Issue Type: Bug
>Affects Versions: 2.5
> Environment: Windows 7
> maven-assembly-plugin trunk@e785abb
>Reporter: Kenney Westerhof
> Attachments: MASSEMBLY-696.patch, MASSEMBLY-696.tar.gz
>
>
> On windows the Assembly plugin shows this error:
> {code}
> org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute 
> goal org.apache.maven.plugins:maven-assembly-plugin:2.5-SNAPSHOT:single 
> (default-cli) on project myproject: Execution default-cli of goal 
> org.apache.maven.plugins:maven-assembly-plugin:2.5-SNAPSHOT:single failed: 
> Unexpected internal error near index 1
> \
>  ^
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:224)
> 
> Caused by: java.util.regex.PatternSyntaxException: Unexpected internal error 
> near index 1
> \
>  ^
> at java.util.regex.Pattern.error(Pattern.java:1924)
> at java.util.regex.Pattern.compile(Pattern.java:1671)
> at java.util.regex.Pattern.(Pattern.java:1337)
> at java.util.regex.Pattern.compile(Pattern.java:1022)
> at java.lang.String.split(String.java:2313)
> at java.lang.String.split(String.java:2355)
> at 
> org.apache.maven.plugin.assembly.utils.AssemblyFormatUtils.fixRelativeRefs(AssemblyFormatUtils.java:509)
> {code}



--
This message was sent by Atlassian JIRA
(v6.1.6#6162)


[jira] (MASSEMBLY-696) Internal Regexp Error with Windows Paths

2014-04-20 Thread Kenney Westerhof (JIRA)

 [ 
https://jira.codehaus.org/browse/MASSEMBLY-696?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Kenney Westerhof updated MASSEMBLY-696:
---

Attachment: MASSEMBLY-696.tar.gz

tar xvfz MASSEMBLY-696.tar.gz && cd MASSEMBLY-696 && mvn package

> Internal Regexp Error with Windows Paths
> 
>
> Key: MASSEMBLY-696
> URL: https://jira.codehaus.org/browse/MASSEMBLY-696
> Project: Maven Assembly Plugin
>  Issue Type: Bug
>Affects Versions: 2.5
> Environment: Windows 7
> maven-assembly-plugin trunk@e785abb
>Reporter: Kenney Westerhof
> Attachments: MASSEMBLY-696.patch, MASSEMBLY-696.tar.gz
>
>
> On windows the Assembly plugin shows this error:
> {code}
> org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute 
> goal org.apache.maven.plugins:maven-assembly-plugin:2.5-SNAPSHOT:single 
> (default-cli) on project myproject: Execution default-cli of goal 
> org.apache.maven.plugins:maven-assembly-plugin:2.5-SNAPSHOT:single failed: 
> Unexpected internal error near index 1
> \
>  ^
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:224)
> 
> Caused by: java.util.regex.PatternSyntaxException: Unexpected internal error 
> near index 1
> \
>  ^
> at java.util.regex.Pattern.error(Pattern.java:1924)
> at java.util.regex.Pattern.compile(Pattern.java:1671)
> at java.util.regex.Pattern.(Pattern.java:1337)
> at java.util.regex.Pattern.compile(Pattern.java:1022)
> at java.lang.String.split(String.java:2313)
> at java.lang.String.split(String.java:2355)
> at 
> org.apache.maven.plugin.assembly.utils.AssemblyFormatUtils.fixRelativeRefs(AssemblyFormatUtils.java:509)
> {code}



--
This message was sent by Atlassian JIRA
(v6.1.6#6162)


[jira] (MASSEMBLY-696) Internal Regexp Error with Windows Paths

2014-04-20 Thread Kenney Westerhof (JIRA)

[ 
https://jira.codehaus.org/browse/MASSEMBLY-696?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=345135#comment-345135
 ] 

Kenney Westerhof commented on MASSEMBLY-696:


I'm referencing old code because the bug has been in there that long.

I don't understand your question. What do you need the revision for?  And what 
revision exactly?

The patch will work against any revision after 1073964, when that line of code 
was introduced (svn blame/praise/annotate/ann). And {{trunk}} is a symbolic 
name referencing the latest revision in any subversion repository (1588817 at 
the time of this writing); I was being sarcastic, my apologies, this doesn't 
always come across on digital media!

Also, it's really not necessary to make an integration test for this one. It's 
the _unit_ tests for that code that are incomplete as they only check Unix 
style pathnames, while the code explicitly attempts to deal with windows style 
paths aswell.

In any case, I've concocted an integration test as per your request. 

It took me quite a while to figure out what exactly triggers this code. It 
occurs when specifying {{true}} dependencies and either 
specifying a non-default value for {{}} or {{}}. I 
added some debug to the assembly plugin, and it breaks when {{fixRelativeRefs}} 
is called with {{.\log4j-1.2.17.jar/}}. That this doesn't happen more often is 
because most code calling {{fixRelativeRefs}} duplicates code from that method 
(i.e. stripping {{./}}, {{../}} etc).

I've never had to do so much work to simply add {{\\}} to an obviously broken 
line of code! ;-) I could have commited the fix in svn this myself, but since 
I've not been involved in the project recently I though it wise to be polite 
and follow the proper channels.

> Internal Regexp Error with Windows Paths
> 
>
> Key: MASSEMBLY-696
> URL: https://jira.codehaus.org/browse/MASSEMBLY-696
> Project: Maven Assembly Plugin
>  Issue Type: Bug
>Affects Versions: 2.5
> Environment: Windows 7
> maven-assembly-plugin trunk@e785abb
>Reporter: Kenney Westerhof
> Attachments: MASSEMBLY-696.patch
>
>
> On windows the Assembly plugin shows this error:
> {code}
> org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute 
> goal org.apache.maven.plugins:maven-assembly-plugin:2.5-SNAPSHOT:single 
> (default-cli) on project myproject: Execution default-cli of goal 
> org.apache.maven.plugins:maven-assembly-plugin:2.5-SNAPSHOT:single failed: 
> Unexpected internal error near index 1
> \
>  ^
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:224)
> 
> Caused by: java.util.regex.PatternSyntaxException: Unexpected internal error 
> near index 1
> \
>  ^
> at java.util.regex.Pattern.error(Pattern.java:1924)
> at java.util.regex.Pattern.compile(Pattern.java:1671)
> at java.util.regex.Pattern.(Pattern.java:1337)
> at java.util.regex.Pattern.compile(Pattern.java:1022)
> at java.lang.String.split(String.java:2313)
> at java.lang.String.split(String.java:2355)
> at 
> org.apache.maven.plugin.assembly.utils.AssemblyFormatUtils.fixRelativeRefs(AssemblyFormatUtils.java:509)
> {code}



--
This message was sent by Atlassian JIRA
(v6.1.6#6162)


[jira] (MASSEMBLY-696) Internal Regexp Error with Windows Paths

2014-04-20 Thread Karl-Heinz Marbaise (JIRA)

[ 
https://jira.codehaus.org/browse/MASSEMBLY-696?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=345131#comment-345131
 ] 

Karl-Heinz Marbaise commented on MASSEMBLY-696:
---

Hi Kenney, I'm sorry but trunk is no SVN revision number apart from that why 
are you referencing such an extreme old code...2011 ? The last changes on trunk 
have been made with revision 1585621...If you could provide an integration test 
for it it would be great so i can integrate that into the code base.
Thanks in advance.
Happy Easter as well.

> Internal Regexp Error with Windows Paths
> 
>
> Key: MASSEMBLY-696
> URL: https://jira.codehaus.org/browse/MASSEMBLY-696
> Project: Maven Assembly Plugin
>  Issue Type: Bug
>Affects Versions: 2.5
> Environment: Windows 7
> maven-assembly-plugin trunk@e785abb
>Reporter: Kenney Westerhof
> Attachments: MASSEMBLY-696.patch
>
>
> On windows the Assembly plugin shows this error:
> {code}
> org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute 
> goal org.apache.maven.plugins:maven-assembly-plugin:2.5-SNAPSHOT:single 
> (default-cli) on project myproject: Execution default-cli of goal 
> org.apache.maven.plugins:maven-assembly-plugin:2.5-SNAPSHOT:single failed: 
> Unexpected internal error near index 1
> \
>  ^
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:224)
> 
> Caused by: java.util.regex.PatternSyntaxException: Unexpected internal error 
> near index 1
> \
>  ^
> at java.util.regex.Pattern.error(Pattern.java:1924)
> at java.util.regex.Pattern.compile(Pattern.java:1671)
> at java.util.regex.Pattern.(Pattern.java:1337)
> at java.util.regex.Pattern.compile(Pattern.java:1022)
> at java.lang.String.split(String.java:2313)
> at java.lang.String.split(String.java:2355)
> at 
> org.apache.maven.plugin.assembly.utils.AssemblyFormatUtils.fixRelativeRefs(AssemblyFormatUtils.java:509)
> {code}



--
This message was sent by Atlassian JIRA
(v6.1.6#6162)


[jira] (MASSEMBLY-696) Internal Regexp Error with Windows Paths

2014-04-20 Thread Kenney Westerhof (JIRA)

[ 
https://jira.codehaus.org/browse/MASSEMBLY-696?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=345130#comment-345130
 ] 

Kenney Westerhof commented on MASSEMBLY-696:


Certainly, the SVN revision number is 'trunk'; it occurs since all earlier 
versions since John added the code:
{quote}
1653fb20 :(John Dennis Casey  2011-02-23 22:05:06 + 509) 
parts.addAll( Arrays.asList( value.split( sep ) ) );
{quote}


I'm working on minifying my project to get you a usecase for an integration 
test. I think it's due to using {code}${java.home}/lib/tools.jar{code} as a 
system dep somewhere. But the use of _any_ windows paths will trigger this bug.

However the code is simply wrong and shouldn't take a usecase to fix. Simply 
run this code: 

{code}
  "foo".split( "\\" );
{code}

; see the Javadoc on Regular Expressions for more info ;-)

Thanks, merry easter!


> Internal Regexp Error with Windows Paths
> 
>
> Key: MASSEMBLY-696
> URL: https://jira.codehaus.org/browse/MASSEMBLY-696
> Project: Maven Assembly Plugin
>  Issue Type: Bug
>Affects Versions: 2.5
> Environment: Windows 7
> maven-assembly-plugin trunk@e785abb
>Reporter: Kenney Westerhof
> Attachments: MASSEMBLY-696.patch
>
>
> On windows the Assembly plugin shows this error:
> {code}
> org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute 
> goal org.apache.maven.plugins:maven-assembly-plugin:2.5-SNAPSHOT:single 
> (default-cli) on project myproject: Execution default-cli of goal 
> org.apache.maven.plugins:maven-assembly-plugin:2.5-SNAPSHOT:single failed: 
> Unexpected internal error near index 1
> \
>  ^
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:224)
> 
> Caused by: java.util.regex.PatternSyntaxException: Unexpected internal error 
> near index 1
> \
>  ^
> at java.util.regex.Pattern.error(Pattern.java:1924)
> at java.util.regex.Pattern.compile(Pattern.java:1671)
> at java.util.regex.Pattern.(Pattern.java:1337)
> at java.util.regex.Pattern.compile(Pattern.java:1022)
> at java.lang.String.split(String.java:2313)
> at java.lang.String.split(String.java:2355)
> at 
> org.apache.maven.plugin.assembly.utils.AssemblyFormatUtils.fixRelativeRefs(AssemblyFormatUtils.java:509)
> {code}



--
This message was sent by Atlassian JIRA
(v6.1.6#6162)


[jira] (MASSEMBLY-696) Internal Regexp Error with Windows Paths

2014-04-19 Thread Karl-Heinz Marbaise (JIRA)

[ 
https://jira.codehaus.org/browse/MASSEMBLY-696?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=345114#comment-345114
 ] 

Karl-Heinz Marbaise commented on MASSEMBLY-696:
---

First thanks for your issue, but can you please define a [SHA1 
sum|https://github.com/apache/maven-plugins/commits/trunk] or [SVN revision 
number|http://svn.apache.org/repos/asf/maven/plugins/trunk/] which can be found 
in one of those locations which i currently can't...

Furthermore can you give a complete use case for that issue. Fortunately you 
have created a patch with an appropriate unit test. You have added log output 
with failures which is very good, but it would be better having a complete use 
case which can be integrated as an integration test as well..and of course 
gives other committers the chance to verify this behaviour. BTW. Have you 
checked this with the last release of maven-assembly-plugin (2.4) instead of 
2.5-SNAPSHOT ?

> Internal Regexp Error with Windows Paths
> 
>
> Key: MASSEMBLY-696
> URL: https://jira.codehaus.org/browse/MASSEMBLY-696
> Project: Maven Assembly Plugin
>  Issue Type: Bug
>Affects Versions: 2.5
> Environment: Windows 7
> maven-assembly-plugin trunk@e785abb
>Reporter: Kenney Westerhof
> Attachments: MASSEMBLY-696.patch
>
>
> On windows the Assembly plugin shows this error:
> {code}
> org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute 
> goal org.apache.maven.plugins:maven-assembly-plugin:2.5-SNAPSHOT:single 
> (default-cli) on project myproject: Execution default-cli of goal 
> org.apache.maven.plugins:maven-assembly-plugin:2.5-SNAPSHOT:single failed: 
> Unexpected internal error near index 1
> \
>  ^
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:224)
> 
> Caused by: java.util.regex.PatternSyntaxException: Unexpected internal error 
> near index 1
> \
>  ^
> at java.util.regex.Pattern.error(Pattern.java:1924)
> at java.util.regex.Pattern.compile(Pattern.java:1671)
> at java.util.regex.Pattern.(Pattern.java:1337)
> at java.util.regex.Pattern.compile(Pattern.java:1022)
> at java.lang.String.split(String.java:2313)
> at java.lang.String.split(String.java:2355)
> at 
> org.apache.maven.plugin.assembly.utils.AssemblyFormatUtils.fixRelativeRefs(AssemblyFormatUtils.java:509)
> {code}



--
This message was sent by Atlassian JIRA
(v6.1.6#6162)


[jira] (MASSEMBLY-696) Internal Regexp Error with Windows Paths

2014-04-11 Thread Kenney Westerhof (JIRA)

 [ 
https://jira.codehaus.org/browse/MASSEMBLY-696?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Kenney Westerhof updated MASSEMBLY-696:
---

Attachment: MASSEMBLY-696.patch

> Internal Regexp Error with Windows Paths
> 
>
> Key: MASSEMBLY-696
> URL: https://jira.codehaus.org/browse/MASSEMBLY-696
> Project: Maven Assembly Plugin
>  Issue Type: Bug
>Affects Versions: 2.5
> Environment: Windows 7
> maven-assembly-plugin trunk@e785abb
>Reporter: Kenney Westerhof
> Attachments: MASSEMBLY-696.patch
>
>
> On windows the Assembly plugin shows this error:
> {code}
> org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute 
> goal org.apache.maven.plugins:maven-assembly-plugin:2.5-SNAPSHOT:single 
> (default-cli) on project myproject: Execution default-cli of goal 
> org.apache.maven.plugins:maven-assembly-plugin:2.5-SNAPSHOT:single failed: 
> Unexpected internal error near index 1
> \
>  ^
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:224)
> 
> Caused by: java.util.regex.PatternSyntaxException: Unexpected internal error 
> near index 1
> \
>  ^
> at java.util.regex.Pattern.error(Pattern.java:1924)
> at java.util.regex.Pattern.compile(Pattern.java:1671)
> at java.util.regex.Pattern.(Pattern.java:1337)
> at java.util.regex.Pattern.compile(Pattern.java:1022)
> at java.lang.String.split(String.java:2313)
> at java.lang.String.split(String.java:2355)
> at 
> org.apache.maven.plugin.assembly.utils.AssemblyFormatUtils.fixRelativeRefs(AssemblyFormatUtils.java:509)
> {code}



--
This message was sent by Atlassian JIRA
(v6.1.6#6162)


[jira] (MASSEMBLY-696) Internal Regexp Error with Windows Paths

2014-04-11 Thread Kenney Westerhof (JIRA)

 [ 
https://jira.codehaus.org/browse/MASSEMBLY-696?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Kenney Westerhof updated MASSEMBLY-696:
---

Attachment: (was: MASSEMBLY-696.patch)

> Internal Regexp Error with Windows Paths
> 
>
> Key: MASSEMBLY-696
> URL: https://jira.codehaus.org/browse/MASSEMBLY-696
> Project: Maven Assembly Plugin
>  Issue Type: Bug
>Affects Versions: 2.5
> Environment: Windows 7
> maven-assembly-plugin trunk@e785abb
>Reporter: Kenney Westerhof
>
> On windows the Assembly plugin shows this error:
> {code}
> org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute 
> goal org.apache.maven.plugins:maven-assembly-plugin:2.5-SNAPSHOT:single 
> (default-cli) on project myproject: Execution default-cli of goal 
> org.apache.maven.plugins:maven-assembly-plugin:2.5-SNAPSHOT:single failed: 
> Unexpected internal error near index 1
> \
>  ^
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:224)
> 
> Caused by: java.util.regex.PatternSyntaxException: Unexpected internal error 
> near index 1
> \
>  ^
> at java.util.regex.Pattern.error(Pattern.java:1924)
> at java.util.regex.Pattern.compile(Pattern.java:1671)
> at java.util.regex.Pattern.(Pattern.java:1337)
> at java.util.regex.Pattern.compile(Pattern.java:1022)
> at java.lang.String.split(String.java:2313)
> at java.lang.String.split(String.java:2355)
> at 
> org.apache.maven.plugin.assembly.utils.AssemblyFormatUtils.fixRelativeRefs(AssemblyFormatUtils.java:509)
> {code}



--
This message was sent by Atlassian JIRA
(v6.1.6#6162)


[jira] (MASSEMBLY-696) Internal Regexp Error with Windows Paths

2014-04-11 Thread Kenney Westerhof (JIRA)

 [ 
https://jira.codehaus.org/browse/MASSEMBLY-696?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Kenney Westerhof updated MASSEMBLY-696:
---

Attachment: (was: MASSEMBLY-696.patch)

> Internal Regexp Error with Windows Paths
> 
>
> Key: MASSEMBLY-696
> URL: https://jira.codehaus.org/browse/MASSEMBLY-696
> Project: Maven Assembly Plugin
>  Issue Type: Bug
>Affects Versions: 2.5
> Environment: Windows 7
> maven-assembly-plugin trunk@e785abb
>Reporter: Kenney Westerhof
> Attachments: MASSEMBLY-696.patch
>
>
> On windows the Assembly plugin shows this error:
> {code}
> org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute 
> goal org.apache.maven.plugins:maven-assembly-plugin:2.5-SNAPSHOT:single 
> (default-cli) on project myproject: Execution default-cli of goal 
> org.apache.maven.plugins:maven-assembly-plugin:2.5-SNAPSHOT:single failed: 
> Unexpected internal error near index 1
> \
>  ^
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:224)
> 
> Caused by: java.util.regex.PatternSyntaxException: Unexpected internal error 
> near index 1
> \
>  ^
> at java.util.regex.Pattern.error(Pattern.java:1924)
> at java.util.regex.Pattern.compile(Pattern.java:1671)
> at java.util.regex.Pattern.(Pattern.java:1337)
> at java.util.regex.Pattern.compile(Pattern.java:1022)
> at java.lang.String.split(String.java:2313)
> at java.lang.String.split(String.java:2355)
> at 
> org.apache.maven.plugin.assembly.utils.AssemblyFormatUtils.fixRelativeRefs(AssemblyFormatUtils.java:509)
> {code}



--
This message was sent by Atlassian JIRA
(v6.1.6#6162)


[jira] (MASSEMBLY-696) Internal Regexp Error with Windows Paths

2014-04-11 Thread Kenney Westerhof (JIRA)

 [ 
https://jira.codehaus.org/browse/MASSEMBLY-696?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Kenney Westerhof updated MASSEMBLY-696:
---

Attachment: MASSEMBLY-696.patch

> Internal Regexp Error with Windows Paths
> 
>
> Key: MASSEMBLY-696
> URL: https://jira.codehaus.org/browse/MASSEMBLY-696
> Project: Maven Assembly Plugin
>  Issue Type: Bug
>Affects Versions: 2.5
> Environment: Windows 7
> maven-assembly-plugin trunk@e785abb
>Reporter: Kenney Westerhof
> Attachments: MASSEMBLY-696.patch, MASSEMBLY-696.patch
>
>
> On windows the Assembly plugin shows this error:
> {code}
> org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute 
> goal org.apache.maven.plugins:maven-assembly-plugin:2.5-SNAPSHOT:single 
> (default-cli) on project myproject: Execution default-cli of goal 
> org.apache.maven.plugins:maven-assembly-plugin:2.5-SNAPSHOT:single failed: 
> Unexpected internal error near index 1
> \
>  ^
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:224)
> 
> Caused by: java.util.regex.PatternSyntaxException: Unexpected internal error 
> near index 1
> \
>  ^
> at java.util.regex.Pattern.error(Pattern.java:1924)
> at java.util.regex.Pattern.compile(Pattern.java:1671)
> at java.util.regex.Pattern.(Pattern.java:1337)
> at java.util.regex.Pattern.compile(Pattern.java:1022)
> at java.lang.String.split(String.java:2313)
> at java.lang.String.split(String.java:2355)
> at 
> org.apache.maven.plugin.assembly.utils.AssemblyFormatUtils.fixRelativeRefs(AssemblyFormatUtils.java:509)
> {code}



--
This message was sent by Atlassian JIRA
(v6.1.6#6162)


[jira] (MASSEMBLY-696) Internal Regexp Error with Windows Paths

2014-04-11 Thread Kenney Westerhof (JIRA)

 [ 
https://jira.codehaus.org/browse/MASSEMBLY-696?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Kenney Westerhof updated MASSEMBLY-696:
---

Patch Submitted: Yes
 Attachment: MASSEMBLY-696.patch

> Internal Regexp Error with Windows Paths
> 
>
> Key: MASSEMBLY-696
> URL: https://jira.codehaus.org/browse/MASSEMBLY-696
> Project: Maven Assembly Plugin
>  Issue Type: Bug
>Affects Versions: 2.5
> Environment: Windows 7
> maven-assembly-plugin trunk@e785abb
>Reporter: Kenney Westerhof
> Attachments: MASSEMBLY-696.patch
>
>
> On windows the Assembly plugin shows this error:
> {code}
> org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute 
> goal org.apache.maven.plugins:maven-assembly-plugin:2.5-SNAPSHOT:single 
> (default-cli) on project myproject: Execution default-cli of goal 
> org.apache.maven.plugins:maven-assembly-plugin:2.5-SNAPSHOT:single failed: 
> Unexpected internal error near index 1
> \
>  ^
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:224)
> 
> Caused by: java.util.regex.PatternSyntaxException: Unexpected internal error 
> near index 1
> \
>  ^
> at java.util.regex.Pattern.error(Pattern.java:1924)
> at java.util.regex.Pattern.compile(Pattern.java:1671)
> at java.util.regex.Pattern.(Pattern.java:1337)
> at java.util.regex.Pattern.compile(Pattern.java:1022)
> at java.lang.String.split(String.java:2313)
> at java.lang.String.split(String.java:2355)
> at 
> org.apache.maven.plugin.assembly.utils.AssemblyFormatUtils.fixRelativeRefs(AssemblyFormatUtils.java:509)
> {code}



--
This message was sent by Atlassian JIRA
(v6.1.6#6162)


[jira] (MASSEMBLY-696) Internal Regexp Error with Windows Paths

2014-04-11 Thread Kenney Westerhof (JIRA)
Kenney Westerhof created MASSEMBLY-696:
--

 Summary: Internal Regexp Error with Windows Paths
 Key: MASSEMBLY-696
 URL: https://jira.codehaus.org/browse/MASSEMBLY-696
 Project: Maven Assembly Plugin
  Issue Type: Bug
Affects Versions: 2.5
 Environment: Windows 7
maven-assembly-plugin trunk@e785abb
Reporter: Kenney Westerhof


On windows the Assembly plugin shows this error:

{code}
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal 
org.apache.maven.plugins:maven-assembly-plugin:2.5-SNAPSHOT:single 
(default-cli) on project myproject: Execution default-cli of goal 
org.apache.maven.plugins:maven-assembly-plugin:2.5-SNAPSHOT:single failed: 
Unexpected internal error near index 1
\
 ^
at 
org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:224)

Caused by: java.util.regex.PatternSyntaxException: Unexpected internal error 
near index 1
\
 ^
at java.util.regex.Pattern.error(Pattern.java:1924)
at java.util.regex.Pattern.compile(Pattern.java:1671)
at java.util.regex.Pattern.(Pattern.java:1337)
at java.util.regex.Pattern.compile(Pattern.java:1022)
at java.lang.String.split(String.java:2313)
at java.lang.String.split(String.java:2355)
at 
org.apache.maven.plugin.assembly.utils.AssemblyFormatUtils.fixRelativeRefs(AssemblyFormatUtils.java:509)

{code}




--
This message was sent by Atlassian JIRA
(v6.1.6#6162)