views:

116

answers:

3

I am using maven appassembler to create my assembly. My classpath is too long and I get "The input line is too long." The suggestion here is to use booter windows platform, but I'm constrained to use Java Service Wrapper. Any way I can use java6 wildcarded classpath and java service wrapper?

A: 

As a long shot...

Having never worked with JSW, perhaps you could create your own assembly plugin based on the code at http://maven.apache.org/plugins/maven-assembly-plugin/source-repository.html and use it instead.

Yaneeve
The thing is, I was hoping to use something already written for me. Not that I'm lazy, but writing a plugin is not an easy sell in a corporate environment when the simple (but manual and un-automated) step of hacking the generated script is takes seconds.
Paul McKenzie
+1  A: 

It seems that the answer is 'No', without writing a plugin or extending the existing plugin, which is not an 'answer' to the original question.

Paul McKenzie
A: 

I'd suggest filing a bug in http://jira.codehaus.org/browse/MAPPASM to address it. I wrote the JSW integration and know it needs a bit more work.

Brett Porter