summaryrefslogtreecommitdiffstats
path: root/shared/pom.xml
diff options
context:
space:
mode:
authorTeemu Suo-Anttila <tsuoanttila@users.noreply.github.com>2017-10-16 13:31:15 +0300
committerGitHub <noreply@github.com>2017-10-16 13:31:15 +0300
commit727accead38ec3a292900054764af59ea89e0fda (patch)
treec3ea8fb335ec0e5b30c4f9068f17addd5dc54bdb /shared/pom.xml
parentf42e0cc6f2c8623d3acb0033222cd6360e5f521a (diff)
downloadvaadin-framework-727accead38ec3a292900054764af59ea89e0fda.tar.gz
vaadin-framework-727accead38ec3a292900054764af59ea89e0fda.zip
Fix IDE usage of Elemental in vaadin-shared (#10178)
Diffstat (limited to 'shared/pom.xml')
-rw-r--r--shared/pom.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/shared/pom.xml b/shared/pom.xml
index b2fa632415..545f40703f 100644
--- a/shared/pom.xml
+++ b/shared/pom.xml
@@ -80,6 +80,27 @@
</executions>
</plugin>
+ <!-- Unpacked Dependencies as source -->
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>build-helper-maven-plugin</artifactId>
+
+ <!-- Needs extra source folder for unpacked dependencies -->
+ <executions>
+ <execution>
+ <id>add-source-path</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>add-source</goal>
+ </goals>
+ <configuration>
+ <sources>
+ <source>${dependency.unpack.directory}</source>
+ </sources>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>