Browse Source

Revert widget-set-testutil parent change (#8404)

* Revert widget-set-testutil parent change
tags/8.0.0.beta2
Teemu Suo-Anttila 7 years ago
parent
commit
601de7e3ba
1 changed files with 15 additions and 6 deletions
  1. 15
    6
      test/widget-set-testutil/pom.xml

+ 15
- 6
test/widget-set-testutil/pom.xml View File

@@ -2,24 +2,33 @@
<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>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-test-widget-set-testutil</artifactId>
<version>8.0-SNAPSHOT</version>
<packaging>jar</packaging>
<parent>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-test</artifactId>
<version>8.0-SNAPSHOT</version>
</parent>
<!--
This module does not inherit the vaadin-test on purpose. It is done
so to allow installing this module as stand-alone and used when running any
of the test modules without requiring everything to be installed.
-->

<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<vaadin.version>${project.version}</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>

Loading…
Cancel
Save