Hi All, I am trying to set the execute permission for one of the script using the maven directive in my project specific pom file like below :
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <phase>prepare-package</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <chmod perm="755"> <fileset dir="${project.build.directory}/assembly/scripts"> <include name="test"/> </fileset> </chmod> </tasks> </configuration> </execution> </executions> </plugin> After the maven build is completed, I untarred the gz file. But in the scripts folder the test script is still no having the execute permission. Any ideas of how to make the script executable ? Regards -Satish
_______________________________________________ controller-dev mailing list controller-dev@lists.opendaylight.org https://lists.opendaylight.org/mailman/listinfo/controller-dev