You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2013/11/23 14:00:29 UTC

svn commit: r1544783 - /commons/cms-site/trunk/pom.xml

Author: tn
Date: Sat Nov 23 13:00:29 2013
New Revision: 1544783

URL: http://svn.apache.org/r1544783
Log:
Add properties plugin to load release versions from file.

Modified:
    commons/cms-site/trunk/pom.xml

Modified: commons/cms-site/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/cms-site/trunk/pom.xml?rev=1544783&r1=1544782&r2=1544783&view=diff
==============================================================================
--- commons/cms-site/trunk/pom.xml (original)
+++ commons/cms-site/trunk/pom.xml Sat Nov 23 13:00:29 2013
@@ -229,6 +229,26 @@
   </developers>
 
   <build>
+    <plugins>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>properties-maven-plugin</artifactId>
+        <version>1.0-alpha-2</version>
+        <executions>
+          <execution>
+            <phase>pre-site</phase>
+            <goals>
+              <goal>read-project-properties</goal>
+            </goals>
+            <configuration>
+              <files>
+                <file>${basedir}/conf/component_releases.properties</file>
+              </files>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
     <pluginManagement>
       <plugins>
         <plugin>