diff options
author | Henri Sara <hesara@vaadin.com> | 2016-04-03 12:54:05 +0300 |
---|---|---|
committer | Teemu Suo-Anttila <teemusa@vaadin.com> | 2016-04-04 10:18:25 +0300 |
commit | 7c6710191bd8a5be69c2ec6fc356f013bd36aaf7 (patch) | |
tree | fd58a7f3a33f4033e946f5debfc43be59b6feb15 /themes | |
parent | 9ac12357df4ccbfd4dfdc4420b40f8bf66e73056 (diff) | |
download | vaadin-framework-7c6710191bd8a5be69c2ec6fc356f013bd36aaf7.tar.gz vaadin-framework-7c6710191bd8a5be69c2ec6fc356f013bd36aaf7.zip |
Convert Eclipse project to Maven based
Ignore exec plugin for m2e in themes and client-compiled.
Change-Id: I1c500a4cf204e3bd09aa0e9ae75e922b463e72fa
Diffstat (limited to 'themes')
-rw-r--r-- | themes/pom.xml | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/themes/pom.xml b/themes/pom.xml index 672f425456..eb8990b6df 100644 --- a/themes/pom.xml +++ b/themes/pom.xml @@ -216,6 +216,42 @@ </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> + org.codehaus.mojo + </groupId> + <artifactId> + exec-maven-plugin + </artifactId> + <versionRange> + [1.4.0,) + </versionRange> + <goals> + <goal>exec</goal> + </goals> + </pluginExecutionFilter> + <action> + <ignore /> + </action> + </pluginExecution> + </pluginExecutions> + </lifecycleMappingMetadata> + </configuration> + </plugin> + </plugins> + </pluginManagement> </build> </project> |