You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ctakes.apache.org by st...@apache.org on 2012/11/16 12:45:18 UTC

svn commit: r1410310 - /incubator/ctakes/trunk/pom.xml

Author: stevenbethard
Date: Fri Nov 16 11:45:17 2012
New Revision: 1410310

URL: http://svn.apache.org/viewvc?rev=1410310&view=rev
Log:
Ignores maven-remote-resources-plugin from Eclipse

Modified:
    incubator/ctakes/trunk/pom.xml

Modified: incubator/ctakes/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/ctakes/trunk/pom.xml?rev=1410310&r1=1410309&r2=1410310&view=diff
==============================================================================
--- incubator/ctakes/trunk/pom.xml (original)
+++ incubator/ctakes/trunk/pom.xml Fri Nov 16 11:45:17 2012
@@ -564,7 +564,35 @@
 							</excludes>
 						<numUnapprovedLicenses>0</numUnapprovedLicenses>								
 					</configuration>
-				</plugin>					
+				</plugin>
+				<!--
+				Ignore the Maven remote resources plugin in Eclipse. We don't use it from Eclipse,
+				and it causes a warning if m2e is not configured to ignore it as below.
+				-->
+				<plugin>
+					<groupId>org.eclipse.m2e</groupId>
+					<artifactId>lifecycle-mapping</artifactId>
+					<version>1.0.0</version>
+					<configuration>
+						<lifecycleMappingMetadata>
+							<pluginExecutions>
+								<pluginExecution>
+									<pluginExecutionFilter>
+										<groupId>org.apache.maven.plugins</groupId>
+										<artifactId>maven-remote-resources-plugin</artifactId>
+										<versionRange>[1.0.0,)</versionRange>
+										<goals>
+											<goal>process</goal>
+										</goals>
+									</pluginExecutionFilter>
+									<action>
+										<ignore />
+									</action>
+								</pluginExecution>
+							</pluginExecutions>
+						</lifecycleMappingMetadata>
+					</configuration>
+				</plugin>
 			</plugins>
 		</pluginManagement>
 	</build>