Details
-
Type:
New Feature
-
Status:
Open
-
Priority:
Minor
-
Resolution: Unresolved
-
Affects Version/s: 1.2
-
Fix Version/s: 1.3
-
Labels:None
-
Patch Submitted:Yes
Description
Attached patch adds an ability to specify a "wrapper.working.dir" property in the POM.
Based on my advanced understanding of the code it's already possible to configure the wrapper.working.dir property via the generatorConfigurations like this:
<configuration> <daemons> <daemon> <id>daemon-1</id> <mainClass>org.codehaus.mojo.appassembler.example.helloworld.HelloWorld</mainClass> <commandLineArguments> <commandLineArgument>start</commandLineArgument> </commandLineArguments> <platforms> <platform>jsw</platform> </platforms> <generatorConfigurations> <generatorConfiguration> <generator>jsw</generator> <configuration> <property> <name>wrapper.working.dir</name> <value>TheValueYouLikeToHaveHere</value> </property> </configuration> </generatorConfiguration> </generatorConfigurations> </daemon> </daemons> </configuration><configuration> <daemons> <daemon> <id>daemon-1</id> <mainClass>org.codehaus.mojo.appassembler.example.helloworld.HelloWorld</mainClass> <commandLineArguments> <commandLineArgument>start</commandLineArgument> </commandLineArguments> <platforms> <platform>jsw</platform> </platforms> <generatorConfigurations> <generatorConfiguration> <generator>jsw</generator> <configuration> <property> <name>wrapper.working.dir</name> <value>TheValueYouLikeToHaveHere</value> </property> </configuration> </generatorConfiguration> </generatorConfigurations> </daemon> </daemons> </configuration>