aboutsummaryrefslogtreecommitdiffstats
path: root/compatibility-client/pom.xml
diff options
context:
space:
mode:
authorTeemu Suo-Anttila <teemusa@vaadin.com>2016-08-30 12:30:37 +0300
committerArtur Signell <artur@vaadin.com>2016-08-30 10:11:56 +0000
commite65a1d80f11c4b98e0fb92aa25c1db9f4bd5ff0a (patch)
treea1ea891034a6ee14f525298184d53c759236e697 /compatibility-client/pom.xml
parentd40910015746be496ba1ded4c12a019d801adb5e (diff)
downloadvaadin-framework-e65a1d80f11c4b98e0fb92aa25c1db9f4bd5ff0a.tar.gz
vaadin-framework-e65a1d80f11c4b98e0fb92aa25c1db9f4bd5ff0a.zip
Duplicate shared classes of the Vaadin 7 Grid
Change-Id: I50cdcef0beb2f384636eb40c2f3f7493db52ac87
Diffstat (limited to 'compatibility-client/pom.xml')
-rw-r--r--compatibility-client/pom.xml59
1 files changed, 32 insertions, 27 deletions
diff --git a/compatibility-client/pom.xml b/compatibility-client/pom.xml
index 28ab3f0107..d427a0bdff 100644
--- a/compatibility-client/pom.xml
+++ b/compatibility-client/pom.xml
@@ -26,6 +26,11 @@
<artifactId>vaadin-compatibility-server</artifactId>
<version>${project.version}</version>
</dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>vaadin-compatibility-shared</artifactId>
+ <version>${project.version}</version>
+ </dependency>
</dependencies>
<build>
@@ -43,33 +48,33 @@
</executions>
</plugin>
- <plugin>
- <artifactId>maven-resources-plugin</artifactId>
- <executions>
- <!-- Copy .java files to package -->
- <execution>
- <id>copy-sources</id>
- <!-- here the phase you need -->
- <phase>prepare-package</phase>
- <goals>
- <goal>copy-resources</goal>
- </goals>
- <configuration>
- <outputDirectory>${project.build.outputDirectory}</outputDirectory>
- <resources>
- <resource>
- <directory>src/main/resources</directory>
- <filtering>false</filtering>
- </resource>
- <resource>
- <directory>src/main/java</directory>
- <filtering>false</filtering>
- </resource>
- </resources>
- </configuration>
- </execution>
- </executions>
- </plugin>
+ <plugin>
+ <artifactId>maven-resources-plugin</artifactId>
+ <executions>
+ <!-- Copy .java files to package -->
+ <execution>
+ <id>copy-sources</id>
+ <!-- here the phase you need -->
+ <phase>prepare-package</phase>
+ <goals>
+ <goal>copy-resources</goal>
+ </goals>
+ <configuration>
+ <outputDirectory>${project.build.outputDirectory}</outputDirectory>
+ <resources>
+ <resource>
+ <directory>src/main/resources</directory>
+ <filtering>false</filtering>
+ </resource>
+ <resource>
+ <directory>src/main/java</directory>
+ <filtering>false</filtering>
+ </resource>
+ </resources>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>