Revision: 6091
http://squirrel-sql.svn.sourceforge.net/squirrel-sql/?rev=6091&view=rev
Author: manningr
Date: 2010-12-31 18:58:54 +0000 (Fri, 31 Dec 2010)
Log Message:
-----------
Use variables defined in root pom for maven plugin versions. Also, specify the use of emma plugin for code coverage (activated with 'mvn clean install emma:emma'; coverage report is found in target/site/emma/index.html)
Modified Paths:
--------------
trunk/sql12/plugins/squirrelsql-plugins-parent-pom/pom.xml
Modified: trunk/sql12/plugins/squirrelsql-plugins-parent-pom/pom.xml
===================================================================
--- trunk/sql12/plugins/squirrelsql-plugins-parent-pom/pom.xml 2010-12-31 16:17:32 UTC (rev 6090)
+++ trunk/sql12/plugins/squirrelsql-plugins-parent-pom/pom.xml 2010-12-31 18:58:54 UTC (rev 6091)
@@ -1,4 +1,5 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ 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>
@@ -52,8 +53,10 @@
<url>https://www.squirrel-sql.org/hudson/</url>
</ciManagement>
<dependencyManagement>
- <!-- None of the dependencies below should use ${project.version} since this pom is
- inherited by the plugin archetype projects prototype pom. -->
+ <!--
+ None of the dependencies below should use ${project.version} since this pom is inherited by the
+ plugin archetype projects prototype pom.
+ -->
<dependencies>
<dependency>
<groupId>net.sf.squirrel-sql</groupId>
@@ -275,9 +278,10 @@
<reporting>
<plugins>
<plugin>
+ <inherited>true</inherited>
<groupId>org.codehaus.mojo</groupId>
<artifactId>surefire-report-maven-plugin</artifactId>
- <version>2.0-beta-1</version>
+ <version>${surefire-report-plugin-version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
@@ -306,6 +310,12 @@
<outputFileFormat>xml</outputFileFormat>
</configuration>
</plugin>
+ <plugin>
+ <inherited>true</inherited>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>emma-maven-plugin</artifactId>
+ <version>${emma-plugin-version}</version>
+ </plugin>
</plugins>
</reporting>
<profiles>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|