diff options
author | Teemu Suo-Anttila <tsuoanttila@users.noreply.github.com> | 2017-01-31 22:04:07 +0200 |
---|---|---|
committer | Pekka Hyvönen <pekka@vaadin.com> | 2017-01-31 22:04:06 +0200 |
commit | 601de7e3ba5af6146ab0342bf3a924c9aa08a1b4 (patch) | |
tree | 8326800b9e64824c8f2c0f1bf3071ae41b2633dc /test/widget-set-testutil | |
parent | 9a6550a25142df533da0b796e256100df39e73b8 (diff) | |
download | vaadin-framework-601de7e3ba5af6146ab0342bf3a924c9aa08a1b4.tar.gz vaadin-framework-601de7e3ba5af6146ab0342bf3a924c9aa08a1b4.zip |
Revert widget-set-testutil parent change (#8404)
* Revert widget-set-testutil parent change
Diffstat (limited to 'test/widget-set-testutil')
-rw-r--r-- | test/widget-set-testutil/pom.xml | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/test/widget-set-testutil/pom.xml b/test/widget-set-testutil/pom.xml index 769d98c4e9..7c62be7925 100644 --- a/test/widget-set-testutil/pom.xml +++ b/test/widget-set-testutil/pom.xml @@ -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> |