Re: [m2] maven-exec-plugin:java command line launch

2006-12-27 Thread Jerome Lacoste
On 12/7/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: -Original Message- From: Wayne Fay [mailto:[EMAIL PROTECTED] ==== Your problem is that exec.arguments is a List of String objects, and you can only pass a single String object in from the command line. FYI, the next

RE: [m2] maven-exec-plugin:java command line launch

2006-12-07 Thread Peter . Pilgrim
-Original Message- From: Wayne Fay [mailto:[EMAIL PROTECTED] ==== Your problem is that exec.arguments is a List of String objects, and you can only pass a single String object in from the command line. Unless someone knows how to pass an array of Strings from the CLI

Re: [m2] maven-exec-plugin:java command line launch

2006-12-06 Thread Wayne Fay
Your problem is that exec.arguments is a List of String objects, and you can only pass a single String object in from the command line. Unless someone knows how to pass an array of Strings from the CLI (I've never seen that this was possible), you can't do what you're trying to do from the CLI.