Revision: 6391
http://squirrel-sql.svn.sourceforge.net/squirrel-sql/?rev=6391&view=rev
Author: manningr
Date: 2011-09-05 13:59:39 +0000 (Mon, 05 Sep 2011)
Log Message:
-----------
New m2e plugin configuration (Eclipse 3.7). This prevents m2e from putting a red X on the pom file in Eclipse. This ignored when not using the new m2e plugin.
Modified Paths:
--------------
trunk/sql12/pom.xml
Modified: trunk/sql12/pom.xml
===================================================================
--- trunk/sql12/pom.xml 2011-09-05 13:29:44 UTC (rev 6390)
+++ trunk/sql12/pom.xml 2011-09-05 13:59:39 UTC (rev 6391)
@@ -257,6 +257,80 @@
<artifactId>maven-clover2-plugin</artifactId>
<version>${clover-version}</version>
</plugin>
+
+ <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
+ <plugin>
+ <groupId>org.eclipse.m2e</groupId>
+ <artifactId>lifecycle-mapping</artifactId>
+ <version>1.0.0</version>
+ <configuration>
+ <lifecycleMappingMetadata>
+ <pluginExecutions>
+ <pluginExecution>
+ <pluginExecutionFilter>
+ <groupId>
+ net.sf.squirrel-sql
+ </groupId>
+ <artifactId>
+ squirrelsql-version-plugin
+ </artifactId>
+ <versionRange>
+ [1.0.8,)
+ </versionRange>
+ <goals>
+ <goal>set-version</goal>
+ </goals>
+ </pluginExecutionFilter>
+ <action>
+ <ignore></ignore>
+ </action>
+ </pluginExecution>
+ <pluginExecution>
+ <pluginExecutionFilter>
+ <groupId>
+ org.apache.maven.plugins
+ </groupId>
+ <artifactId>
+ maven-enforcer-plugin
+ </artifactId>
+ <versionRange>
+ [1.0,)
+ </versionRange>
+ <goals>
+ <goal>enforce</goal>
+ </goals>
+ </pluginExecutionFilter>
+
+ <action>
+ <ignore></ignore>
+ </action>
+ </pluginExecution>
+ <pluginExecution>
+ <pluginExecutionFilter>
+ <groupId>
+ org.apache.maven.plugins
+ </groupId>
+ <artifactId>
+ maven-dependency-plugin
+ </artifactId>
+ <versionRange>
+ [1.0,)
+ </versionRange>
+ <goals>
+ <goal>copy-dependencies</goal>
+ <goal>unpack</goal>
+ </goals>
+ </pluginExecutionFilter>
+ <action>
+ <ignore></ignore>
+ </action>
+ </pluginExecution>
+
+ </pluginExecutions>
+ </lifecycleMappingMetadata>
+ </configuration>
+ </plugin>
+
</plugins>
</pluginManagement>
</build>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|