Update of /cvsroot/squirrel-sql/mavenize/squirrelsql-other-installer
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv25099/squirrelsql-other-installer
Modified Files:
pom.xml
Log Message:
Relocated profile for signing jars to the root pom so that it doesn't need to be specified in every descendant pom. Thanks to Mike Sell for pointing out that profiles can indeed be inherited by descendant poms.
Index: pom.xml
===================================================================
RCS file: /cvsroot/squirrel-sql/mavenize/squirrelsql-other-installer/pom.xml,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** pom.xml 27 Sep 2009 07:05:11 -0000 1.10
--- pom.xml 27 Sep 2009 07:51:38 -0000 1.11
***************
*** 458,488 ****
</plugins>
</build>
- <profiles>
- <!--
- Since signing jars is probably only useful for releasing, this is not done unless the "sign-jar" profile
- is activated
- -->
- <profile>
- <id>sign-jar</id>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-gpg-plugin</artifactId>
- <version>${gpg-plugin-version}</version>
- <executions>
- <execution>
- <id>sign-artifacts</id>
- <phase>verify</phase>
- <goals>
- <goal>sign</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
--- 458,461 ----
|