summaryrefslogtreecommitdiffstats
path: root/test/vaadin7-widget-set/pom.xml
diff options
context:
space:
mode:
authorTeemu Suo-Anttila <tsuoanttila@users.noreply.github.com>2017-01-31 22:03:59 +0200
committerPekka Hyvönen <pekka@vaadin.com>2017-01-31 22:03:59 +0200
commit9a6550a25142df533da0b796e256100df39e73b8 (patch)
treedf82eed41235416985f0b8ac59bf36896acf0151 /test/vaadin7-widget-set/pom.xml
parent9fad817c77d84019e6e49c1a02107a63bfd17c4e (diff)
downloadvaadin-framework-9a6550a25142df533da0b796e256100df39e73b8.tar.gz
vaadin-framework-9a6550a25142df533da0b796e256100df39e73b8.zip
Add test for compiling a widgetset that inherits Vaadin7WidgetSet (#8403)
* Add test for compiling a widgetset that inherits Vaadin7WidgetSet * Remove unnecessary dependency management block * Minor style fixes
Diffstat (limited to 'test/vaadin7-widget-set/pom.xml')
-rw-r--r--test/vaadin7-widget-set/pom.xml35
1 files changed, 35 insertions, 0 deletions
diff --git a/test/vaadin7-widget-set/pom.xml b/test/vaadin7-widget-set/pom.xml
new file mode 100644
index 0000000000..17f73402c1
--- /dev/null
+++ b/test/vaadin7-widget-set/pom.xml
@@ -0,0 +1,35 @@
+<?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/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>com.vaadin</groupId>
+ <artifactId>vaadin-test</artifactId>
+ <version>8.0-SNAPSHOT</version>
+ </parent>
+ <artifactId>vaadin-test-vaadin7-widget-set</artifactId>
+ <packaging>war</packaging>
+
+ <dependencies>
+ <dependency>
+ <groupId>com.vaadin</groupId>
+ <artifactId>vaadin-test-widget-set-testutil</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>com.vaadin</groupId>
+ <artifactId>vaadin-compatibility-client</artifactId>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>com.vaadin</groupId>
+ <artifactId>vaadin-maven-plugin</artifactId>
+ <configuration>
+ <extraJvmArgs>-Xmx1G</extraJvmArgs>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>