Update of /cvsroot/squirrel-sql/mavenize
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv9566
Modified Files:
root-pom.xml
Log Message:
generate release timestamp property in root pom so that all plugins that need it may use it.
Index: root-pom.xml
===================================================================
RCS file: /cvsroot/squirrel-sql/mavenize/root-pom.xml,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** root-pom.xml 1 Nov 2009 22:15:58 -0000 1.11
--- root-pom.xml 20 Nov 2009 01:17:59 -0000 1.12
***************
*** 82,92 ****
<profiles>
! <!--
! There are a few additional projects that are needed to build the installer. These are
! probably not needed for developing plugins, so the default is to build them only when the
! installer profile is activated.
-->
<profile>
<id>installer</id>
<modules>
<module>squirrelsql-test-utils</module>
--- 82,113 ----
<profiles>
! <!--
! There are a few additional projects that are needed to build the installer. These are probably not
! needed for developing plugins, so the default is to build them only when the installer profile is
! activated.
-->
<profile>
<id>installer</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>com.keyboardsamurais.maven</groupId>
+ <artifactId>maven-timestamp-plugin</artifactId>
+ <version>1.0</version>
+ <executions>
+ <execution>
+ <phase>validate</phase>
+ <goals>
+ <goal>create</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <propertyName>release.timestamp</propertyName>
+ <timestampPattern>yyyyMMdd_kkmm</timestampPattern>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
<modules>
<module>squirrelsql-test-utils</module>
|