Author: hboutemy
Date: Sun Mar  1 08:44:10 2015
New Revision: 1663041

URL: http://svn.apache.org/r1663041
Log:
set executable flag on download.cgi in generated site content, hoping the 
svn:executable flag will be set automatically

Modified:
    maven/site/trunk/pom.xml

Modified: maven/site/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/site/trunk/pom.xml?rev=1663041&r1=1663040&r2=1663041&view=diff
==============================================================================
--- maven/site/trunk/pom.xml (original)
+++ maven/site/trunk/pom.xml Sun Mar  1 08:44:10 2015
@@ -149,6 +149,24 @@
           </execution>
         </executions>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>chmod</id>
+            <phase>site</phase>
+            <goals>
+              <goal>run</goal>
+            </goals>
+            <configuration>
+              <target>
+                <chmod 
file="${project.reporting.outputDirectory}/download.cgi" perm="ugo+rx"/>
+              </target>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
 
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>


Reply via email to