You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by kueblboe <ma...@si-bausparen.de> on 2011/04/29 10:54:05 UTC

Re: maven-assembly-plugin StackOverflowError

Hello,

did you ever resolve this issue? I ran into the same problem using poi 3.7
and maven-assembly-plugin 2.2.1.

Cheers,
Manuel--
View this message in context: http://maven.40175.n5.nabble.com/maven-assembly-plugin-StackOverflowError-tp3321403p4358228.html
Sent from the Maven - Users mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: maven-assembly-plugin StackOverflowError

Posted by burcakulug <bu...@gmail.com>.
I had a similar problem and fixed it by setting the stack size -Xss10M. The
output was even more than the max screen buffer, I couldn't even see the
exception message. I found this post by searching "at
org.codehaus.plexus.archiver.AbstractArchiver". Thanks for the solution, it
saved my time.



--
View this message in context: http://maven.40175.n5.nabble.com/maven-assembly-plugin-StackOverflowError-tp3321403p5769114.html
Sent from the Maven - Users mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: maven-assembly-plugin StackOverflowError

Posted by "john.vint" <jo...@gmail.com>.
I ended up getting this resolved some time ago but I figure I post the best
solution.  The stackoverflow isnt a product of infinite recursion it's just
a matter of recursion that is simply too deep because of how far down the
file directory tree goes.

Simply increasing the stack size with -Xss.  We increased it to 2m and the
assembler plugin was able to handle the recursive stack size.

--
View this message in context: http://maven.40175.n5.nabble.com/maven-assembly-plugin-StackOverflowError-tp3321403p5039058.html
Sent from the Maven - Users mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: maven-assembly-plugin StackOverflowError

Posted by "john.vint" <jo...@gmail.com>.
The best I could do was to exclude the dependency itself (this works for me
because I needed a subset of the code that was not effected by the
exclusion)

<exclusion>
	<groupId>org.apache.poi</groupId>
	<artifactId>poi-ooxml-schemas</artifactId>
</exclusion>

Not sure if this would help you.

--
View this message in context: http://maven.40175.n5.nabble.com/maven-assembly-plugin-StackOverflowError-tp3321403p4528687.html
Sent from the Maven - Users mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org