diff options
author | Leif Åstrand <legioth@gmail.com> | 2017-01-16 10:43:57 +0200 |
---|---|---|
committer | Aleksi Hietanen <aleksi@vaadin.com> | 2017-01-16 10:43:57 +0200 |
commit | ee28311a0674d1babb53be04b61c8d65781f600b (patch) | |
tree | 01bc439a0d3e2e27d56b95baa8097ba50f3c90ec /test/widget-set-testutil | |
parent | 7579e24afe6528238ca7e394c1cdf2cf63c40d20 (diff) | |
download | vaadin-framework-ee28311a0674d1babb53be04b61c8d65781f600b.tar.gz vaadin-framework-ee28311a0674d1babb53be04b61c8d65781f600b.zip |
Inherit settings from parent pom (#8240)
Without this, maven.compiler.source will not be set to 1.8 which
sometimes seems to make Eclipse think it should use Java 5 compiler
settings for the project, causing various issues.
Diffstat (limited to 'test/widget-set-testutil')
-rw-r--r-- | test/widget-set-testutil/pom.xml | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/test/widget-set-testutil/pom.xml b/test/widget-set-testutil/pom.xml index 0a81446a54..769d98c4e9 100644 --- a/test/widget-set-testutil/pom.xml +++ b/test/widget-set-testutil/pom.xml @@ -2,26 +2,24 @@ <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> - - <properties> - <vaadin.version>8.0-SNAPSHOT</vaadin.version> - </properties> + + <parent> + <groupId>com.vaadin</groupId> + <artifactId>vaadin-test</artifactId> + <version>8.0-SNAPSHOT</version> + </parent> <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> |