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

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

2006-12-06 Thread Peter . Pilgrim
Hi I am looking at Maven Exec Plugin. I found that the command line option is problematic with arguments: convertermvn exec:java -Dexec.mainClass=com.ubs.firc.ptsp.research.Converter -Dexec.arguments=C:\foo\bar [INFO] Scanning for projects... [INFO] Searching repository for plugin with prefix:

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.