summaryrefslogtreecommitdiffstats
path: root/compatibility-client
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2016-08-15 15:23:27 +0300
committerArtur Signell <artur@vaadin.com>2016-08-19 09:24:26 +0300
commit1b73770105899b9015ff6685e7d6674934336ca4 (patch)
tree243873d5e3079e16065babbc9136cdff340aa295 /compatibility-client
parentb565956a51e870287fb01ea9365ce947e33641f5 (diff)
downloadvaadin-framework-1b73770105899b9015ff6685e7d6674934336ca4.tar.gz
vaadin-framework-1b73770105899b9015ff6685e7d6674934336ca4.zip
Add Vaadin 7 compatibility modules
Change-Id: Ife8387c94c85a8167902e69fce5c3a6f761c5d8b
Diffstat (limited to 'compatibility-client')
-rw-r--r--compatibility-client/pom.xml54
-rwxr-xr-xcompatibility-client/src/main/resources/com/vaadin/v7/Vaadin7WidgetSet.gwt.xml7
2 files changed, 61 insertions, 0 deletions
diff --git a/compatibility-client/pom.xml b/compatibility-client/pom.xml
new file mode 100644
index 0000000000..c9503ecd9f
--- /dev/null
+++ b/compatibility-client/pom.xml
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>com.vaadin</groupId>
+ <artifactId>vaadin-root</artifactId>
+ <version>8.0-SNAPSHOT</version>
+ </parent>
+ <groupId>com.vaadin.v7</groupId>
+ <artifactId>vaadin-compatibility-client</artifactId>
+ <name>vaadin-compatibility-client</name>
+ <packaging>jar</packaging>
+
+ <url>https://vaadin.com/</url>
+ <description>Vaadin 7 compatibility package for Vaadin 8</description>
+
+ <dependencies>
+ <!-- Project modules -->
+ <dependency>
+ <groupId>com.vaadin</groupId>
+ <artifactId>vaadin-client</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.vaadin.v7</groupId>
+ <artifactId>vaadin-compatibility-server</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-checkstyle-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+ <goal>checkstyle</goal>
+ </goals>
+ <phase>process-sources</phase>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>
diff --git a/compatibility-client/src/main/resources/com/vaadin/v7/Vaadin7WidgetSet.gwt.xml b/compatibility-client/src/main/resources/com/vaadin/v7/Vaadin7WidgetSet.gwt.xml
new file mode 100755
index 0000000000..e124491d3a
--- /dev/null
+++ b/compatibility-client/src/main/resources/com/vaadin/v7/Vaadin7WidgetSet.gwt.xml
@@ -0,0 +1,7 @@
+<module>
+ <!-- Hint for WidgetSetBuilder not to automatically update the file -->
+ <!-- WS Compiler: manually edited -->
+
+ <inherits name="com.vaadin.DefaultWidgetSet" />
+
+</module>