Re: cli parameters vs pom

2006-06-08 Thread Max Cooper
This might work: 1. Make up a name for a property, like assemblyOutputDirectory, or carrots.are.orange (it doesn't matter what the name is, technically). 2. Configure the assembly plugin (in your pom.xml) to use the value of this property as the outputDirectory. blah, blah, xml, blah...

Re: cli parameters vs pom

2006-06-07 Thread dan tran
There are lots of cases where the plugin will not allow you to override plugin configuration from command line via -D setting. http://maven.apache.org/plugins/maven-assembly-plugin/assembly-mojo.html from that link outputDirectory is set to ${project.build.directory} which is a element of the PO

cli parameters vs pom

2006-06-07 Thread brian . keyser
Hi, I have been trying to configure the parameters for the assembly plugin and have not been able to set the outputDirectory parameter when running from the command line % mvn -DoutputDirectory= I believe that the determination of the value to use is handled by PluginParameterExpressionEv