aboutsummaryrefslogtreecommitdiffstats
path: root/test/servlet-containers/jsp-integration/pom.xml
diff options
context:
space:
mode:
authorIlia Motornyi <elmot@vaadin.com>2017-01-26 16:27:54 +0200
committerAleksi Hietanen <aleksi@vaadin.com>2017-01-26 16:27:54 +0200
commitddbb619651a9073666274592359124ce271725ed (patch)
tree15f79b7c13f673c5fce05d5f0ab742ddfa8823a6 /test/servlet-containers/jsp-integration/pom.xml
parent9abf1eeab7196c0ac75a23101c262bfa404d1c84 (diff)
downloadvaadin-framework-ddbb619651a9073666274592359124ce271725ed.tar.gz
vaadin-framework-ddbb619651a9073666274592359124ce271725ed.zip
JspIntegrationTest as a separate module (#8228)
Part of vaadin/framework8-issues#539
Diffstat (limited to 'test/servlet-containers/jsp-integration/pom.xml')
-rw-r--r--test/servlet-containers/jsp-integration/pom.xml30
1 files changed, 30 insertions, 0 deletions
diff --git a/test/servlet-containers/jsp-integration/pom.xml b/test/servlet-containers/jsp-integration/pom.xml
new file mode 100644
index 0000000000..c32914c3c0
--- /dev/null
+++ b/test/servlet-containers/jsp-integration/pom.xml
@@ -0,0 +1,30 @@
+<?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-test</artifactId>
+ <version>8.0-SNAPSHOT</version>
+ <relativePath>../..</relativePath>
+ </parent>
+ <artifactId>vaadin-test-jsp-integration</artifactId>
+ <name>vaadin-test-jsp-integration</name>
+ <packaging>war</packaging>
+
+ <dependencies>
+
+ <dependency>
+ <groupId>com.vaadin</groupId>
+ <artifactId>vaadin-client-compiled</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>com.vaadin</groupId>
+ <artifactId>vaadin-uitest-common</artifactId>
+ <version>${project.version}</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+</project>