Update of /cvsroot/squirrel-sql/mavenize/squirrelsql-java-version-checker
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv1654/squirrelsql-java-version-checker
Modified Files:
pom.xml
Log Message:
maven plugins need versions (best practice for portable builds).
Index: pom.xml
===================================================================
RCS file: /cvsroot/squirrel-sql/mavenize/squirrelsql-java-version-checker/pom.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** pom.xml 20 Sep 2009 00:14:42 -0000 1.6
--- pom.xml 25 Sep 2009 21:07:53 -0000 1.7
***************
*** 2,5 ****
--- 2,11 ----
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>net.sf.squirrel-sql</groupId>
+ <artifactId>squirrel-root-pom</artifactId>
+ <version>3.1.0-SNAPSHOT</version>
+ </parent>
<groupId>net.sf.squirrel-sql</groupId>
***************
*** 62,65 ****
--- 68,72 ----
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
+ <version>${jar-plugin-version}</version>
<configuration>
<archive>
***************
*** 70,73 ****
--- 77,102 ----
</plugins>
</build>
+ <profiles>
+ <profile>
+ <id>sign-jar</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-gpg-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>sign-artifacts</id>
+ <phase>verify</phase>
+ <goals>
+ <goal>sign</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
|