I'm using Maven with the Assembly plugin and would like to set the user and group for a tar-file.

I can set access rights to every directory, but without setting the user this is quite useless.

Any ideas?

link|improve this question

71% accept rate
feedback

1 Answer

The tar is created with the permission of the user running it. If you want this to be a particular user/group you can run maven as that user/group.

Maven may not allow you to use tar as a different user, but if you can do it in ant you can use http://maven.apache.org/plugins/maven-antrun-plugin/ to do anything ant can do.

http://maven.apache.org/plugins/maven-antrun-plugin/usage.html

link|improve this answer
Thanks, that is good to know. How do I run Maven with m2e plugin under windows with some user that doesn'T exist on the system? :-) In ANT you can just say: user="Whatever" – Franz Kafka Jan 20 at 16:38
I suspect you need to run ant from maven to do this. – Peter Lawrey Jan 20 at 16:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.