You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shindig.apache.org by rb...@apache.org on 2014/02/05 23:19:15 UTC

svn commit: r1564955 - /shindig/trunk/assembly/pom.xml

Author: rbaxter85
Date: Wed Feb  5 22:19:15 2014
New Revision: 1564955

URL: http://svn.apache.org/r1564955
Log:
SHINDIG-1966
Adding back in ANT task removed when moving PHP code

Modified:
    shindig/trunk/assembly/pom.xml

Modified: shindig/trunk/assembly/pom.xml
URL: http://svn.apache.org/viewvc/shindig/trunk/assembly/pom.xml?rev=1564955&r1=1564954&r2=1564955&view=diff
==============================================================================
--- shindig/trunk/assembly/pom.xml (original)
+++ shindig/trunk/assembly/pom.xml Wed Feb  5 22:19:15 2014
@@ -86,6 +86,27 @@
           </execution>
         </executions>
       </plugin>
+            <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>align-php-structure</id>
+            <phase>validate</phase>
+            <configuration>
+              <tasks>
+               <tstamp>
+                 <format property="year" pattern="yyyy" />
+               </tstamp>
+               <echo file="${project.build.directory}/assemblyFilter.properties">year=${year}</echo>
+              </tasks>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
     </plugins>
   </build>
   <dependencies>