diff options
author | Henri Sara <henri.sara@gmail.com> | 2017-02-10 11:40:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-10 11:40:41 +0200 |
commit | 222003731a35affe551a12b23193e987f316dc96 (patch) | |
tree | 79e2927f29913cb1972a80171f2f98901b9d7d4c /server | |
parent | 7995bf7a0205059195ef87cb0ba3410f7bdb66e5 (diff) | |
download | vaadin-framework-222003731a35affe551a12b23193e987f316dc96.tar.gz vaadin-framework-222003731a35affe551a12b23193e987f316dc96.zip |
Make Eclipse add vaadin-icons source folder (#8531)
Diffstat (limited to 'server')
-rw-r--r-- | server/pom.xml | 42 |
1 files changed, 41 insertions, 1 deletions
diff --git a/server/pom.xml b/server/pom.xml index b8566f2b39..479935666c 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -293,6 +293,46 @@ <artifactId>maven-surefire-plugin</artifactId> </plugin> </plugins> + + <pluginManagement> + <plugins> + <!-- Make Eclipse add the source folder --> + <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>build-helper-maven-plugin</artifactId> + <versionRange>[1.0,)</versionRange> + <goals> + <goal>add-source</goal> +<!-- + <goal>add-test-source</goal> + <goal>add-resource</goal> + <goal>add-test-resource</goal> + <goal>maven-version</goal> + <goal>parse-version</goal> +--> + </goals> + </pluginExecutionFilter> + <action> + <execute> + <runOnConfiguration>true</runOnConfiguration> + <!-- <runOnIncremental>true</runOnIncremental> --> + </execute> + </action> + </pluginExecution> + </pluginExecutions> + </lifecycleMappingMetadata> + </configuration> + </plugin> + </plugins> + </pluginManagement> </build> - + </project> |