Skip to content
This repository has been archived by the owner on Jun 16, 2021. It is now read-only.

Commit

Permalink
add m2e configuration for antrun plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
alexott committed Jul 23, 2012
1 parent 14c6f8a commit 1c00785
Showing 1 changed file with 32 additions and 1 deletion.
33 changes: 32 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>mia</artifactId>
<groupId>com.manning</groupId>
<name>Mahout in Action Examples</name>
<version>0.1</version>
<version>0.5</version>
<description>Examples for Mahout in Action book</description>
<packaging>jar</packaging>
<!-- TODO: add licensing, contact information, etc. -->
Expand All @@ -25,6 +25,37 @@
</organization>

<build>
<pluginManagement>
<plugins>
<!--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>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<versionRange>[1.5,)</versionRange>
<goals>
<goal>run</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>

<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down

0 comments on commit 1c00785

Please sign in to comment.