Hi,

> My assembly looks like:
> 
> <assembly>
>     <id>jar-with-dependencies</id>
>     <formats>
>         <format>zip</format>
>     </formats>
>     <includeBaseDirectory>false</includeBaseDirectory>
>     <dependencySets>
>         <dependencySet>
>             <unpack>false</unpack>
>             <scope>runtime</scope>
>             <outputDirectory>lib</outputDirectory>
>             <useProjectArtifact>true</useProjectArtifact>
>             <fileMode>755</fileMode>
>         </dependencySet>
>     </dependencySets>
>     <files>
>         <file>
> 
> 
<source>${project.build.directory}/${project.build.finalName}.jar</source>
>         </file>
>     </files>
> </assembly>
> 
> 
> 
> So the fileMode works on the sub-elements. Each item in my LIB director
> gets a 755 CHMOD. But the actual LIB folder itself stays 777. Is there a
> way to make the LIB folder also get a 755?

What about <directoryMode>755</directoryMode> at the same hierarchy level 
as <fileMode>?

See http://maven.apache.org/xsd/assembly-1.1.2.xsd


Regards

Thorsten

Reply via email to