diff options
-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> |