summaryrefslogtreecommitdiffstats
path: root/test/widget-set-testutil/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'test/widget-set-testutil/pom.xml')
-rw-r--r--test/widget-set-testutil/pom.xml47
1 files changed, 25 insertions, 22 deletions
diff --git a/test/widget-set-testutil/pom.xml b/test/widget-set-testutil/pom.xml
index 3dcc6db865..0a81446a54 100644
--- a/test/widget-set-testutil/pom.xml
+++ b/test/widget-set-testutil/pom.xml
@@ -2,31 +2,34 @@
<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>
+ <groupId>com.vaadin</groupId>
<artifactId>vaadin-test-widget-set-testutil</artifactId>
+ <version>8.0-SNAPSHOT</version>
<packaging>jar</packaging>
+ <properties>
+ <vaadin.version>8.0-SNAPSHOT</vaadin.version>
+ </properties>
+
<dependencies>
+ <dependency>
+ <groupId>com.vaadin</groupId>
+ <artifactId>vaadin-server</artifactId>
+ <version>${vaadin.version}</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.vaadin</groupId>
+ <artifactId>vaadin-testbench-api</artifactId>
+ <version>${vaadin.version}</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.12</version>
+ <scope>provided</scope>
+ </dependency>
</dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <executions>
- <execution>
- <goals>
- <goal>test-jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-
-</project> \ No newline at end of file
+</project>