summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenri Sara <henri.sara@gmail.com>2017-02-10 11:40:41 +0200
committerTeemu Suo-Anttila <tsuoanttila@users.noreply.github.com>2017-03-16 16:21:24 +0200
commit873881e437e0913a764cddcd16e7735ca3596a0f (patch)
treec4a4c417b32796ba1475b137d4c2e3e0a21f96c2
parent9709373f6dcf0a64f2e400ccc9c75ed9649285ad (diff)
downloadvaadin-framework-873881e437e0913a764cddcd16e7735ca3596a0f.tar.gz
vaadin-framework-873881e437e0913a764cddcd16e7735ca3596a0f.zip
Make Eclipse add vaadin-icons source folder (#8531)
-rw-r--r--server/pom.xml42
1 files changed, 41 insertions, 1 deletions
diff --git a/server/pom.xml b/server/pom.xml
index 7139096e66..4a31cd47eb 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>