The AppAssembler Maven plugin does a great job of generating distribution for me. One last problem is that the generated Shell script does not have execution permissions so I need to set them manually.

I am on Linux RedHat

Does anybody know of a clean way to set them automatically?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

The only way to do this is to process the file with another maven plugin like Antrun or Assembly after running AppAssembler.

This issue (see link below) has been brought up on the AppAssembler project issue tracker and it was rejected as Won't Fix.

Issue: MAPPASM-54

link|improve this answer
feedback

I think it can be set in your assembly.xml, in the fileSet tag:

<fileSets>
<fileSet>
  <directory>src/resources/bin</directory>
  <lineEnding>keep</lineEnding>
  <useDefaultExcludes>true</useDefaultExcludes>
  <outputDirectory>bin</outputDirectory>
  <includes>
    <include>*.bat</include>
    <include>*.sh</include>
  </includes>
  <fileMode>744</fileMode>
</fileSet>
...
link|improve this answer
1  
Thanks but your answer is about Assembly plugin. Please follow the link in the question, you will see it is about a different plugin. – Sasha O Jan 25 at 1:09
Sorry Sasha, I must've misread your question. – maksimov Jan 25 at 13:07
feedback

Your Answer

 
or
required, but never shown

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