aboutsummaryrefslogtreecommitdiffstats
path: root/test/pom.xml
diff options
context:
space:
mode:
authorLeif Åstrand <legioth@gmail.com>2016-12-15 14:03:49 +0200
committerPekka Hyvönen <pekka@vaadin.com>2016-12-15 14:03:49 +0200
commite7552d5a9919d9c10c7d4a147cca5d15288cc3f6 (patch)
treebde93f80fdb3af7a47213f8951ece479336e5064 /test/pom.xml
parent9d35813566e8f64b8ef80ad3ad764ed1eae807c4 (diff)
downloadvaadin-framework-e7552d5a9919d9c10c7d4a147cca5d15288cc3f6.tar.gz
vaadin-framework-e7552d5a9919d9c10c7d4a147cca5d15288cc3f6.zip
Make m2e ignore phantomjs-maven-plugin (#8002)
* Make m2e ignore phantomjs-maven-plugin
Diffstat (limited to 'test/pom.xml')
-rw-r--r--test/pom.xml36
1 files changed, 36 insertions, 0 deletions
diff --git a/test/pom.xml b/test/pom.xml
index e59b5cf110..6215d61112 100644
--- a/test/pom.xml
+++ b/test/pom.xml
@@ -153,5 +153,41 @@
</configuration>
</plugin>
</plugins>
+ <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>
+ com.github.klieber
+ </groupId>
+ <artifactId>
+ phantomjs-maven-plugin
+ </artifactId>
+ <versionRange>
+ [0.7,)
+ </versionRange>
+ <goals>
+ <goal>install</goal>
+ </goals>
+ </pluginExecutionFilter>
+ <action>
+ <ignore></ignore>
+ </action>
+ </pluginExecution>
+ </pluginExecutions>
+ </lifecycleMappingMetadata>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
</build>
</project>