Revision: 5674
http://squirrel-sql.svn.sourceforge.net/squirrel-sql/?rev=5674&view=rev
Author: manningr
Date: 2010-07-10 19:38:45 +0000 (Sat, 10 Jul 2010)
Log Message:
-----------
Replaced timestamp plugin with a custom version plugin that smartly determines what the squirrelsql version should be.
Modified Paths:
--------------
trunk/mavenize/root-pom.xml
Modified: trunk/mavenize/root-pom.xml
===================================================================
--- trunk/mavenize/root-pom.xml 2010-07-08 10:21:05 UTC (rev 5673)
+++ trunk/mavenize/root-pom.xml 2010-07-10 19:38:45 UTC (rev 5674)
@@ -99,23 +99,20 @@
<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>
+ <plugin>
+ <groupId>net.sf.squirrel-sql</groupId>
+ <artifactId>squirrelsql-version-plugin</artifactId>
+ <version>3.2.0-SNAPSHOT</version>
+ <executions>
+ <execution>
+ <phase>initialize</phase>
+ <goals>
+ <goal>set-version</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+
</plugins>
</build>
<modules>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|